SM_Rack_02.fbx 1.7 MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111
  1. ; FBX 7.5.0 project file
  2. ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
  3. ; All rights reserved.
  4. ; ----------------------------------------------------
  5. FBXHeaderExtension: {
  6. FBXHeaderVersion: 1003
  7. FBXVersion: 7500
  8. CreationTimeStamp: {
  9. Version: 1000
  10. Year: 2021
  11. Month: 4
  12. Day: 5
  13. Hour: 13
  14. Minute: 29
  15. Second: 59
  16. Millisecond: 151
  17. }
  18. Creator: "FBX SDK/FBX Plugins version 2016.1.2"
  19. SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
  20. Type: "UserData"
  21. Version: 100
  22. MetaData: {
  23. Version: 100
  24. Title: ""
  25. Subject: ""
  26. Author: ""
  27. Keywords: ""
  28. Revision: ""
  29. Comment: ""
  30. }
  31. Properties70: {
  32. P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Rack_02.fbx"
  33. P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Rack_02.fbx"
  34. P: "Original", "Compound", "", ""
  35. P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
  36. P: "Original|ApplicationName", "KString", "", "", "Maya LT"
  37. P: "Original|ApplicationVersion", "KString", "", "", "2016"
  38. P: "Original|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:29:59.150"
  39. P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Rack_02.fbx"
  40. P: "LastSaved", "Compound", "", ""
  41. P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
  42. P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
  43. P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
  44. P: "LastSaved|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:29:59.150"
  45. P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel"
  46. P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_10_Unity_EXPORT.mlt"
  47. }
  48. }
  49. }
  50. GlobalSettings: {
  51. Version: 1000
  52. Properties70: {
  53. P: "UpAxis", "int", "Integer", "",1
  54. P: "UpAxisSign", "int", "Integer", "",1
  55. P: "FrontAxis", "int", "Integer", "",2
  56. P: "FrontAxisSign", "int", "Integer", "",1
  57. P: "CoordAxis", "int", "Integer", "",0
  58. P: "CoordAxisSign", "int", "Integer", "",1
  59. P: "OriginalUpAxis", "int", "Integer", "",1
  60. P: "OriginalUpAxisSign", "int", "Integer", "",1
  61. P: "UnitScaleFactor", "double", "Number", "",1
  62. P: "OriginalUnitScaleFactor", "double", "Number", "",1
  63. P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
  64. P: "DefaultCamera", "KString", "", "", "Producer Perspective"
  65. P: "TimeMode", "enum", "", "",6
  66. P: "TimeProtocol", "enum", "", "",2
  67. P: "SnapOnFrameMode", "enum", "", "",0
  68. P: "TimeSpanStart", "KTime", "Time", "",1539538600
  69. P: "TimeSpanStop", "KTime", "Time", "",92372316000
  70. P: "CustomFrameRate", "double", "Number", "",-1
  71. P: "TimeMarker", "Compound", "", ""
  72. P: "CurrentTimeMarker", "int", "Integer", "",-1
  73. }
  74. }
  75. ; Documents Description
  76. ;------------------------------------------------------------------
  77. Documents: {
  78. Count: 1
  79. Document: 2266844784816, "", "Scene" {
  80. Properties70: {
  81. P: "SourceObject", "object", "", ""
  82. P: "ActiveAnimStackName", "KString", "", "", "Take 001"
  83. }
  84. RootNode: 0
  85. }
  86. }
  87. ; Document References
  88. ;------------------------------------------------------------------
  89. References: {
  90. }
  91. ; Object definitions
  92. ;------------------------------------------------------------------
  93. Definitions: {
  94. Version: 100
  95. Count: 40
  96. ObjectType: "GlobalSettings" {
  97. Count: 1
  98. }
  99. ObjectType: "AnimationStack" {
  100. Count: 1
  101. PropertyTemplate: "FbxAnimStack" {
  102. Properties70: {
  103. P: "Description", "KString", "", "", ""
  104. P: "LocalStart", "KTime", "Time", "",0
  105. P: "LocalStop", "KTime", "Time", "",0
  106. P: "ReferenceStart", "KTime", "Time", "",0
  107. P: "ReferenceStop", "KTime", "Time", "",0
  108. }
  109. }
  110. }
  111. ObjectType: "AnimationLayer" {
  112. Count: 1
  113. PropertyTemplate: "FbxAnimLayer" {
  114. Properties70: {
  115. P: "Weight", "Number", "", "A",100
  116. P: "Mute", "bool", "", "",0
  117. P: "Solo", "bool", "", "",0
  118. P: "Lock", "bool", "", "",0
  119. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  120. P: "BlendMode", "enum", "", "",0
  121. P: "RotationAccumulationMode", "enum", "", "",0
  122. P: "ScaleAccumulationMode", "enum", "", "",0
  123. P: "BlendModeBypass", "ULongLong", "", "",0
  124. }
  125. }
  126. }
  127. ObjectType: "NodeAttribute" {
  128. Count: 2
  129. PropertyTemplate: "FbxNull" {
  130. Properties70: {
  131. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  132. P: "Size", "double", "Number", "",100
  133. P: "Look", "enum", "", "",1
  134. }
  135. }
  136. }
  137. ObjectType: "Model" {
  138. Count: 15
  139. PropertyTemplate: "FbxNode" {
  140. Properties70: {
  141. P: "QuaternionInterpolate", "enum", "", "",0
  142. P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
  143. P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
  144. P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
  145. P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
  146. P: "TranslationActive", "bool", "", "",0
  147. P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
  148. P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
  149. P: "TranslationMinX", "bool", "", "",0
  150. P: "TranslationMinY", "bool", "", "",0
  151. P: "TranslationMinZ", "bool", "", "",0
  152. P: "TranslationMaxX", "bool", "", "",0
  153. P: "TranslationMaxY", "bool", "", "",0
  154. P: "TranslationMaxZ", "bool", "", "",0
  155. P: "RotationOrder", "enum", "", "",0
  156. P: "RotationSpaceForLimitOnly", "bool", "", "",0
  157. P: "RotationStiffnessX", "double", "Number", "",0
  158. P: "RotationStiffnessY", "double", "Number", "",0
  159. P: "RotationStiffnessZ", "double", "Number", "",0
  160. P: "AxisLen", "double", "Number", "",10
  161. P: "PreRotation", "Vector3D", "Vector", "",0,0,0
  162. P: "PostRotation", "Vector3D", "Vector", "",0,0,0
  163. P: "RotationActive", "bool", "", "",0
  164. P: "RotationMin", "Vector3D", "Vector", "",0,0,0
  165. P: "RotationMax", "Vector3D", "Vector", "",0,0,0
  166. P: "RotationMinX", "bool", "", "",0
  167. P: "RotationMinY", "bool", "", "",0
  168. P: "RotationMinZ", "bool", "", "",0
  169. P: "RotationMaxX", "bool", "", "",0
  170. P: "RotationMaxY", "bool", "", "",0
  171. P: "RotationMaxZ", "bool", "", "",0
  172. P: "InheritType", "enum", "", "",0
  173. P: "ScalingActive", "bool", "", "",0
  174. P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
  175. P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
  176. P: "ScalingMinX", "bool", "", "",0
  177. P: "ScalingMinY", "bool", "", "",0
  178. P: "ScalingMinZ", "bool", "", "",0
  179. P: "ScalingMaxX", "bool", "", "",0
  180. P: "ScalingMaxY", "bool", "", "",0
  181. P: "ScalingMaxZ", "bool", "", "",0
  182. P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
  183. P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
  184. P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
  185. P: "MinDampRangeX", "double", "Number", "",0
  186. P: "MinDampRangeY", "double", "Number", "",0
  187. P: "MinDampRangeZ", "double", "Number", "",0
  188. P: "MaxDampRangeX", "double", "Number", "",0
  189. P: "MaxDampRangeY", "double", "Number", "",0
  190. P: "MaxDampRangeZ", "double", "Number", "",0
  191. P: "MinDampStrengthX", "double", "Number", "",0
  192. P: "MinDampStrengthY", "double", "Number", "",0
  193. P: "MinDampStrengthZ", "double", "Number", "",0
  194. P: "MaxDampStrengthX", "double", "Number", "",0
  195. P: "MaxDampStrengthY", "double", "Number", "",0
  196. P: "MaxDampStrengthZ", "double", "Number", "",0
  197. P: "PreferedAngleX", "double", "Number", "",0
  198. P: "PreferedAngleY", "double", "Number", "",0
  199. P: "PreferedAngleZ", "double", "Number", "",0
  200. P: "LookAtProperty", "object", "", ""
  201. P: "UpVectorProperty", "object", "", ""
  202. P: "Show", "bool", "", "",1
  203. P: "NegativePercentShapeSupport", "bool", "", "",1
  204. P: "DefaultAttributeIndex", "int", "Integer", "",-1
  205. P: "Freeze", "bool", "", "",0
  206. P: "LODBox", "bool", "", "",0
  207. P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
  208. P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
  209. P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
  210. P: "Visibility", "Visibility", "", "A",1
  211. P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
  212. }
  213. }
  214. }
  215. ObjectType: "Geometry" {
  216. Count: 13
  217. PropertyTemplate: "FbxMesh" {
  218. Properties70: {
  219. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  220. P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
  221. P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
  222. P: "Primary Visibility", "bool", "", "",1
  223. P: "Casts Shadows", "bool", "", "",1
  224. P: "Receive Shadows", "bool", "", "",1
  225. }
  226. }
  227. }
  228. ObjectType: "Material" {
  229. Count: 2
  230. PropertyTemplate: "FbxSurfacePhong" {
  231. Properties70: {
  232. P: "ShadingModel", "KString", "", "", "Phong"
  233. P: "MultiLayer", "bool", "", "",0
  234. P: "EmissiveColor", "Color", "", "A",0,0,0
  235. P: "EmissiveFactor", "Number", "", "A",1
  236. P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
  237. P: "AmbientFactor", "Number", "", "A",1
  238. P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
  239. P: "DiffuseFactor", "Number", "", "A",1
  240. P: "Bump", "Vector3D", "Vector", "",0,0,0
  241. P: "NormalMap", "Vector3D", "Vector", "",0,0,0
  242. P: "BumpFactor", "double", "Number", "",1
  243. P: "TransparentColor", "Color", "", "A",0,0,0
  244. P: "TransparencyFactor", "Number", "", "A",0
  245. P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
  246. P: "DisplacementFactor", "double", "Number", "",1
  247. P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
  248. P: "VectorDisplacementFactor", "double", "Number", "",1
  249. P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
  250. P: "SpecularFactor", "Number", "", "A",1
  251. P: "ShininessExponent", "Number", "", "A",20
  252. P: "ReflectionColor", "Color", "", "A",0,0,0
  253. P: "ReflectionFactor", "Number", "", "A",1
  254. }
  255. }
  256. }
  257. ObjectType: "Texture" {
  258. Count: 3
  259. PropertyTemplate: "FbxFileTexture" {
  260. Properties70: {
  261. P: "TextureTypeUse", "enum", "", "",0
  262. P: "Texture alpha", "Number", "", "A",1
  263. P: "CurrentMappingType", "enum", "", "",0
  264. P: "WrapModeU", "enum", "", "",0
  265. P: "WrapModeV", "enum", "", "",0
  266. P: "UVSwap", "bool", "", "",0
  267. P: "PremultiplyAlpha", "bool", "", "",1
  268. P: "Translation", "Vector", "", "A",0,0,0
  269. P: "Rotation", "Vector", "", "A",0,0,0
  270. P: "Scaling", "Vector", "", "A",1,1,1
  271. P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
  272. P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
  273. P: "CurrentTextureBlendMode", "enum", "", "",1
  274. P: "UVSet", "KString", "", "", "default"
  275. P: "UseMaterial", "bool", "", "",0
  276. P: "UseMipMap", "bool", "", "",0
  277. }
  278. }
  279. }
  280. ObjectType: "Video" {
  281. Count: 2
  282. PropertyTemplate: "FbxVideo" {
  283. Properties70: {
  284. P: "ImageSequence", "bool", "", "",0
  285. P: "ImageSequenceOffset", "int", "Integer", "",0
  286. P: "FrameRate", "double", "Number", "",0
  287. P: "LastFrame", "int", "Integer", "",0
  288. P: "Width", "int", "Integer", "",0
  289. P: "Height", "int", "Integer", "",0
  290. P: "Path", "KString", "XRefUrl", "", ""
  291. P: "StartFrame", "int", "Integer", "",0
  292. P: "StopFrame", "int", "Integer", "",0
  293. P: "PlaySpeed", "double", "Number", "",0
  294. P: "Offset", "KTime", "Time", "",0
  295. P: "InterlaceMode", "enum", "", "",0
  296. P: "FreeRunning", "bool", "", "",0
  297. P: "Loop", "bool", "", "",0
  298. P: "AccessMode", "enum", "", "",0
  299. }
  300. }
  301. }
  302. }
  303. ; Object properties
  304. ;------------------------------------------------------------------
  305. Objects: {
  306. NodeAttribute: 2268336199136, "NodeAttribute::", "Null" {
  307. Properties70: {
  308. P: "Look", "enum", "", "",0
  309. }
  310. TypeFlags: "Null"
  311. }
  312. NodeAttribute: 2268523567472, "NodeAttribute::", "LodGroup" {
  313. Properties70: {
  314. P: "WorldSpace", "bool", "", "",1
  315. P: "Thresholds|Level0", "Distance", "", "",100, "cm"
  316. P: "Thresholds|Level1", "Distance", "", "",100, "cm"
  317. P: "DisplayLevels|Level0", "enum", "", "",1
  318. P: "DisplayLevels|Level1", "enum", "", "",1
  319. P: "DisplayLevels|Level2", "enum", "", "",1
  320. }
  321. }
  322. Geometry: 2267733746848, "Geometry::", "Mesh" {
  323. Vertices: *2400 {
  324. a: -145.7734375,186.858657836914,-69.08056640625,144.13330078125,187.082214355469,-68.380615234375,-144.39111328125,186.858657836914,-57.72216796875,144.13330078125,187.082214355469,-58.42236328125,144.13330078125,197.785400390625,-58.42236328125,-145.2490234375,199.066711425781,-57.72216796875,-146.1337890625,199.066711425781,-69.08056640625,144.13330078125,197.785400390625,-68.380615234375,-84.6025390625,185.206604003906,-69.265869140625,-82.4169921875,185.206604003906,-56.74560546875,-87.98046875,198.663269042969,-56.74560546875,-88.1796875,198.663269042969,-69.265869140625,6.86865234375,184.963073730469,-54.986572265625,3.76220703125,198.419738769531,-54.986572265625,7.3447265625,184.963073730469,-67.5068359375,4.91845703125,198.419738769531,-67.5068359375,143.9873046875,97.8811645507813,-58.314208984375,-148.25439453125,98.2454071044922,-58.23291015625,-148.25439453125,98.423942565918,-68.570068359375,143.9873046875,97.8811645507813,-68.48876953125,143.9873046875,86.8487930297852,-58.314208984375,-148.25439453125,86.2820205688477,-58.23291015625,-148.25439453125,86.460578918457,-68.570068359375,143.9873046875,86.8487930297852,-68.48876953125,-16.31591796875,99.1528167724609,-57.572998046875,-16.294921875,99.1528167724609,-70.093017578125,-16.63232421875,85.5771560668945,-70.093017578125,-16.80859375,85.5771560668945,-57.572998046875,59.53857421875,98.4319152832031,-57.141357421875,55.82666015625,84.8562622070313,-57.141357421875,56.63232421875,84.8562622070313,-69.661376953125,60.11083984375,98.4319152832031,-69.661376953125,-144.275390625,199.653625488281,-57.0849609375,-143.16162109375,186.196975708008,-57.0849609375,-144.70947265625,186.196975708008,-69.605224609375,-145.22265625,199.653625488281,-69.605224609375,-146.09326171875,85.0095443725586,-57.17236328125,-146.09033203125,85.2222518920898,-69.6923828125,-146.08447265625,99.6968078613281,-69.6923828125,-146.0849609375,99.484130859375,-57.17236328125,141.4150390625,85.5561141967773,-57.141357421875,141.4384765625,85.5561141967773,-69.661376953125,
  325. 141.5400390625,99.1317749023438,-69.661376953125,141.5234375,99.1317749023438,-57.141357421875,141.9169921875,199.152191162109,-57.112548828125,141.958984375,185.695526123047,-57.112548828125,141.96533203125,185.695526123047,-69.632568359375,141.9326171875,199.152191162109,-69.632568359375,146.89697265625,187.20263671875,68.3330078125,-143.19140625,186.550552368164,68.44775390625,145.5927734375,187.20263671875,57.61474609375,-143.19140625,186.550552368164,57.500244140625,-143.19140625,198.31706237793,57.500244140625,146.40234375,198.722732543945,57.61474609375,147.2373046875,198.722732543945,68.3330078125,-143.19140625,198.31706237793,68.44775390625,84.6025390625,185.206604003906,68.83837890625,82.4169921875,185.206604003906,56.318115234375,87.98046875,198.663269042969,56.318115234375,88.1796875,198.663269042969,68.83837890625,18.13134765625,184.963073730469,53.5390625,21.23779296875,198.419738769531,53.5390625,17.6552734375,184.963073730469,66.059326171875,20.08154296875,198.419738769531,66.059326171875,-143.9873046875,97.8811645507813,57.88671875,148.25439453125,98.2454071044922,57.805419921875,148.25439453125,98.423942565918,68.142578125,-143.9873046875,97.8811645507813,68.061279296875,-143.9873046875,86.8487930297852,57.88671875,148.25439453125,86.2820205688477,57.805419921875,148.25439453125,86.460578918457,68.142578125,-143.9873046875,86.8487930297852,68.061279296875,41.31591796875,99.6648101806641,58.2197265625,41.294921875,99.6648101806641,70.73974609375,41.63232421875,85.4782791137695,70.73974609375,41.80859375,85.4782791137695,58.2197265625,-59.53857421875,98.4319152832031,56.7138671875,-55.82666015625,85.7058486938477,56.7138671875,-56.63232421875,85.7058486938477,69.23388671875,-60.11083984375,98.4319152832031,69.23388671875,144.275390625,199.653625488281,56.657470703125,143.16162109375,186.196975708008,56.657470703125,144.70947265625,186.196975708008,69.177734375,145.22265625,199.653625488281,69.177734375,146.09326171875,85.0095443725586,56.744873046875,146.09033203125,85.2222518920898,69.264892578125,
  326. 146.08447265625,99.6968078613281,69.264892578125,146.0849609375,99.484130859375,56.744873046875,-141.4150390625,85.5561141967773,56.7138671875,-141.4384765625,85.5561141967773,69.23388671875,-141.5400390625,99.1317749023438,69.23388671875,-141.5234375,99.1317749023438,56.7138671875,-141.9169921875,199.152191162109,56.68505859375,-141.958984375,185.695526123047,56.68505859375,-141.96533203125,185.695526123047,69.205078125,-141.9326171875,199.152191162109,69.205078125,-135.2041015625,-1.62301886081696,68.351318359375,-134.39794921875,212.846206665039,68.57763671875,-134.39794921875,212.846206665039,81.702880859375,-135.2041015625,-1.62301886081696,81.929443359375,-122.47705078125,-1.62301886081696,68.351318359375,-122.095703125,212.846206665039,68.57763671875,-121.86767578125,212.846206665039,82.22705078125,-122.47705078125,-1.62301886081696,81.929443359375,-125.66015625,-1.62301886081696,75.268310546875,-132.1064453125,-1.62301886081696,75.142333984375,-128.84033203125,-1.62301886081696,68.351318359375,-128.84033203125,-1.62301886081696,81.929443359375,-125.17236328125,212.846206665039,75.263916015625,-131.40380859375,212.846206665039,75.142333984375,-128.24658203125,212.846206665039,68.57763671875,-128.24658203125,212.846206665039,81.702880859375,-135.4033203125,-1.11850893497467,68.532470703125,-135.0703125,-1.11850893497467,68.138427734375,-134.36376953125,212.184677124023,68.26513671875,-134.69091796875,212.184677124023,68.652099609375,-122.61083984375,-1.11850893497467,68.138427734375,-122.27734375,-1.11850893497467,68.532470703125,-121.802734375,212.184677124023,68.652099609375,-122.1298828125,212.184677124023,68.26513671875,-135.4033203125,-1.11886143684387,81.748291015625,-135.0703125,-1.11886143684387,82.142333984375,-134.69091796875,212.184677124023,81.62841796875,-134.36376953125,212.184677124023,82.015625,-122.61083984375,-1.11886143684387,82.142333984375,-122.27734375,-1.11886143684387,81.748291015625,-121.90234375,212.184677124023,82.53955078125,-121.57470703125,212.184677124023,82.152587890625,-121.67822265625,61.41162109375,68.465087890625,
  327. -122.25439453125,64.0000839233398,80.55029296875,-122.57177734375,64.0000839233398,80.925537109375,-134.07763671875,64.0000915527344,81.9462890625,-135.123046875,64.0000762939453,80.70947265625,-134.8564453125,60.0458183288574,67.933837890625,-134.5390625,60.0458145141602,67.558349609375,-121.9951171875,61.4116249084473,68.08984375,-121.79248046875,106.916198730469,81.2470703125,-133.5234375,109.238670349121,81.140869140625,-133.83447265625,109.238655090332,80.77294921875,-133.70849609375,110.550926208496,68.709716796875,-133.39697265625,110.550903320313,68.341552734375,-122.08154296875,109.238845825195,67.84228515625,-121.39013671875,109.238800048828,68.65966796875,-121.48095703125,106.916213989258,80.879150390625,-134.52734375,169.440734863281,69.136962890625,-134.28564453125,169.440673828125,81.2294921875,-133.9736328125,169.440673828125,81.5986328125,-122.5419921875,169.440673828125,81.88134765625,-121.751953125,169.440689086914,80.94677734375,-121.9912109375,169.440734863281,68.85107421875,-122.30322265625,169.440734863281,68.481689453125,-133.7314453125,169.440719604492,68.195556640625,-134.9541015625,212.846206665039,-82.02685546875,-135.3212890625,-1.62301635742188,-81.814453125,-122.1962890625,-1.62301635742188,-81.814453125,-121.3759765625,212.846206665039,-82.02685546875,-134.9541015625,212.846206665039,-69.2998046875,-135.3212890625,-1.62301635742188,-69.511962890625,-121.671875,-1.62301635742188,-69.2841796875,-121.3759765625,212.846206665039,-69.2998046875,-128.037109375,212.846206665039,-72.482666015625,-128.1630859375,212.846206665039,-78.928955078125,-134.9541015625,212.846206665039,-75.663330078125,-121.3759765625,212.846206665039,-75.663330078125,-128.63525390625,-1.62301635742188,-72.588623046875,-128.7568359375,-1.62301635742188,-78.820068359375,-135.3212890625,-1.62301635742188,-75.663330078125,-122.1962890625,-1.62301635742188,-75.663330078125,-134.77294921875,212.341705322266,-82.226318359375,-135.1669921875,212.341705322266,-81.89306640625,-135.6337890625,-0.96148681640625,-81.780029296875,
  328. -135.2470703125,-0.96148681640625,-82.107421875,-135.1669921875,212.341705322266,-69.43359375,-134.77294921875,212.341705322266,-69.10009765625,-135.2470703125,-0.96148681640625,-69.218994140625,-135.6337890625,-0.96148681640625,-69.546142578125,-121.55712890625,212.342056274414,-82.226318359375,-121.1630859375,212.342056274414,-81.89306640625,-122.2705078125,-0.96148681640625,-82.107421875,-121.8837890625,-0.96148681640625,-81.780029296875,-121.1630859375,212.342056274414,-69.43359375,-121.55712890625,212.342056274414,-69.10009765625,-121.359375,-0.96148681640625,-69.318603515625,-121.74658203125,-0.96148681640625,-68.9912109375,-134.84033203125,142.026062011719,-69.094482421875,-122.7548828125,139.437591552734,-69.6708984375,-122.3798828125,139.437591552734,-69.988037109375,-121.35888671875,139.437591552734,-81.493896484375,-122.595703125,139.437606811523,-82.53955078125,-135.37158203125,143.391876220703,-82.27294921875,-135.7470703125,143.391876220703,-81.95556640625,-135.21533203125,142.026062011719,-69.411865234375,-122.05859375,96.521484375,-69.208740234375,-122.16455078125,94.1990127563477,-80.93994140625,-122.5322265625,94.1990280151367,-81.251220703125,-134.595703125,92.8867568969727,-81.124755859375,-134.9638671875,92.8867797851563,-80.8134765625,-135.46337890625,94.1988372802734,-69.498046875,-134.6455078125,94.1988830566406,-68.806640625,-122.42626953125,96.5214691162109,-68.897705078125,-134.16845703125,33.9969482421875,-81.944091796875,-122.07568359375,33.9970092773438,-81.7021484375,-121.70654296875,33.9970092773438,-81.389892578125,-121.423828125,33.9970092773438,-69.95849609375,-122.3583984375,33.9969940185547,-69.16845703125,-134.45458984375,33.9969482421875,-69.407470703125,-134.82373046875,33.9969482421875,-69.7197265625,-135.10986328125,33.9969635009766,-81.148193359375,135.61328125,212.846206665039,-82.3707275390625,135.9951171875,-1.62301635742188,-82.1446533203125,135.9951171875,-1.62301635742188,-69.0191650390625,135.61328125,212.846206665039,-68.792724609375,122.88623046875,212.846206665039,-82.37060546875,
  329. 123.6923828125,-1.62301635742188,-82.1446533203125,123.46484375,-1.62301635742188,-68.4947509765625,122.88623046875,212.846206665039,-68.7926025390625,126.0693359375,212.846206665039,-75.4537353515625,132.515625,212.846206665039,-75.5797119140625,129.25,212.846206665039,-82.3707275390625,129.25,212.846206665039,-68.7926025390625,126.76904296875,-1.62301635742188,-75.4581298828125,133.00048828125,-1.62301635742188,-75.5797119140625,129.84375,-1.62301635742188,-82.1446533203125,129.84375,-1.62301635742188,-69.0191650390625,135.81298828125,212.341705322266,-82.1895751953125,135.4794921875,212.341705322266,-82.5841064453125,135.96044921875,-0.96148681640625,-82.4571533203125,136.2880859375,-0.96148681640625,-82.0699462890625,123.02001953125,212.341705322266,-82.5836181640625,122.68701171875,212.341705322266,-82.18994140625,123.3994140625,-0.96148681640625,-82.0699462890625,123.7265625,-0.96148681640625,-82.4571533203125,135.81298828125,212.342056274414,-68.9737548828125,135.4794921875,212.342056274414,-68.5797119140625,136.2880859375,-0.96148681640625,-69.0933837890625,135.96044921875,-0.96148681640625,-68.7066650390625,123.02001953125,212.342056274414,-68.5797119140625,122.68701171875,212.342056274414,-68.9742431640625,123.4990234375,-0.96148681640625,-68.1822509765625,123.171875,-0.96148681640625,-68.5693359375,122.68115234375,142.026062011719,-82.2569580078125,123.25732421875,139.437591552734,-70.1719970703125,123.57470703125,139.437591552734,-69.7965087890625,135.08056640625,139.437591552734,-68.7760009765625,136.12646484375,139.437606811523,-70.0123291015625,135.85986328125,143.391860961914,-82.7880859375,135.54248046875,143.391876220703,-83.1636962890625,122.99853515625,142.026062011719,-82.6318359375,122.79541015625,96.5214767456055,-69.4752197265625,134.52685546875,94.1990127563477,-69.5811767578125,134.837890625,94.1990203857422,-69.9488525390625,134.71142578125,92.8867492675781,-82.0123291015625,134.400390625,92.8867721557617,-82.3804931640625,123.0849609375,94.1988372802734,-82.8800048828125,122.39306640625,94.1988754272461,-82.0621337890625,
  330. 122.484375,96.5214691162109,-69.843017578125,135.53076171875,33.9969482421875,-81.5850830078125,135.2890625,33.9970092773438,-69.4927978515625,134.9765625,33.9970092773438,-69.1231689453125,123.54541015625,33.9970092773438,-68.8409423828125,122.75537109375,33.9969863891602,-69.7755126953125,122.994140625,33.9969482421875,-81.8712158203125,123.30615234375,33.9969482421875,-82.2403564453125,134.73486328125,33.9969635009766,-82.5264892578125,123.15576171875,-1.62301886081696,81.4029541015625,122.78857421875,212.846206665039,81.1905517578125,135.9140625,212.846206665039,81.1905517578125,136.73388671875,-1.62301886081696,81.4029541015625,123.15576171875,-1.62301886081696,68.6754150390625,122.78857421875,212.846206665039,68.8878173828125,136.43798828125,212.846206665039,68.65966796875,136.73388671875,-1.62301886081696,68.6754150390625,130.07275390625,-1.62301886081696,71.8585205078125,129.94677734375,-1.62301886081696,78.3052978515625,123.15576171875,-1.62301886081696,75.0391845703125,136.73388671875,-1.62301886081696,75.039306640625,129.474609375,212.846206665039,71.9644775390625,129.35302734375,212.846206665039,78.196044921875,122.78857421875,212.846206665039,75.0391845703125,135.9140625,212.846206665039,75.0391845703125,123.3369140625,-1.11850893497467,81.6021728515625,122.94287109375,-1.11850893497467,81.269287109375,122.47607421875,212.184677124023,81.1563720703125,122.86328125,212.184677124023,81.483154296875,122.94287109375,-1.11850893497467,68.80908203125,123.3369140625,-1.11850893497467,68.4761962890625,122.86328125,212.184677124023,68.5953369140625,122.47607421875,212.184677124023,68.9224853515625,136.552734375,-1.11886143684387,81.6021728515625,136.94677734375,-1.11886143684387,81.2694091796875,135.83935546875,212.184677124023,81.4830322265625,136.2265625,212.184677124023,81.1563720703125,136.94677734375,-1.11886143684387,68.8092041015625,136.552734375,-1.11886143684387,68.4761962890625,136.75048828125,212.184677124023,68.6949462890625,136.36328125,212.184677124023,68.367431640625,122.67578125,61.4116172790527,68.470458984375,
  331. 134.76123046875,64.0000915527344,69.0465087890625,135.13623046875,64.0000839233398,69.3638916015625,136.1572265625,64.0000915527344,80.8702392578125,134.92041015625,64.0000762939453,81.9156494140625,122.14453125,60.0458145141602,81.6490478515625,121.76904296875,60.0458106994629,81.3316650390625,122.30078125,61.41162109375,68.7877197265625,135.4580078125,106.916198730469,68.5845947265625,135.35205078125,109.238662719727,80.31591796875,134.98388671875,109.238662719727,80.627685546875,122.92041015625,110.550933837891,80.500732421875,122.55224609375,110.550903320313,80.1895751953125,122.05322265625,109.238845825195,68.8741455078125,122.87060546875,109.238800048828,68.1822509765625,135.08984375,106.916213989258,68.2735595703125,123.34765625,169.440734863281,81.3199462890625,135.4404296875,169.440673828125,81.0782470703125,135.8095703125,169.440673828125,80.7657470703125,136.09228515625,169.440673828125,69.33447265625,135.15771484375,169.440689086914,68.5445556640625,123.06201171875,169.440734863281,68.7833251953125,122.6923828125,169.440734863281,69.095458984375,122.40673828125,169.440704345703,80.5244140625,144.33251953125,200.093948364258,49.3155517578125,144.58984375,204.415557861328,49.3092041015625,144.1796875,200.093948364258,66.916015625,144.45166015625,204.415557861328,66.9071044921875,143.42431640625,199.541961669922,48.5264892578125,143.42431640625,204.967483520508,48.519775390625,143.66259765625,199.541961669922,67.7091064453125,143.66259765625,204.967498779297,67.7012939453125,-142.86767578125,199.541961669922,49.188720703125,-142.8671875,199.541961669922,68.28662109375,-142.86767578125,204.967483520508,49.189697265625,-142.86767578125,204.967483520508,68.2874755859375,-143.8134765625,200.088562011719,49.42626953125,-143.8134765625,200.088562011719,68.05419921875,-143.81298828125,204.420928955078,49.42724609375,-143.8134765625,204.420928955078,68.054931640625,10.96728515625,204.967483520508,49.3275146484375,11.09521484375,204.967498779297,68.469970703125,11.09521484375,199.541961669922,68.473876953125,10.96728515625,199.541961669922,49.3306884765625,
  332. 143.8876953125,200.093948364258,22.249267578125,143.8837890625,204.415557861328,22.24169921875,142.95947265625,200.093948364258,46.7919921875,143.7451171875,204.415557861328,46.78125,142.251953125,199.541961669922,21.295654296875,142.251953125,204.967483520508,21.28759765625,142.49072265625,199.541961669922,47.75048828125,142.49072265625,204.967498779297,47.740966796875,-144.88427734375,199.541961669922,21.5888671875,-145.314453125,199.541961669922,48.448486328125,-144.88427734375,204.967483520508,21.590087890625,-145.31494140625,204.967483520508,48.4493408203125,-145.82958984375,200.088562011719,21.8760986328125,-146.26025390625,200.088562011719,48.16748046875,-145.8291015625,204.420928955078,21.877197265625,-146.26025390625,204.420928955078,48.16845703125,-42.3349609375,204.770111083984,23.6920166015625,-42.2548828125,204.770111083984,48.460693359375,-42.25439453125,199.739349365234,48.46337890625,-42.3349609375,199.739349365234,23.694091796875,143.8876953125,200.093948364258,-67.0565185546875,143.8837890625,204.415557861328,-67.063720703125,142.95947265625,200.093948364258,-48.1259765625,143.7451171875,204.415557861328,-48.1361083984375,142.251953125,199.541961669922,-67.96240234375,142.251953125,204.967483520508,-67.9700927734375,142.49072265625,199.541961669922,-47.21533203125,142.49072265625,204.967498779297,-47.224365234375,-144.88427734375,199.541961669922,-67.683837890625,-145.72314453125,199.541961669922,-46.9508056640625,-144.88427734375,204.967483520508,-67.6827392578125,-145.72314453125,204.967483520508,-46.949951171875,-145.82958984375,200.088562011719,-67.4110107421875,-146.6689453125,200.088562011719,-47.2177734375,-145.8291015625,204.420928955078,-67.409912109375,-146.6689453125,204.420928955078,-47.2169189453125,143.69873046875,204.602294921875,-0.30517578125,143.92041015625,199.907211303711,-0.31982421875,143.50634765625,200.10124206543,-17.6751708984375,143.29150390625,204.408218383789,-17.6641845703125,146.255859375,199.752944946289,1.9803466796875,146.2841796875,204.754440307617,1.9903564453125,
  333. 145.94775390625,199.755020141602,18.69921875,145.97705078125,204.756500244141,18.717529296875,145.48095703125,200.093948364258,-45.1845703125,145.47705078125,204.415557861328,-45.191650390625,144.552734375,200.093948364258,-21.25048828125,145.33837890625,204.415557861328,-21.260498046875,145.04443359375,200.093948364258,-36.8843994140625,145.11767578125,204.415557861328,-37.3402099609375,146.0908203125,200.093948364258,-26.95556640625,145.58349609375,204.415557861328,-25.8746337890625,145.4892578125,199.541961669922,1.333740234375,145.48828125,204.967483520508,1.3447265625,144.888671875,204.967483520508,19.531494140625,144.8896484375,199.541961669922,19.5115966796875,143.04443359375,205.21142578125,0.74560546875,143.0439453125,199.298217773438,0.728271484375,142.33349609375,204.967483520508,-18.7213134765625,142.3330078125,199.541961669922,-18.73486328125,143.845703125,199.541961669922,-46.076416015625,143.845703125,204.967483520508,-46.083984375,144.083984375,199.541961669922,-20.35400390625,144.083984375,204.967498779297,-20.36279296875,-142.947265625,199.541961669922,21.3160400390625,-143.5107421875,199.541961669922,3.1270751953125,-143.5107421875,204.967483520508,3.1087646484375,-142.947265625,204.967483520508,21.3094482421875,-143.98779296875,200.014587402344,20.882080078125,-144.54443359375,200.014587402344,3.570556640625,-144.54443359375,204.494888305664,3.552978515625,-143.9873046875,204.494888305664,20.8756103515625,-144.59619140625,199.541961669922,-18.7645263671875,-145.015625,204.974212646484,0.7073974609375,-145.015625,199.537078857422,0.7099609375,-144.59619140625,204.967483520508,-18.7657470703125,-145.46337890625,200.099029541016,-18.0037841796875,-145.88330078125,204.414993286133,-0.071533203125,-145.88330078125,200.096420288086,-0.069091796875,-145.46337890625,204.410827636719,-18.0048828125,-141.76611328125,199.541961669922,-46.0216064453125,-141.13623046875,199.541961669922,-20.530517578125,-141.76611328125,204.967483520508,-46.0205078125,-141.13671875,204.967483520508,-20.5296630859375,-142.71142578125,200.088562011719,-45.7530517578125,
  334. -142.08203125,200.088562011719,-20.7933349609375,-142.7109375,204.420928955078,-45.751953125,-142.08203125,204.420928955078,-20.79248046875,18.97607421875,205.031661987305,21.1884765625,18.9765625,199.477798461914,21.18017578125,19.0595703125,199.477798461914,2.5672607421875,19.05908203125,205.031661987305,2.565185546875,-20.02294921875,204.967483520508,-19.7376708984375,-19.93798828125,205.080062866211,-0.2672119140625,-19.9384765625,199.43049621582,-0.2735595703125,-20.0234375,199.541961669922,-19.7430419921875,35.51416015625,204.967483520508,-45.877197265625,35.9013671875,204.967498779297,-20.24365234375,35.9013671875,199.541961669922,-20.238525390625,35.51416015625,199.541961669922,-45.8729248046875,-144.6455078125,100.19734954834,-48.8118896484375,-144.90283203125,104.51895904541,-48.8055419921875,-144.49267578125,100.19734954834,-66.4124755859375,-144.7646484375,104.51895904541,-66.4031982421875,-143.7373046875,99.6453628540039,-48.0228271484375,-143.7373046875,105.07088470459,-48.0159912109375,-143.9755859375,99.6453628540039,-67.2054443359375,-143.9755859375,105.070899963379,-67.1976318359375,142.5546875,99.6453628540039,-48.6849365234375,142.55419921875,99.6453628540039,-67.7830810546875,142.5546875,105.07088470459,-48.6859130859375,142.5546875,105.07088470459,-67.7840576171875,143.50048828125,100.191963195801,-48.9227294921875,143.50048828125,100.191963195801,-67.5506591796875,143.5,104.52433013916,-48.9237060546875,143.50048828125,104.52433013916,-67.5511474609375,-11.2802734375,105.07088470459,-48.8236083984375,-11.408203125,105.070899963379,-67.9661865234375,-11.408203125,99.6453628540039,-67.9700927734375,-11.2802734375,99.6453628540039,-48.8270263671875,-144.3232421875,100.19734954834,-25.7255859375,-144.31982421875,104.51895904541,-25.719482421875,-143.13330078125,100.19734954834,-46.135009765625,-143.91943359375,104.51895904541,-46.1361083984375,-142.6982421875,99.6453628540039,-24.9111328125,-142.6982421875,105.07088470459,-24.9046630859375,-142.65478515625,99.6453628540039,-46.926513671875,-142.65478515625,105.070899963379,-46.9183349609375,
  335. 144.41796875,99.6453628540039,-21.474609375,145.13427734375,99.6453628540039,-43.8177490234375,144.41796875,105.07088470459,-21.4754638671875,145.134765625,105.07088470459,-43.818603515625,145.3662109375,100.191963195801,-21.701416015625,146.0771484375,100.191963195801,-43.5716552734375,145.36572265625,104.52433013916,-21.7022705078125,146.0771484375,104.52433013916,-43.5723876953125,41.8994140625,104.873512268066,-24.5390625,42.08349609375,104.873512268066,-45.1490478515625,42.0830078125,99.8427505493164,-45.1514892578125,41.8994140625,99.8427505493164,-24.5406494140625,-144.20068359375,100.19734954834,67.14013671875,-144.19677734375,104.51895904541,67.1468505859375,-143.2724609375,100.19734954834,49.7884521484375,-144.05810546875,104.51895904541,49.7978515625,-142.56494140625,99.6453628540039,67.9703369140625,-142.56494140625,105.07088470459,67.9775390625,-142.8037109375,99.6453628540039,48.953857421875,-142.8037109375,105.070899963379,48.9622802734375,144.5712890625,99.6453628540039,67.7152099609375,145.41015625,99.6453628540039,48.711669921875,144.5712890625,105.07088470459,67.71435546875,145.41015625,105.07088470459,48.7108154296875,145.5166015625,100.191963195801,67.465087890625,146.35595703125,100.191963195801,48.9560546875,145.51611328125,104.52433013916,67.464111328125,146.3564453125,104.52433013916,48.95556640625,-144.01171875,104.705696105957,2.25,-144.2333984375,100.010612487793,2.2623291015625,-143.8193359375,100.204643249512,16.89697265625,-143.6044921875,104.511619567871,16.887939453125,-146.640625,99.8563461303711,-0.0069580078125,-146.6689453125,104.857841491699,-0.01953125,-146.20068359375,99.8584213256836,-20.00732421875,-146.2294921875,104.859901428223,-20.029296875,-145.55322265625,100.19734954834,47.42578125,-145.548828125,104.51895904541,47.4327392578125,-145.0537109375,100.19734954834,24.669677734375,-145.8388671875,104.51895904541,24.6942138671875,-145.26513671875,100.19734954834,39.5323486328125,-145.33056640625,104.51895904541,39.966552734375,-146.4892578125,100.19734954834,30.1187744140625,
  336. -146.00146484375,104.51895904541,29.0826416015625,-145.87939453125,99.6453628540039,0.7735595703125,-145.87841796875,105.07088470459,0.760498046875,-145.134765625,105.07088470459,-20.9930419921875,-145.13623046875,99.6453628540039,-20.969482421875,-143.357421875,105.314826965332,1.364013671875,-143.35693359375,99.4016189575195,1.3787841796875,-142.646484375,105.07088470459,17.779296875,-142.64599609375,99.6453628540039,17.7904052734375,-143.90234375,99.6453628540039,48.2425537109375,-143.90185546875,105.07088470459,48.24951171875,-144.60107421875,99.6453628540039,23.80908203125,-144.60107421875,105.070899963379,23.8175048828125,142.7060546875,99.6453628540039,-20.40625,143.1259765625,99.6453628540039,1.3614501953125,143.1259765625,105.07088470459,1.383056640625,142.7060546875,105.07088470459,-20.3983154296875,143.7431640625,100.117988586426,-19.8770751953125,144.1630859375,100.117988586426,0.8402099609375,144.1630859375,104.598289489746,0.86181640625,143.74267578125,104.598289489746,-19.8692626953125,144.283203125,99.6453628540039,17.8155517578125,144.70263671875,105.077613830566,1.396484375,144.70263671875,99.6404800415039,1.39404296875,144.283203125,105.07088470459,17.8167724609375,145.150390625,100.202430725098,17.174072265625,145.5703125,104.518394470215,2.05322265625,145.5703125,100.199821472168,2.0511474609375,145.150390625,104.514228820801,17.1749267578125,141.658203125,99.6453628540039,42.8072509765625,140.57177734375,99.6453628540039,18.60107421875,141.65771484375,105.07088470459,42.805908203125,140.572265625,105.07088470459,18.60009765625,142.59814453125,100.191963195801,42.5343017578125,141.52197265625,100.191963195801,18.832763671875,142.59765625,104.52433013916,42.5328369140625,141.52197265625,104.52433013916,18.8319091796875,-19.212890625,105.135063171387,-21.78515625,-19.2138671875,99.5811996459961,-21.775146484375,-19.44384765625,99.5811996459961,0.4932861328125,-19.443359375,105.135063171387,0.4959716796875,19.7099609375,105.07088470459,18.6361083984375,19.625,105.183464050293,2.21826171875,19.6259765625,99.5338973999023,2.2236328125,
  337. 19.71044921875,99.6453628540039,18.640625,-35.59326171875,105.07088470459,46.0113525390625,-36.439453125,105.070899963379,21.6651611328125,-36.43994140625,99.6453628540039,21.6605224609375,-35.59326171875,99.6453628540039,46.0072021484375,41.78564453125,104.269111633301,67.80859375,42.23876953125,104.269111633301,48.8009033203125,42.23876953125,98.8435897827148,48.79833984375,41.78564453125,98.8435897827148,67.8065185546875,2.4755859375,99.4527587890625,-56.493408203125,15.46875,98.7330017089844,-56.493408203125,13.97265625,90.784423828125,-56.493408203125,0.9794921875,91.5041809082031,-56.493408203125,1.537109375,99.5937194824219,58.167724609375,1.537109375,91.9721069335938,58.167724609375,13.99609375,91.9721069335938,58.167724609375,13.99609375,99.5937194824219,58.167724609375,14.591796875,91.8238677978516,-11.922119140625,1.5,91.8238677978516,-11.922119140625,1.5,99.8327941894531,-11.922119140625,14.591796875,99.8327941894531,-11.922119140625,124.5869140625,98.63134765625,-56.493408203125,134.88671875,99.3497619628906,-56.493408203125,135.69677734375,87.7344818115234,-56.493408203125,125.3974609375,87.0160675048828,-56.493408203125,124.85595703125,99.7043914794922,58.167724609375,124.85595703125,88.5976409912109,58.167724609375,134.70458984375,88.5976409912109,58.167724609375,134.70458984375,99.7043914794922,58.167724609375,134.490234375,87.8392639160156,-11.922119140625,124.2060546875,88.9972686767578,-11.922119140625,125.51220703125,100.595153808594,-11.922119140625,135.79638671875,99.4371490478516,-11.922119140625,-132.68798828125,99.340576171875,-56.493408203125,-122.41650390625,98.2916870117188,-56.493408203125,-123.599609375,86.7084350585938,-56.493408203125,-133.87060546875,87.7573089599609,-56.493408203125,-133.4296875,99.5459747314453,58.167724609375,-133.4296875,88.4392242431641,58.167724609375,-123.5810546875,88.4392242431641,58.167724609375,-123.5810546875,99.5459747314453,58.167724609375,-123.10986328125,88.2232055664063,-11.922119140625,-133.458984375,88.2232055664063,-11.922119140625,-133.458984375,99.8943786621094,-11.922119140625,
  338. -123.10986328125,99.8943786621094,-11.922119140625,1.552734375,200.663604736328,57.1650390625,-11.4404296875,199.94384765625,57.1650390625,-9.9443359375,191.995269775391,57.1650390625,3.048828125,192.715026855469,57.1650390625,2.4912109375,200.804565429688,-57.49609375,2.4912109375,193.182952880859,-57.49609375,-9.9677734375,193.182952880859,-57.49609375,-9.9677734375,200.804565429688,-57.49609375,-10.5634765625,193.034713745117,12.59375,2.5283203125,193.034713745117,12.59375,2.5283203125,201.043640136719,12.59375,-10.5634765625,201.043640136719,12.59375,-120.55859375,199.842193603516,57.1650390625,-130.8583984375,200.560607910156,57.1650390625,-131.66845703125,188.945327758789,57.1650390625,-121.369140625,188.226913452148,57.1650390625,-120.82763671875,200.915237426758,-57.49609375,-120.82763671875,189.808486938477,-57.49609375,-130.67626953125,189.808486938477,-57.49609375,-130.67626953125,200.915237426758,-57.49609375,-130.4619140625,189.050109863281,12.59375,-120.177734375,190.208114624023,12.59375,-121.48388671875,201.805999755859,12.59375,-131.76806640625,200.647994995117,12.59375,136.71630859375,200.551422119141,57.1650390625,126.44482421875,199.502532958984,57.1650390625,127.6279296875,187.919281005859,57.1650390625,137.89892578125,188.968154907227,57.1650390625,137.4580078125,200.756820678711,-57.49609375,137.4580078125,189.65007019043,-57.49609375,127.609375,189.65007019043,-57.49609375,127.609375,200.756820678711,-57.49609375,127.13818359375,189.434051513672,12.59375,137.4873046875,189.434051513672,12.59375,137.4873046875,201.105224609375,12.59375,127.13818359375,201.105224609375,12.59375,-138.556640625,105.106323242188,79.19189453125,-133.861328125,105.114135742188,79.4140625,-134.05517578125,120.759521484375,79.486328125,-138.3623046875,120.755249023438,79.27197265625,-139.16552734375,104.076416015625,78.50537109375,-133.25244140625,104.09375,78.505859375,-138.92138671875,121.841674804688,78.3466796875,-133.49609375,121.855224609375,78.3466796875,-133.49609375,126.958618164063,-84.74267578125,-138.92822265625,109.2236328125,-85.7138671875,
  339. -133.4912109375,109.220947265625,-85.7138671875,-138.92138671875,126.959838867188,-84.74267578125,-134.05322265625,126.225219726563,-85.63330078125,-138.369140625,110.029052734375,-86.5576171875,-134.05029296875,110.026611328125,-86.5576171875,-138.36474609375,126.226318359375,-85.63330078125,-138.92138671875,124.811767578125,-26.7392578125,-139.0341796875,107.062622070313,-27.20654296875,-133.384765625,107.068969726563,-27.20654296875,-133.49609375,124.817260742188,-26.73974609375,-137.416015625,131.71484375,81.51611328125,-134.296875,131.733642578125,81.73779296875,-134.2783203125,143.535034179688,81.10107421875,-137.28076171875,143.52001953125,80.88623046875,-137.8408203125,130.65185546875,80.8818359375,-133.8720703125,130.669189453125,80.880859375,-137.67041015625,144.558959960938,79.90869140625,-133.88818359375,144.572509765625,79.90771484375,-134.82470703125,141.030639648438,-87.83544921875,-138.611328125,128.032104492188,-86.9267578125,-134.97509765625,128.02978515625,-86.9267578125,-138.60693359375,141.031860351563,-87.83544921875,-135.212890625,140.24365234375,-88.62548828125,-138.2216796875,128.677612304688,-87.865234375,-135.36474609375,128.67529296875,-87.8642578125,-138.21875,140.244750976563,-88.6259765625,-138.10791015625,143.507446289063,3.02294921875,-138.1865234375,129.585083007813,3.37060546875,-134.40185546875,129.591430664063,3.3701171875,-134.32568359375,143.512817382813,3.0224609375,-138.30224609375,143.768310546875,47.43359375,-138.43359375,129.854736328125,48.14306640625,-134.54248046875,129.867431640625,48.14208984375,-134.52001953125,143.778442382813,47.43359375,139.40478515625,122.306327819824,-86.431640625,135.9052734375,122.239189147949,-86.5517578125,135.7451171875,135.141418457031,-85.638427734375,138.955078125,135.204406738281,-85.519287109375,139.8837890625,121.512870788574,-85.9873046875,135.47900390625,121.417778015137,-85.930419921875,139.36279296875,135.967834472656,-84.77490234375,135.32177734375,135.878829956055,-84.72265625,135.224609375,126.954643249512,85.7958984375,139.62158203125,112.551322937012,85.375244140625,
  340. 135.57177734375,112.450248718262,85.426513671875,139.265625,127.054618835449,85.74462890625,135.662109375,126.368705749512,86.4091796875,139.19970703125,113.090629577637,86.0537109375,135.9833984375,113.009941101074,86.093994140625,138.87353515625,126.448295593262,86.36865234375,138.244140625,130.741760253906,-0.545654296875,138.673828125,116.259941101074,-1.291015625,134.4658203125,116.161552429199,-1.237060546875,134.203125,130.646789550781,-0.493896484375,134.373046875,195.257385253906,-35.6759033203125,129.1015625,195.598693847656,-36.01708984375,128.68701171875,190.080078125,-30.5003662109375,133.95849609375,189.73876953125,-30.1591796875,134.2353515625,154.275756835938,-77.69091796875,134.2353515625,148.998779296875,-72.415771484375,129.19482421875,148.998779296875,-72.415771484375,129.19482421875,154.275756835938,-77.69091796875,129.3046875,174.001281738281,-46.68408203125,134.568359375,174.551452636719,-47.234130859375,133.89990234375,180.061767578125,-52.74267578125,128.6357421875,179.511596679688,-52.192626953125,134.373046875,155.961730957031,73.684326171875,129.1015625,156.316467285156,74.011474609375,128.68701171875,150.580871582031,68.720703125,133.95849609375,150.226104736328,68.3935546875,134.2353515625,196.283386230469,31.035400390625,134.2353515625,190.798889160156,25.976318359375,129.19482421875,190.798889160156,25.976318359375,129.19482421875,196.283386230469,31.035400390625,129.3046875,166.100524902344,52,134.568359375,166.67236328125,52.52734375,133.89990234375,172.399353027344,57.810302734375,128.6357421875,171.827545166016,57.28271484375,-123.20166015625,155.961730957031,73.684326171875,-128.4736328125,156.316467285156,74.011474609375,-128.8876953125,150.580871582031,68.720703125,-123.6162109375,150.226104736328,68.3935546875,-123.33935546875,196.283386230469,31.035400390625,-123.33935546875,190.798889160156,25.976318359375,-128.3798828125,190.798889160156,25.976318359375,-128.3798828125,196.283386230469,31.035400390625,-128.2705078125,166.100524902344,52,-123.0068359375,166.67236328125,52.52734375,
  341. -123.6748046875,172.399353027344,57.810302734375,-128.93896484375,171.827545166016,57.28271484375,-123.20166015625,195.257385253906,-35.6759033203125,-128.4736328125,195.598693847656,-36.01708984375,-128.8876953125,190.080078125,-30.5003662109375,-123.6162109375,189.73876953125,-30.1591796875,-123.33935546875,154.275756835938,-77.69091796875,-123.33935546875,148.998779296875,-72.415771484375,-128.3798828125,148.998779296875,-72.415771484375,-128.3798828125,154.275756835938,-77.69091796875,-128.2705078125,174.001281738281,-46.68408203125,-123.0068359375,174.551452636719,-47.234130859375,-123.6748046875,180.061767578125,-52.74267578125,-128.93896484375,179.511596679688,-52.192626953125,-125.8046875,84.7225646972656,70.40283203125,-132.67236328125,85.2016143798828,70.40283203125,-133.212890625,77.4563980102539,70.40283203125,-126.3447265625,76.9773559570313,70.40283203125,-125.98388671875,85.4380798339844,-70.7340087890625,-125.98388671875,78.0319671630859,-70.7340087890625,-132.55078125,78.0319671630859,-70.7340087890625,-132.55078125,85.4380798339844,-70.7340087890625,-132.408203125,77.5470504760742,-12.2896728515625,-125.55078125,78.319221496582,-12.2896728515625,-126.42138671875,86.0528259277344,-12.2896728515625,-133.279296875,85.2806549072266,-12.2896728515625,-125.8046875,38.0399513244629,69.5975341796875,-132.67236328125,38.518985748291,69.5975341796875,-133.212890625,29.1441307067871,69.5975341796875,-126.3447265625,28.6650886535645,69.5975341796875,-125.98388671875,38.7554664611816,-71.539306640625,-125.98388671875,29.7196998596191,-71.539306640625,-132.55078125,29.7196998596191,-71.539306640625,-132.55078125,38.7554664611816,-71.539306640625,-132.408203125,26.7362632751465,14.734619140625,-125.55078125,27.5084342956543,14.734619140625,-126.42138671875,36.8716773986816,14.734619140625,-133.279296875,36.0995063781738,14.734619140625,133.46630859375,37.7469673156738,69.5975341796875,126.59814453125,38.226016998291,69.5975341796875,126.05810546875,29.1441307067871,69.5975341796875,132.92578125,28.6650886535645,69.5975341796875,
  342. 133.28662109375,38.4624824523926,-71.539306640625,133.28662109375,29.7196998596191,-71.539306640625,126.7197265625,29.7196998596191,-71.539306640625,126.7197265625,38.4624824523926,-71.539306640625,126.86279296875,29.2675132751465,-10.3446044921875,133.72021484375,30.0396842956543,-10.3446044921875,132.84912109375,39.1099586486816,-10.3446044921875,125.99169921875,38.3377876281738,-10.3446044921875,132.48388671875,85.1605682373047,70.40283203125,125.76416015625,83.6852111816406,70.40283203125,127.04052734375,77.1848678588867,70.40283203125,133.759765625,78.6601486206055,70.40283203125,133.28662109375,85.4552001953125,-70.7340087890625,133.28662109375,79.1418685913086,-70.7340087890625,126.7197265625,79.1418685913086,-70.7340087890625,126.7197265625,85.4552001953125,-70.7340087890625,126.86279296875,77.1655120849609,2.5240478515625,133.72021484375,77.8237533569336,2.5240478515625,132.84912109375,84.416259765625,2.5240478515625,125.99169921875,83.7580108642578,2.5240478515625,-4.732421875,204.967483520508,-47.89794921875,-4.732421875,199.541961669922,-47.8936767578125,-4.45361328125,199.541961669922,-68.6339111328125,-4.45361328125,204.967468261719,-68.637451171875
  343. }
  344. PolygonVertexIndex: *2980 {
  345. a: 34,8,9,-34,33,9,10,-33,11,8,34,-36,4,3,1,-8,5,6,0,-3,35,32,10,-12,1,3,45,-47,45,3,4,-45,47,44,4,-8,7,1,46,-48,12,9,8,-15,10,9,12,-14,15,11,10,-14,14,8,11,-16,17,18,22,-22,16,20,23,-20,19,42,43,-17,41,42,19,-24,40,41,23,-21,43,40,20,-17,25,26,37,-39,26,27,36,-38,27,24,39,-37,39,24,25,-39,29,28,24,-28,30,29,27,-27,31,30,26,-26,24,28,31,-26,2,33,32,-6,0,34,33,-3,35,34,0,-7,5,32,35,-7,37,36,21,-23,38,37,22,-19,17,39,38,-19,36,39,17,-22,29,30,41,-41,30,31,42,-42,43,42,31,-29,28,29,40,-44,12,45,44,-14,46,45,12,-15,47,46,14,-16,13,44,47,-16,82,56,57,-82,81,57,58,-81,59,56,82,-84,52,51,49,-56,53,54,48,-51,83,80,58,-60,49,51,93,-95,93,51,52,-93,95,92,52,-56,55,49,94,-96,60,57,56,-63,58,57,60,-62,63,59,58,-62,62,56,59,-64,65,66,70,-70,64,68,71,-68,67,90,91,-65,89,90,67,-72,88,89,71,-69,91,88,68,-65,73,74,85,-87,74,75,84,-86,75,72,87,-85,87,72,73,-87,77,76,72,-76,78,77,75,-75,79,78,74,-74,72,76,79,-74,50,81,80,-54,48,82,81,-51,83,82,48,-55,53,80,83,-55,85,84,69,-71,86,85,70,-67,65,87,86,-67,84,87,65,-70,77,78,89,-89,78,79,90,-90,91,90,79,-77,76,77,88,-92,60,93,92,-62,94,93,60,-63,95,94,62,-64,61,92,95,-64,102,127,118,-102,97,115,122,-99,99,105,-108,104,106,-101,99,96,-106,96,106,-106,104,100,-104,107,104,-104,105,106,-108,107,106,-105,98,111,-110,108,101,-111,98,109,-98,97,109,-111,108,102,-102,111,102,-109,109,111,-111,111,108,-111,113,134,135,-117,124,130,131,-122,117,128,129,-126,120,132,133,-113,96,113,116,100,-107,114,97,110,101,-120,100,117,125,-104,99,120,112,-97,103,124,121,99,-108,126,102,111,98,-124,113,112,133,-135,117,116,135,-129,120,121,131,-133,124,125,129,-131,96,112,-114,97,114,-116,100,116,-118,101,118,-120,120,99,-122,98,122,-124,124,103,-126,102,126,-128,142,143,129,-129,143,136,130,-130,136,137,131,-131,137,138,132,-132,138,139,133,-133,139,140,134,-134,140,141,135,-135,135,141,142,-129,126,123,146,-148,123,122,145,-147,122,115,144,-146,115,114,151,-145,114,119,150,-152,149,150,119,-119,118,127,148,-150,127,126,147,-149,145,144,139,-139,146,145,138,-138,147,146,137,-137,148,147,136,-144,
  346. 149,148,143,-143,142,141,150,-150,151,150,141,-141,144,151,140,-140,158,183,174,-158,153,171,178,-155,155,161,-164,160,162,-157,155,152,-162,152,162,-162,160,156,-160,163,160,-160,161,162,-164,163,162,-161,154,167,-166,164,157,-167,154,165,-154,153,165,-167,164,158,-158,167,158,-165,165,167,-167,167,164,-167,169,190,191,-173,180,186,187,-178,173,184,185,-182,176,188,189,-169,152,169,172,156,-163,170,153,166,157,-176,156,173,181,-160,155,176,168,-153,159,180,177,155,-164,182,158,167,154,-180,169,168,189,-191,173,172,191,-185,176,177,187,-189,180,181,185,-187,152,168,-170,153,170,-172,156,172,-174,157,174,-176,176,155,-178,154,178,-180,180,159,-182,158,182,-184,198,199,185,-185,199,192,186,-186,192,193,187,-187,193,194,188,-188,194,195,189,-189,195,196,190,-190,196,197,191,-191,191,197,198,-185,182,179,202,-204,179,178,201,-203,178,171,200,-202,171,170,207,-201,170,175,206,-208,205,206,175,-175,174,183,204,-206,183,182,203,-205,201,200,195,-195,202,201,194,-194,203,202,193,-193,204,203,192,-200,205,204,199,-199,198,197,206,-206,207,206,197,-197,200,207,196,-196,214,239,230,-214,209,227,234,-211,211,217,-220,216,218,-213,211,208,-218,208,218,-218,216,212,-216,219,216,-216,217,218,-220,219,218,-217,210,223,-222,220,213,-223,210,221,-210,209,221,-223,220,214,-214,223,214,-221,221,223,-223,223,220,-223,225,246,247,-229,236,242,243,-234,229,240,241,-238,232,244,245,-225,208,225,228,212,-219,226,209,222,213,-232,212,229,237,-216,211,232,224,-209,215,236,233,211,-220,238,214,223,210,-236,225,224,245,-247,229,228,247,-241,232,233,243,-245,236,237,241,-243,208,224,-226,209,226,-228,212,228,-230,213,230,-232,232,211,-234,210,234,-236,236,215,-238,214,238,-240,254,255,241,-241,255,248,242,-242,248,249,243,-243,249,250,244,-244,250,251,245,-245,251,252,246,-246,252,253,247,-247,247,253,254,-241,238,235,258,-260,235,234,257,-259,234,227,256,-258,227,226,263,-257,226,231,262,-264,261,262,231,-231,230,239,260,-262,239,238,259,-261,257,256,251,-251,258,257,250,-250,259,258,249,-249,260,259,248,-256,261,260,255,-255,254,253,262,-262,
  347. 263,262,253,-253,256,263,252,-252,270,295,286,-270,265,283,290,-267,267,273,-276,272,274,-269,267,264,-274,264,274,-274,272,268,-272,275,272,-272,273,274,-276,275,274,-273,266,279,-278,276,269,-279,266,277,-266,265,277,-279,276,270,-270,279,270,-277,277,279,-279,279,276,-279,281,302,303,-285,292,298,299,-290,285,296,297,-294,288,300,301,-281,264,281,284,268,-275,282,265,278,269,-288,268,285,293,-272,267,288,280,-265,271,292,289,267,-276,294,270,279,266,-292,281,280,301,-303,285,284,303,-297,288,289,299,-301,292,293,297,-299,264,280,-282,265,282,-284,268,284,-286,269,286,-288,288,267,-290,266,290,-292,292,271,-294,270,294,-296,310,311,297,-297,311,304,298,-298,304,305,299,-299,305,306,300,-300,306,307,301,-301,307,308,302,-302,308,309,303,-303,303,309,310,-297,294,291,314,-316,291,290,313,-315,290,283,312,-314,283,282,319,-313,282,287,318,-320,317,318,287,-287,286,295,316,-318,295,294,315,-317,313,312,307,-307,314,313,306,-306,315,314,305,-305,316,315,304,-312,317,316,311,-311,310,309,318,-318,319,318,309,-309,312,319,308,-308,322,326,324,-321,321,325,327,-324,323,327,326,-323,321,323,322,-321,324,326,338,-340,327,325,336,-338,326,327,337,-339,324,325,321,-321,339,336,325,-325,328,329,333,-333,331,330,334,-336,329,331,335,-334,332,334,330,-329,332,333,335,-335,337,336,330,-332,338,337,331,-330,339,338,329,-329,328,330,336,-340,342,346,344,-341,341,345,347,-344,343,347,346,-343,341,343,342,-341,344,346,358,-360,347,345,356,-358,346,347,357,-359,344,345,341,-341,359,356,345,-345,348,349,353,-353,351,350,354,-356,349,351,355,-354,352,354,350,-349,352,353,355,-355,357,356,350,-352,358,357,351,-350,359,358,349,-349,348,350,356,-360,362,366,364,-361,361,365,367,-364,363,367,366,-363,361,363,362,-361,364,366,797,-799,367,365,799,-797,366,367,796,-798,364,365,361,-361,798,799,365,-365,368,369,373,-373,371,370,374,-376,369,371,375,-374,372,374,370,-369,372,373,375,-375,376,396,397,-378,377,397,399,-379,378,379,376,-378,380,392,393,-382,382,395,392,-381,381,393,394,-384,382,380,381,-384,386,402,400,384,388,-391,388,384,385,-390,
  348. 385,401,403,387,391,-390,387,403,402,-387,390,391,387,-387,389,391,390,-389,393,392,430,-432,392,395,429,-431,394,393,431,-429,394,395,-383,394,382,-384,397,396,433,-435,399,397,434,-436,398,396,376,-380,399,398,379,-379,400,402,438,-440,403,401,436,-438,402,403,437,-439,400,401,385,-385,428,429,395,-395,406,405,409,-411,405,404,408,-410,407,406,410,-412,411,408,404,-408,432,433,396,-399,435,432,398,-400,414,413,417,-419,412,414,418,-417,419,417,413,-416,416,419,415,-413,439,436,401,-401,420,421,425,-425,423,422,426,-428,421,423,427,-426,424,426,422,-421,424,425,427,-427,419,416,418,-418,411,410,409,-409,407,404,429,-429,430,429,404,-406,431,430,405,-407,428,431,406,-408,415,413,433,-433,434,433,413,-415,435,434,414,-413,412,415,432,-436,437,436,422,-424,438,437,423,-422,439,438,421,-421,420,422,436,-440,442,446,444,-441,441,445,447,-444,443,447,446,-443,441,443,442,-441,444,446,458,-460,447,445,456,-458,446,447,457,-459,444,445,441,-441,459,456,445,-445,448,449,453,-453,451,450,454,-456,449,451,455,-454,452,454,450,-449,452,453,455,-455,457,456,450,-452,458,457,451,-450,459,458,449,-449,448,450,456,-460,462,466,464,-461,461,465,467,-464,463,467,466,-463,461,463,462,-461,464,466,478,-480,467,465,476,-478,466,467,477,-479,464,465,461,-461,479,476,465,-465,468,469,473,-473,471,470,474,-476,469,471,475,-474,472,474,470,-469,472,473,475,-475,477,476,470,-472,478,477,471,-470,479,478,469,-469,468,470,476,-480,482,486,484,-481,481,485,487,-484,483,487,486,-483,481,483,482,-481,484,486,562,-564,487,485,560,-562,486,487,561,-563,484,485,481,-481,563,560,485,-485,488,489,493,-493,491,490,494,-496,489,491,495,-494,492,494,490,-489,492,493,495,-495,496,516,517,-498,497,517,519,-499,498,499,496,-498,500,512,513,-502,502,515,512,-501,501,513,514,-504,502,500,501,-504,506,522,520,504,508,-511,508,504,505,-510,505,521,523,507,511,-510,507,523,522,-507,510,511,507,-507,509,511,510,-509,513,512,550,-552,512,515,549,-551,514,513,551,-549,514,515,-503,514,502,-504,517,516,553,-555,519,517,554,-556,518,516,496,-500,519,518,499,-499,520,
  349. 522,558,-560,523,521,556,-558,522,523,557,-559,520,521,505,-505,548,549,515,-515,526,525,529,-531,525,524,528,-530,527,526,530,-532,531,528,524,-528,552,553,516,-519,555,552,518,-520,534,533,537,-539,532,534,538,-537,539,537,533,-536,536,539,535,-533,559,556,521,-521,540,541,545,-545,543,542,546,-548,541,543,547,-546,544,546,542,-541,544,545,547,-547,539,536,538,-538,531,530,529,-529,527,524,549,-549,550,549,524,-526,551,550,525,-527,548,551,526,-528,535,533,553,-553,554,553,533,-535,555,554,534,-533,532,535,552,-556,557,556,542,-544,558,557,543,-542,559,558,541,-541,540,542,556,-560,561,560,490,-492,562,561,491,-490,563,562,489,-489,488,490,560,-564,573,574,564,-568,572,573,567,-567,575,572,566,-566,564,574,575,-566,570,569,573,-573,569,568,574,-574,575,574,568,-572,571,570,572,-576,569,570,571,-569,565,566,567,-565,585,586,576,-580,584,585,579,-579,587,584,578,-578,576,586,587,-578,582,581,585,-585,581,580,586,-586,587,586,580,-584,583,582,584,-588,597,598,588,-592,596,597,591,-591,599,596,590,-590,588,598,599,-590,594,593,597,-597,593,592,598,-598,599,598,592,-596,595,594,596,-600,589,590,591,-589,593,594,595,-593,577,578,579,-577,581,582,583,-581,609,610,600,-604,608,609,603,-603,611,608,602,-602,600,610,611,-602,606,605,609,-609,605,604,610,-610,611,610,604,-608,607,606,608,-612,605,606,607,-605,601,602,603,-601,621,622,612,-616,620,621,615,-615,623,620,614,-614,612,622,623,-614,618,617,621,-621,617,616,622,-622,623,622,616,-620,619,618,620,-624,633,634,624,-628,632,633,627,-627,635,632,626,-626,624,634,635,-626,630,629,633,-633,629,628,634,-634,635,634,628,-632,631,630,632,-636,625,626,627,-625,629,630,631,-629,613,614,615,-613,617,618,619,-617,636,640,641,-638,637,641,643,-639,638,639,636,-638,641,640,653,-655,643,641,654,-656,642,640,636,-640,643,642,639,-639,652,653,640,-643,655,652,642,-644,646,645,649,-651,644,646,650,-649,651,649,645,-648,648,651,647,-645,651,648,650,-650,647,645,653,-653,654,653,645,-647,655,654,646,-645,644,647,652,-656,656,660,661,-658,657,661,663,-659,658,659,656,-658,661,660,677,-679,
  350. 663,661,678,-680,662,660,656,-660,663,662,659,-659,676,677,660,-663,679,676,662,-664,666,665,669,-671,664,666,670,-669,671,669,665,-668,668,671,667,-665,671,668,670,-670,667,665,673,-673,674,673,665,-667,675,674,666,-665,664,667,672,-676,672,673,677,-677,678,677,673,-675,679,678,674,-676,675,672,676,-680,680,684,685,-682,681,685,687,-683,682,683,680,-682,685,684,697,-699,687,685,698,-700,686,684,680,-684,687,686,683,-683,696,697,684,-687,699,696,686,-688,690,689,693,-695,688,690,694,-693,695,693,689,-692,692,695,691,-689,695,692,694,-694,691,689,697,-697,698,697,689,-691,699,698,690,-689,688,691,696,-700,709,710,700,-704,708,709,703,-703,711,708,702,-702,700,710,711,-702,706,705,709,-709,705,704,710,-710,711,710,704,-708,707,706,708,-712,701,702,703,-701,705,706,707,-705,721,722,712,-716,720,721,715,-715,723,720,714,-714,712,722,723,-714,718,717,721,-721,717,716,722,-722,723,722,716,-720,719,718,720,-724,713,714,715,-713,717,718,719,-717,733,734,724,-728,732,733,727,-727,735,732,726,-726,724,734,735,-726,730,729,733,-733,729,728,734,-734,735,734,728,-732,731,730,732,-736,725,726,727,-725,729,730,731,-729,745,746,736,-740,744,745,739,-739,747,744,738,-738,736,746,747,-738,742,741,745,-745,741,740,746,-746,747,746,740,-744,743,742,744,-748,737,738,739,-737,741,742,743,-741,757,758,748,-752,756,757,751,-751,759,756,750,-750,748,758,759,-750,754,753,757,-757,753,752,758,-758,759,758,752,-756,755,754,756,-760,749,750,751,-749,753,754,755,-753,769,770,760,-764,768,769,763,-763,771,768,762,-762,760,770,771,-762,766,765,769,-769,765,764,770,-770,771,770,764,-768,767,766,768,-772,761,762,763,-761,765,766,767,-765,781,782,772,-776,780,781,775,-775,783,780,774,-774,772,782,783,-774,778,777,781,-781,777,776,782,-782,783,782,776,-780,779,778,780,-784,773,774,775,-773,777,778,779,-777,793,794,784,-788,792,793,787,-787,795,792,786,-786,784,794,795,-786,790,789,793,-793,789,788,794,-794,795,794,788,-792,791,790,792,-796,785,786,787,-785,789,790,791,-789,797,796,371,-370,798,797,369,-369,368,370,799,-799,796,799,370,-372
  351. }
  352. Edges: *1490 {
  353. a: 116,112,18,13,12,16,14,123,15,30,19,17,42,40,6,48,1,5,22,8,160,47,46,43,171,51,55,167,66,56,62,135,60,61,63,75,58,57,59,89,107,103,93,80,84,88,131,97,145,149,96,100,104,109,99,85,114,2,7,0,3,11,10,20,129,81,86,83,82,136,95,90,147,71,72,64,68,155,65,76,162,25,31,27,26,35,38,32,292,288,194,189,188,192,190,299,191,206,195,193,218,216,182,224,177,181,198,184,336,223,222,219,347,227,231,343,242,232,238,311,236,237,239,251,234,233,235,265,283,279,269,256,260,264,307,273,321,325,272,276,280,285,275,261,290,178,183,176,179,187,186,196,305,257,262,259,258,312,271,266,323,247,248,240,244,331,241,252,338,201,207,203,202,211,214,208,359,362,364,366,373,355,374,360,369,363,370,365,367,377,375,361,379,384,388,396,386,395,389,394,387,391,399,401,385,403,423,424,440,357,429,356,411,426,434,433,432,354,415,438,444,451,450,358,419,442,436,353,447,352,408,416,541,420,412,452,472,456,478,460,484,464,490,495,418,417,497,466,414,413,505,462,422,421,513,454,410,409,458,533,525,549,567,501,500,559,504,509,508,583,512,517,516,575,521,493,492,496,557,529,534,563,530,527,526,571,554,547,550,577,544,537,542,538,595,598,600,602,609,591,610,596,605,599,606,601,603,613,611,597,615,620,624,632,622,631,625,630,623,627,635,637,621,639,659,660,676,593,665,592,647,662,670,669,668,590,651,674,680,687,686,594,655,678,672,589,683,588,644,652,777,656,648,688,708,692,714,696,720,700,726,731,654,653,733,702,650,649,741,698,658,657,749,690,646,645,694,769,761,785,803,737,736,795,740,745,744,819,748,753,752,811,757,729,728,732,793,765,770,799,766,763,762,807,790,783,786,813,780,773,778,774,831,834,836,838,845,827,846,832,841,835,842,837,839,849,847,833,851,856,860,868,858,867,861,866,859,863,871,873,857,875,895,896,912,829,901,828,883,898,906,905,904,826,887,910,916,923,922,830,891,914,908,825,919,824,880,888,1013,892,884,924,944,928,950,932,956,936,962,967,890,889,969,938,886,885,977,934,894,893,985,926,882,881,930,1005,997,1021,1039,973,972,1031,976,981,980,1055,984,989,988,1047,993,965,964,968,1029,1001,1006,1035,1002,999,998,1043,1026,
  354. 1019,1022,1049,1016,1009,1014,1010,1067,1070,1072,1074,1081,1063,1082,1068,1077,1071,1078,1073,1075,1085,1083,1069,1087,1092,1096,1104,1094,1103,1097,1102,1095,1099,1107,1109,1093,1111,1131,1132,1148,1065,1137,1064,1119,1134,1142,1141,1140,1062,1123,1146,1152,1159,1158,1066,1127,1150,1144,1061,1155,1060,1116,1124,1249,1128,1120,1160,1180,1164,1186,1168,1192,1172,1198,1203,1126,1125,1205,1174,1122,1121,1213,1170,1130,1129,1221,1162,1118,1117,1166,1241,1233,1257,1275,1209,1208,1267,1212,1217,1216,1291,1220,1225,1224,1283,1229,1201,1200,1204,1265,1237,1242,1271,1238,1235,1234,1279,1262,1255,1258,1285,1252,1245,1250,1246,1311,1300,1307,1302,1303,1299,1298,1317,1296,1319,1297,1301,1305,1324,1363,1359,1337,1339,1346,1332,1336,1340,1335,1333,1344,1334,1338,1342,1353,1355,1318,1313,1322,1315,1314,1328,1383,1372,1379,1374,1375,1371,1370,1389,1368,1391,1369,1373,1377,1396,1435,1431,1409,1411,1418,1404,1408,1412,1407,1405,1416,1406,1410,1414,1425,1427,1390,1385,1394,1387,1386,1400,1455,1444,1451,1446,1447,1443,1442,1461,1440,1463,1441,1445,1449,1468,2971,2967,1481,1483,1490,1476,1480,1484,1479,1477,1488,1478,1482,1486,1496,1498,1499,1504,1581,1508,1510,1511,1523,1519,1515,1531,1534,1529,1543,1536,1533,1537,1544,1532,1527,1538,1528,1505,1503,1518,1553,1555,1563,1512,1509,1513,1517,1564,1566,1571,1573,1625,1502,1497,1501,1578,1582,1526,1591,1524,1593,1525,1535,1541,1598,1679,1607,1609,1617,1620,1606,1610,1614,1611,1618,1608,1612,1616,1705,1631,1633,1641,1640,1644,1630,1634,1637,1638,1642,1632,1636,1721,1717,1655,1657,1664,1650,1654,1658,1653,1651,1662,1652,1656,1660,1681,1557,1602,1685,1558,1689,1554,1562,1697,1695,1622,1701,1572,1577,1576,1626,1711,1713,1592,1587,1596,1589,1588,1646,1741,1730,1737,1732,1733,1729,1728,1747,1726,1749,1727,1731,1735,1754,1793,1789,1767,1769,1776,1762,1766,1770,1765,1763,1774,1764,1768,1772,1783,1785,1748,1743,1752,1745,1744,1758,1813,1802,1809,1804,1805,1801,1800,1819,1798,1821,1799,1803,1807,1826,1865,1861,1839,1841,1848,1834,1838,1842,1837,1835,1846,1836,1840,1844,1855,1857,1820,1815,1824,1817,
  355. 1816,1830,1885,1874,1881,1876,1877,1873,1872,1891,1870,1893,1871,1875,1879,1898,2167,2163,1911,1913,1920,1906,1910,1914,1909,1907,1918,1908,1912,1916,1926,1928,1929,1934,2011,1938,1940,1941,1953,1949,1945,1961,1964,1959,1973,1966,1963,1967,1974,1962,1957,1968,1958,1935,1933,1948,1983,1985,1993,1942,1939,1943,1947,1994,1996,2001,2003,2055,1932,1927,1931,2008,2012,1956,2021,1954,2023,1955,1965,1971,2028,2109,2037,2039,2047,2050,2036,2040,2044,2041,2048,2038,2042,2046,2135,2061,2063,2071,2070,2074,2060,2064,2067,2068,2072,2062,2066,2151,2147,2085,2087,2094,2080,2084,2088,2083,2081,2092,2082,2086,2090,2111,1987,2032,2115,1988,2119,1984,1992,2127,2125,2052,2131,2002,2007,2006,2056,2141,2143,2022,2017,2026,2019,2018,2076,2157,2159,1892,1887,1896,1889,1888,1902,2183,2179,2187,2182,2178,2174,2193,2192,2188,2200,2198,2189,2191,2175,2176,2173,2172,2199,2185,2180,2223,2219,2227,2222,2218,2214,2233,2232,2228,2240,2238,2229,2231,2215,2216,2213,2212,2239,2225,2220,2255,2251,2259,2254,2250,2246,2265,2264,2260,2272,2270,2261,2263,2247,2248,2245,2244,2271,2257,2252,2303,2299,2307,2302,2298,2294,2313,2312,2308,2320,2318,2309,2311,2295,2296,2293,2292,2319,2305,2300,2343,2339,2347,2342,2338,2334,2353,2352,2348,2360,2358,2349,2351,2335,2336,2333,2332,2359,2345,2340,2375,2371,2379,2374,2370,2366,2385,2384,2380,2392,2390,2381,2383,2367,2368,2365,2364,2391,2377,2372,2412,2414,2415,2420,2435,2421,2419,2425,2427,2443,2418,2413,2417,2432,2436,2479,2449,2451,2459,2458,2462,2448,2452,2455,2456,2460,2450,2454,2471,2469,2440,2475,2426,2431,2430,2444,2484,2486,2487,2492,2507,2493,2491,2497,2499,2515,2490,2485,2489,2504,2508,2551,2521,2523,2531,2530,2534,2520,2524,2527,2528,2532,2522,2526,2543,2541,2542,2547,2544,2567,2548,2554,2559,2557,2512,2563,2498,2503,2502,2516,2572,2574,2575,2580,2595,2581,2579,2585,2587,2603,2578,2573,2577,2592,2596,2639,2609,2611,2619,2618,2622,2608,2612,2615,2616,2620,2610,2614,2631,2629,2600,2635,2586,2591,2590,2604,2655,2651,2659,2654,2650,2646,2665,2664,2660,2672,2670,2661,2663,2647,2648,2645,2644,2671,2657,2652,2695,
  356. 2691,2699,2694,2690,2686,2705,2704,2700,2712,2710,2701,2703,2687,2688,2685,2684,2711,2697,2692,2735,2731,2739,2734,2730,2726,2745,2744,2740,2752,2750,2741,2743,2727,2728,2725,2724,2751,2737,2732,2775,2771,2779,2774,2770,2766,2785,2784,2780,2792,2790,2781,2783,2767,2768,2765,2764,2791,2777,2772,2815,2811,2819,2814,2810,2806,2825,2824,2820,2832,2830,2821,2823,2807,2808,2805,2804,2831,2817,2812,2855,2851,2859,2854,2850,2846,2865,2864,2860,2872,2870,2861,2863,2847,2848,2845,2844,2871,2857,2852,2895,2891,2899,2894,2890,2886,2905,2904,2900,2912,2910,2901,2903,2887,2888,2885,2884,2911,2897,2892,2935,2931,2939,2934,2930,2926,2945,2944,2940,2952,2950,2941,2943,2927,2928,2925,2924,2951,2937,2932,2965,1457,1466,1459,1458,2973,1472,1462
  357. }
  358. GeometryVersion: 124
  359. LayerElementNormal: 0 {
  360. Version: 102
  361. Name: ""
  362. MappingInformationType: "ByPolygonVertex"
  363. ReferenceInformationType: "Direct"
  364. Normals: *8940 {
  365. a: -0.0164013653993607,-0.999862492084503,0.00244550895877182,-0.00897647067904472,-0.99995893239975,0.00122077926062047,-0.00742230843752623,-0.999971866607666,0.000964423350524157,-0.0164013672620058,-0.999862551689148,0.00244550919160247,-0.00582333048805594,-0.00144478038419038,0.999981999397278,-0.01568822003901,-0.00493487156927586,0.999864757061005,-0.0123583571985364,-0.00375679484568536,0.999916613101959,-0.00582333048805594,-0.0014447805006057,0.999981999397278,0.0127904452383518,0.00265840720385313,-0.999914646148682,0.0149444490671158,0.00320621207356453,-0.999883115291595,0.00580841302871704,0.000882762658875436,-0.999982714653015,0.00580841302871704,0.000882762658875436,-0.99998277425766,0.951879799365997,0.208304569125175,0.224797874689102,0.952587962150574,-0.20423923432827,0.225527495145798,0.952413499355316,-0.203970283269882,-0.226505503058434,0.951719403266907,0.208007037639618,-0.225750491023064,-0.978823125362396,0.0466533973813057,0.199320554733276,-0.998981297016144,0.0431464873254299,-0.0132201891392469,-0.989062488079071,-0.14698825776577,-0.0122457984834909,-0.96614283323288,-0.157346993684769,0.204475060105324,0.0174782853573561,0.999846935272217,-0.000801155751105398,0.0174782872200012,0.999846935272217,-0.00080115586752072,0.00814713258296251,0.99996680021286,-0.000234473583986983,0.00840022414922714,0.999964654445648,-0.000249843607889488,0.952413499355316,-0.203970283269882,-0.226505503058434,0.952587962150574,-0.20423923432827,0.225527495145798,0.657499015331268,-0.516641974449158,0.548430562019348,0.650504052639008,-0.528443157672882,-0.545520305633545,0.657499015331268,-0.516641974449158,0.548430562019348,0.952587962150574,-0.20423923432827,0.225527495145798,0.951879799365997,0.208304569125175,0.224797874689102,0.651303231716156,0.524673342704773,0.548198819160461,0.64428436756134,0.536385476589203,-0.545149922370911,0.651303231716156,0.524673342704773,0.548198819160461,0.951879799365997,0.208304569125175,0.224797874689102,0.951719403266907,0.208007037639618,-0.225750491023064,
  366. 0.951719403266907,0.208007037639618,-0.225750491023064,0.952413499355316,-0.203970283269882,-0.226505503058434,0.650504052639008,-0.528443157672882,-0.545520305633545,0.64428436756134,0.536385476589203,-0.545149922370911,-0.00269103981554508,-0.999996364116669,0.000184014366823249,-0.00742230843752623,-0.999971866607666,0.000964423350524157,-0.00897647067904472,-0.99995893239975,0.00122077926062047,-0.00269104004837573,-0.999996364116669,0.000184014366823249,-0.0123583571985364,-0.00375679484568536,0.999916613101959,-0.01568822003901,-0.00493487156927586,0.999864757061005,0.00396092189475894,-0.000857993087265641,0.999991774559021,-0.000858957064338028,-0.00197135261259973,0.999997675418854,-0.00234148581512272,0.99999725818634,-0.000117993498861324,0.00840022414922714,0.999964654445648,-0.000249843607889488,0.00814713258296251,0.99996680021286,-0.000234473583986983,-0.00190117827150971,0.999998211860657,-9.86646700766869e-005,-0.0034531697165221,0.000565477006603032,-0.999993860721588,0.0149444490671158,0.00320621207356453,-0.999883115291595,0.0127904452383518,0.00265840720385313,-0.999914646148682,0.000312881689751521,0.00118174054659903,-0.999999225139618,-0.956976771354675,0.18404446542263,0.224327966570854,-0.956917583942413,0.188837230205536,-0.220565438270569,-0.957396805286407,-0.184065625071526,-0.222511067986488,-0.95666640996933,-0.187660798430443,0.222649171948433,0.942397713661194,0.221584931015968,0.25057265162468,0.940874576568604,-0.229323029518127,0.24933123588562,0.941287517547607,-0.229611560702324,-0.247500404715538,0.942816197872162,0.221876353025436,-0.248733833432198,0.942816197872162,0.221876353025436,-0.248733833432198,0.56860876083374,0.557988166809082,-0.604428112506866,0.566820442676544,0.555353403091431,0.608520567417145,0.942397713661194,0.221584931015968,0.25057265162468,0.566953301429749,-0.579622268676758,-0.585322141647339,0.56860876083374,0.557988166809082,-0.604428112506866,0.942816197872162,0.221876353025436,-0.248733833432198,0.941287517547607,-0.229611560702324,-0.247500404715538,
  367. 0.565181732177734,-0.577032804489136,0.58957850933075,0.566953301429749,-0.579622268676758,-0.585322141647339,0.941287517547607,-0.229611560702324,-0.247500404715538,0.940874576568604,-0.229323029518127,0.24933123588562,0.566820442676544,0.555353403091431,0.608520567417145,0.565181732177734,-0.577032804489136,0.58957850933075,0.940874576568604,-0.229323029518127,0.24933123588562,0.942397713661194,0.221584931015968,0.25057265162468,0.000131927547045052,-0.000270709802862257,-1,3.01468244288117e-005,-0.000260965520283207,-1,-0.00309072039090097,3.78214754164219e-005,-0.999995231628418,-0.00309072062373161,3.78214754164219e-005,-0.999995231628418,-0.00135020003654063,-0.999983847141266,-0.00552452029660344,-0.00125039054546505,-0.999983608722687,-0.00558463158085942,0.0035390043631196,-0.999957919120789,-0.0084689948707819,0.00353900413028896,-0.999957859516144,-0.0084689948707819,1.01629575510742e-006,0.000276339444098994,0.99999988079071,-0.000164520970429294,0.000294091005343944,1,0.00309308688156307,-5.52420642634388e-005,0.999995172023773,0.00309308711439371,-5.52420569874812e-005,0.999995231628418,0.00339837069623172,0.999958097934723,0.00849617645144463,0.00564193120226264,0.999969244003296,0.00543868541717529,0.00564332073554397,0.999969303607941,0.00543679250404239,0.00339837069623172,0.999958157539368,0.0084961773827672,-0.00322880409657955,0.000500005262438208,0.999994695186615,-0.00224817846901715,0.000348146830219775,0.99999737739563,-0.000164520970429294,0.000294091005343944,1,1.01629575510742e-006,0.000276339444098994,0.99999988079071,0.000216279833693989,-1,-1.95716183952754e-005,-0.000485648371977732,-0.999999821186066,-4.51522646471858e-005,-0.00125039054546505,-0.999983608722687,-0.00558463158085942,-0.00135020003654063,-0.999983847141266,-0.00552452029660344,0.00228088861331344,-0.000320564955472946,-0.99999737739563,0.00319622154347599,-0.000449207960627973,-0.999994814395905,3.01468244288117e-005,-0.000260965520283207,-1,0.000131927547045052,-0.000270709802862257,-1,0.00564193120226264,0.999969244003296,0.00543868541717529,
  368. 0.000379534845706075,1,9.91184970189352e-006,-0.000111681169073563,1,-1.69383110915078e-006,0.00564332073554397,0.999969303607941,0.00543679250404239,-0.96614283323288,-0.157346993684769,0.204475060105324,-0.612781643867493,-0.538576424121857,0.578302681446075,-0.637965857982636,0.400974601507187,0.65743350982666,-0.978823125362396,0.0466533973813057,0.199320554733276,-0.989062488079071,-0.14698825776577,-0.0122457984834909,-0.626010358333588,-0.648778438568115,-0.432663381099701,-0.612781643867493,-0.538576424121857,0.578302681446075,-0.96614283323288,-0.157346993684769,0.204475060105324,-0.645303785800934,0.535800099372864,-0.544519364833832,-0.626010358333588,-0.648778438568115,-0.432663381099701,-0.989062488079071,-0.14698825776577,-0.0122457984834909,-0.998981297016144,0.0431464873254299,-0.0132201891392469,-0.978823125362396,0.0466533973813057,0.199320554733276,-0.637965857982636,0.400974601507187,0.65743350982666,-0.645303785800934,0.535800099372864,-0.544519364833832,-0.998981297016144,0.0431464873254299,-0.0132201891392469,-0.608695089817047,-0.528095722198486,-0.592119216918945,-0.60531747341156,-0.545111417770386,0.580038368701935,-0.95666640996933,-0.187660798430443,0.222649171948433,-0.957396805286407,-0.184065625071526,-0.222511067986488,-0.614483296871185,0.534692823886871,-0.580098092556,-0.608695089817047,-0.528095722198486,-0.592119216918945,-0.957396805286407,-0.184065625071526,-0.222511067986488,-0.956917583942413,0.188837230205536,-0.220565438270569,-0.956976771354675,0.18404446542263,0.224327966570854,-0.598075270652771,0.541433393955231,0.590894222259521,-0.614483296871185,0.534692823886871,-0.580098092556,-0.956917583942413,0.188837230205536,-0.220565438270569,-0.60531747341156,-0.545111417770386,0.580038368701935,-0.598075270652771,0.541433393955231,0.590894222259521,-0.956976771354675,0.18404446542263,0.224327966570854,-0.95666640996933,-0.187660798430443,0.222649171948433,-0.000485648371977732,-0.999999821186066,-4.51522646471858e-005,0.000216279833693989,-1,-1.95716183952754e-005,0.00821421202272177,-0.999966263771057,0.000271901255473495,
  369. 0.00821421109139919,-0.999966144561768,0.000271901197265834,0.00319622154347599,-0.000449207960627973,-0.999994814395905,0.00228088861331344,-0.000320564955472946,-0.99999737739563,-2.70756288500706e-008,0,-1,-2.70756288500706e-008,0,-1,-0.00856516230851412,0.999963343143463,-0.000201419796212576,-0.00856516417115927,0.999963402748108,-0.000201419825316407,-0.000111681169073563,1,-1.69383110915078e-006,0.000379534845706075,1,9.91184970189352e-006,-0.00224817846901715,0.000348146830219775,0.99999737739563,-0.00322880409657955,0.000500005262438208,0.999994695186615,-2.01458938420274e-008,0,1,-2.01458938420274e-008,0,1,0.00396092189475894,-0.000857993087265641,0.999991774559021,0.0155492760241032,0.00181901745963842,0.999877393245697,0.0155492760241032,0.00181901722680777,0.999877393245697,-0.000858957064338028,-0.00197135261259973,0.999997675418854,0.00543295778334141,-0.999985337257385,0.000105297767731827,0.00543295731768012,-0.999985218048096,0.000105297753179912,0.00543295685201883,-0.999985218048096,0.000105297760455869,0.00543295731768012,-0.999985218048096,0.000105297760455869,-0.0156417898833752,-0.00142913812305778,-0.999876618385315,-0.0156417917460203,-0.0014291382394731,-0.999876618385315,-0.0034531697165221,0.000565477006603032,-0.999993860721588,0.000312881689751521,0.00118174054659903,-0.999999225139618,-0.00190117827150971,0.999998211860657,-9.86646700766869e-005,-0.00532743148505688,0.999985754489899,-0.000249071919824928,-0.00532743148505688,0.999985754489899,-0.000249071919824928,-0.00234148581512272,0.99999725818634,-0.000117993498861324,0.0164013709872961,-0.999862492084503,-0.00244550895877182,0.0106123145669699,-0.999942660331726,-0.00144459970761091,0.00902647525072098,-0.999958574771881,-0.00117041519843042,0.016401369124651,-0.999862551689148,-0.00244550919160247,0.00582333048805594,-0.00144478038419038,-0.999981999397278,0.0298155825585127,-0.00945622194558382,-0.999510645866394,0.0204750653356314,-0.00633721705526114,-0.999770224094391,0.00582333048805594,-0.0014447805006057,-0.999981999397278,
  370. -0.0217138137668371,0.00461643096059561,0.999753475189209,-0.0277570802718401,0.00603507086634636,0.999596476554871,-0.00580836459994316,0.000882762658875436,0.999982714653015,-0.00580836459994316,0.000882762658875436,0.99998277425766,-0.98345285654068,0.123723015189171,-0.13233757019043,-0.983812630176544,-0.119845345616341,-0.133228406310081,-0.983852744102478,-0.119049809873104,0.13364514708519,-0.983494102954865,0.122932031750679,0.132767349481583,0.944053947925568,0.147474512457848,-0.294980585575104,0.981481790542603,0.143989861011505,0.126334324479103,0.963186979293823,-0.238297015428543,0.124440014362335,0.919429540634155,-0.251499265432358,-0.302319973707199,-0.0174782928079367,0.999846935272217,0.000801155751105398,-0.0174782946705818,0.999846935272217,0.00080115586752072,-0.00976401753723621,0.99995231628418,0.000279157800832763,-0.0101102041080594,0.999948859214783,0.000302582513540983,-0.983852744102478,-0.119049809873104,0.13364514708519,-0.983812630176544,-0.119845345616341,-0.133228406310081,-0.688927531242371,-0.494141697883606,-0.530285656452179,-0.678081929683685,-0.513758659362793,0.525601446628571,-0.688927531242371,-0.494141697883606,-0.530285656452179,-0.983812630176544,-0.119845345616341,-0.133228406310081,-0.98345285654068,0.123723015189171,-0.13233757019043,-0.679037153720856,0.506687343120575,-0.531202912330627,-0.667755126953125,0.526252150535584,0.526461362838745,-0.679037153720856,0.506687343120575,-0.531202912330627,-0.98345285654068,0.123723015189171,-0.13233757019043,-0.983494102954865,0.122932031750679,0.132767349481583,-0.983494102954865,0.122932031750679,0.132767349481583,-0.983852744102478,-0.119049809873104,0.13364514708519,-0.678081929683685,-0.513758659362793,0.525601446628571,-0.667755126953125,0.526252150535584,0.526461362838745,0.00372215616516769,-0.999993085861206,-0.000253330363193527,0.00902647525072098,-0.999958574771881,-0.00117041519843042,0.0106123145669699,-0.999942660331726,-0.00144459970761091,0.00372215663082898,-0.999993145465851,-0.000253330392297357,0.0204750653356314,-0.00633721705526114,-0.999770224094391,
  371. 0.0298155825585127,-0.00945622194558382,-0.999510645866394,-0.0050733620300889,-0.00142998364754021,-0.999986112117767,0.00227188621647656,-0.00332278292626143,-0.999991953372955,0.00229372549802065,0.999997437000275,0.000115733128041029,-0.0101102041080594,0.999948859214783,0.000302582513540983,-0.00976401753723621,0.99995231628418,0.000279157800832763,0.00194527977146208,0.999998033046722,0.000100778517662548,0.00434856023639441,0.000960496894549578,0.999989986419678,-0.0277570802718401,0.00603507086634636,0.999596476554871,-0.0217138137668371,0.00461643096059561,0.999753475189209,-0.00138801045250148,0.00199694884940982,0.999997079372406,0.95697683095932,0.184044539928436,-0.224327966570854,0.956917583942413,0.188837245106697,0.220565438270569,0.957396864891052,-0.184065639972687,0.222511097788811,0.956666469573975,-0.18766088783741,-0.222649186849594,-0.942397654056549,0.221584931015968,-0.250572681427002,-0.940874516963959,-0.229323029518127,-0.249331280589104,-0.941287398338318,-0.229611665010452,0.247500538825989,-0.942816197872162,0.221876487135887,0.24873398244381,-0.942816197872162,0.221876487135887,0.24873398244381,-0.568608641624451,0.557988166809082,0.604428172111511,-0.566821038722992,0.555353045463562,-0.608520269393921,-0.942397654056549,0.221584931015968,-0.250572681427002,-0.566953241825104,-0.579622268676758,0.585322141647339,-0.568608641624451,0.557988166809082,0.604428172111511,-0.942816197872162,0.221876487135887,0.24873398244381,-0.941287398338318,-0.229611665010452,0.247500538825989,-0.565182209014893,-0.577032446861267,-0.58957827091217,-0.566953241825104,-0.579622268676758,0.585322141647339,-0.941287398338318,-0.229611665010452,0.247500538825989,-0.940874516963959,-0.229323029518127,-0.249331280589104,-0.566821038722992,0.555353045463562,-0.608520269393921,-0.565182209014893,-0.577032446861267,-0.58957827091217,-0.940874516963959,-0.229323029518127,-0.249331280589104,-0.942397654056549,0.221584931015968,-0.250572681427002,0.000143568249768578,-0.000934233074076474,0.999999582767487,0.000548648473341018,-0.00090220948914066,0.999999403953552,
  372. 0.0140955271199346,0.000168824582942761,0.999900639057159,0.014095526188612,0.000168824568390846,0.999900639057159,-0.0028488056268543,-0.99998676776886,0.00428707804530859,-0.0028576236218214,-0.999986350536346,0.00436034938320518,-0.00335219735279679,-0.999958395957947,0.0084700221195817,-0.00335219758562744,-0.999958515167236,0.0084700221195817,-0.000661039841361344,0.000955009076278657,-0.999999344348907,-3.25761175190564e-005,0.00101115927100182,-0.999999463558197,-0.0141091626137495,-0.000246616400545463,-0.999900460243225,-0.0141091626137495,-0.000246616400545463,-0.99990051984787,0.000589932024013251,0.999963819980621,-0.00849201623350382,-0.00568122416734695,0.999973893165588,-0.00446532992646098,-0.00569155486300588,0.999973833560944,-0.00445869565010071,0.000589931907597929,0.999963700771332,-0.00849201530218124,0.00964464526623487,0.00150679564103484,-0.999952375888824,0.00694915046915412,0.00108567578718066,-0.999975323677063,-3.25761175190564e-005,0.00101115927100182,-0.999999463558197,-0.000661039841361344,0.000955009076278657,-0.999999344348907,-0.00035188501351513,-1,-1.88378344319062e-005,-0.000498097331728786,-0.99999988079071,-2.41732668655459e-005,-0.0028576236218214,-0.999986350536346,0.00436034938320518,-0.0028488056268543,-0.99998676776886,0.00428707804530859,-0.00704313907772303,-0.000998641364276409,0.999974727630615,-0.00955883041024208,-0.00135533954016864,0.999953329563141,0.000548648473341018,-0.00090220948914066,0.999999403953552,0.000143568249768578,-0.000934233074076474,0.999999582767487,-0.00568122416734695,0.999973893165588,-0.00446532992646098,-0.00316485529765487,0.999995052814484,-7.53357162466273e-005,-0.00266550621017814,0.999996542930603,-6.35541800875217e-005,-0.00569155486300588,0.999973833560944,-0.00445869565010071,0.919429540634155,-0.251499265432358,-0.302319973707199,0.502010047435761,-0.583161473274231,-0.63867723941803,0.517716646194458,0.486229449510574,-0.703953385353088,0.944053947925568,0.147474512457848,-0.294980585575104,0.963186979293823,-0.238297015428543,0.124440014362335,
  373. 0.517191350460052,-0.681053817272186,0.518342316150665,0.502010047435761,-0.583161473274231,-0.63867723941803,0.919429540634155,-0.251499265432358,-0.302319973707199,0.525276958942413,0.59879469871521,0.604590058326721,0.517191350460052,-0.681053817272186,0.518342316150665,0.963186979293823,-0.238297015428543,0.124440014362335,0.981481790542603,0.143989861011505,0.126334324479103,0.944053947925568,0.147474512457848,-0.294980585575104,0.517716646194458,0.486229449510574,-0.703953385353088,0.525276958942413,0.59879469871521,0.604590058326721,0.981481790542603,0.143989861011505,0.126334324479103,0.608695209026337,-0.528095662593842,0.592119097709656,0.605317115783691,-0.545111656188965,-0.58003842830658,0.956666469573975,-0.18766088783741,-0.222649186849594,0.957396864891052,-0.184065639972687,0.222511097788811,0.614483594894409,0.534692764282227,0.580098032951355,0.608695209026337,-0.528095662593842,0.592119097709656,0.957396864891052,-0.184065639972687,0.222511097788811,0.956917583942413,0.188837245106697,0.220565438270569,0.95697683095932,0.184044539928436,-0.224327966570854,0.598075091838837,0.54143351316452,-0.590894103050232,0.614483594894409,0.534692764282227,0.580098032951355,0.956917583942413,0.188837245106697,0.220565438270569,0.605317115783691,-0.545111656188965,-0.58003842830658,0.598075091838837,0.54143351316452,-0.590894103050232,0.95697683095932,0.184044539928436,-0.224327966570854,0.956666469573975,-0.18766088783741,-0.222649186849594,-0.000498097331728786,-0.99999988079071,-2.41732668655459e-005,-0.00035188501351513,-1,-1.88378344319062e-005,0.00175750069320202,-0.999998450279236,5.81356398470234e-005,0.0017575005767867,-0.999998450279236,5.81356398470234e-005,-0.00955883041024208,-0.00135533954016864,0.999953329563141,-0.00704313907772303,-0.000998641364276409,0.999974727630615,-1.74573522304655e-009,0,1,-1.74573500100195e-009,0,1,0.00856516230851412,0.999963343143463,0.000201419796212576,0.00856516417115927,0.999963402748108,0.000201419825316407,-0.00266550621017814,0.999996542930603,-6.35541800875217e-005,
  374. -0.00316485529765487,0.999995052814484,-7.53357162466273e-005,0.00694915046915412,0.00108567578718066,-0.999975323677063,0.00964464526623487,0.00150679564103484,-0.999952375888824,-2.42457804944252e-008,0,-0.999999940395355,-2.4245782270782e-008,0,-0.999999940395355,-0.0050733620300889,-0.00142998364754021,-0.999986112117767,-0.0194510668516159,0.00227546691894531,-0.999808251857758,-0.0194510649889708,0.00227546668611467,-0.999808192253113,0.00227188621647656,-0.00332278292626143,-0.999991953372955,-0.00458365539088845,-0.999989569187164,-8.88371869223192e-005,-0.00458365492522717,-0.999989449977875,-8.8837172370404e-005,-0.00458365492522717,-0.999989449977875,-8.8837172370404e-005,-0.00458365492522717,-0.999989569187164,-8.88371796463616e-005,0.0195491053164005,-0.00178614002652466,0.999807298183441,0.0195491053164005,-0.00178613991010934,0.999807238578796,0.00434856023639441,0.000960496894549578,0.999989986419678,-0.00138801045250148,0.00199694884940982,0.999997079372406,0.00194527977146208,0.999998033046722,0.000100778517662548,0.00450909370556474,0.999989748001099,0.000210812417208217,0.00450909370556474,0.999989807605743,0.000210812431760132,0.00229372549802065,0.999997437000275,0.000115733128041029,0.552602231502533,0.626126050949097,0.550088047981262,0.999689280986786,0.00220875139348209,0.0248285215348005,0.999122679233551,0.00338878971524537,-0.0417430996894836,0.608491122722626,0.538129389286041,-0.583228349685669,-0.601910054683685,0.541644513607025,-0.586792647838593,-0.999441266059875,0.000335396558512002,-0.03342429921031,-0.999427556991577,0.000515970925334841,0.0338268950581551,-0.574787139892578,0.607702791690826,0.548011839389801,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,0.999999940395355,2.21617051465728e-006,0,1,2.1319754068827e-006,0,1,4.21986356968773e-007,0,1,4.11706167824377e-007,0,1,0,0,1,0,0,0.999999940395355,2.21617051465728e-006,
  375. 0,1,4.21986356968773e-007,0,0.999999940395355,0,0,0.999999940395355,0,0,1,4.21986356968773e-007,0,1,0,0,1,4.11706167824377e-007,0,1,2.01997613658023e-006,0,1,0,0,1,2.1319754068827e-006,0,1,2.01997613658023e-006,0,1,4.11706167824377e-007,0,1,4.21986356968773e-007,0,1,2.1319754068827e-006,0,1,0,0,1,2.1319754068827e-006,0,1,4.11706167824377e-007,0,1,0,-0.00909317377954721,-0.00896953046321869,-0.999918401241302,-0.0167788211256266,-0.000554294092580676,-0.999859154224396,0.0497319027781487,-0.000504543771967292,-0.998762488365173,0.0505836755037308,-0.00924613233655691,-0.99867707490921,0.0716737732291222,0.00676315277814865,0.997405171394348,0.0711207762360573,0.00802311953157187,0.997435390949249,-0.0256484411656857,0.00925121642649174,0.999628245830536,-0.0248494446277618,0.00723748467862606,0.999665021896362,0.999960958957672,-0.00860587321221828,-0.0019726431928575,0.999950587749481,-0.00707615632563829,-0.00696852989494801,0.998741865158081,-0.00779285188764334,0.0495397113263607,0.998815417289734,-0.00786699634045362,0.0480203181505203,-0.99914687871933,0.00335415150038898,0.0411625429987907,-0.999182999134064,0.016556927934289,0.0368684902787209,-0.999222815036774,0.0127874193713069,-0.0372839272022247,-0.999424695968628,0.0024334064219147,-0.0338306501507759,-0.613361179828644,-0.496890962123871,-0.6139115691185,-0.00909317377954721,-0.00896953046321869,-0.999918401241302,0.0505836755037308,-0.00924613233655691,-0.99867707490921,0.613206207752228,-0.497326284646988,-0.61371386051178,0,-0.38877871632576,-0.921331167221069,-0.0423672497272491,0.00518635008484125,-0.999088644981384,-0.601910054683685,0.541644513607025,-0.586792647838593,0,0.427128940820694,-0.9041907787323,0.608491122722626,0.538129389286041,-0.583228349685669,0.0424110665917397,0.0057171955704689,-0.999083817005157,0.613206207752228,-0.497326284646988,-0.61371386051178,0.999960958957672,-0.00860587321221828,-0.0019726431928575,0.998815417289734,-0.00786699634045362,0.0480203181505203,0.613355338573456,-0.497458308935165,0.613457798957825,-0.613510370254517,-0.497022897005081,0.613655626773834,
  376. -0.99914687871933,0.00335415150038898,0.0411625429987907,-0.999424695968628,0.0024334064219147,-0.0338306501507759,-0.613361179828644,-0.496890962123871,-0.6139115691185,0.613355338573456,-0.497458308935165,0.613457798957825,0.0716737732291222,0.00676315277814865,0.997405171394348,-0.0248494446277618,0.00723748467862606,0.999665021896362,-0.613510370254517,-0.497022897005081,0.613655626773834,0,-0.389009296894073,0.921233773231506,0.0202274657785892,-0.00268091028556228,0.999791860580444,0.552602231502533,0.626126050949097,0.550088047981262,-0.0348570235073566,0.554900109767914,0.831186473369598,-0.574787139892578,0.607702791690826,0.548011839389801,-0.063536025583744,-0.00157637102529407,0.997978210449219,-0.00909317377954721,-0.00896953046321869,-0.999918401241302,-0.999424695968628,0.0024334064219147,-0.0338306501507759,-0.999222815036774,0.0127874193713069,-0.0372839272022247,-0.0167788211256266,-0.000554294092580676,-0.999859154224396,0.999960958957672,-0.00860587321221828,-0.0019726431928575,0.0505836755037308,-0.00924613233655691,-0.99867707490921,0.0497319027781487,-0.000504543771967292,-0.998762488365173,0.999950587749481,-0.00707615632563829,-0.00696852989494801,-0.99914687871933,0.00335415150038898,0.0411625429987907,-0.0248494446277618,0.00723748467862606,0.999665021896362,-0.0256484411656857,0.00925121642649174,0.999628245830536,-0.999182999134064,0.016556927934289,0.0368684902787209,0.0716737732291222,0.00676315277814865,0.997405171394348,0.998815417289734,-0.00786699634045362,0.0480203181505203,0.998741865158081,-0.00779285188764334,0.0495397113263607,0.0711207762360573,0.00802311953157187,0.997435390949249,-0.613361179828644,-0.496890962123871,-0.6139115691185,-0.999424695968628,0.0024334064219147,-0.0338306501507759,-0.00909317377954721,-0.00896953046321869,-0.999918401241302,-0.601910054683685,0.541644513607025,-0.586792647838593,-0.0423672497272491,0.00518635008484125,-0.999088644981384,-0.999441266059875,0.000335396558512002,-0.03342429921031,0.613206207752228,-0.497326284646988,-0.61371386051178,
  377. 0.0505836755037308,-0.00924613233655691,-0.99867707490921,0.999960958957672,-0.00860587321221828,-0.0019726431928575,0.608491122722626,0.538129389286041,-0.583228349685669,0.999122679233551,0.00338878971524537,-0.0417430996894836,0.0424110665917397,0.0057171955704689,-0.999083817005157,-0.99914687871933,0.00335415150038898,0.0411625429987907,-0.613510370254517,-0.497022897005081,0.613655626773834,-0.0248494446277618,0.00723748467862606,0.999665021896362,-0.574787139892578,0.607702791690826,0.548011839389801,-0.999427556991577,0.000515970925334841,0.0338268950581551,-0.063536025583744,-0.00157637102529407,0.997978210449219,0.0716737732291222,0.00676315277814865,0.997405171394348,0.613355338573456,-0.497458308935165,0.613457798957825,0.998815417289734,-0.00786699634045362,0.0480203181505203,0.552602231502533,0.626126050949097,0.550088047981262,0.0202274657785892,-0.00268091028556228,0.999791860580444,0.999689280986786,0.00220875139348209,0.0248285215348005,0.999466896057129,0.000390108558349311,-0.0326477810740471,0.998939037322998,-0.00214937515556812,0.0460017956793308,0.998741865158081,-0.00779285188764334,0.0495397113263607,0.999950587749481,-0.00707615632563829,-0.00696852989494801,0.998939037322998,-0.00214937515556812,0.0460017956793308,0.0557377710938454,-0.0024677726905793,0.99844229221344,0.0711207762360573,0.00802311953157187,0.997435390949249,0.998741865158081,-0.00779285188764334,0.0495397113263607,0.0557377710938454,-0.0024677726905793,0.99844229221344,-0.0419545732438564,-0.00334962201304734,0.999113917350769,-0.0256484411656857,0.00925121642649174,0.999628245830536,0.0711207762360573,0.00802311953157187,0.997435390949249,-0.0419545732438564,-0.00334962201304734,0.999113917350769,-0.99952757358551,0.00712547264993191,0.0298967454582453,-0.999182999134064,0.016556927934289,0.0368684902787209,-0.0256484411656857,0.00925121642649174,0.999628245830536,-0.99952757358551,0.00712547264993191,0.0298967454582453,-0.999170660972595,0.00469148112460971,-0.040446400642395,-0.999222815036774,0.0127874193713069,-0.0372839272022247,
  378. -0.999182999134064,0.016556927934289,0.0368684902787209,-0.999170660972595,0.00469148112460971,-0.040446400642395,-0.0474832095205784,0.0047772629186511,-0.998860597610474,-0.0167788211256266,-0.000554294092580676,-0.999859154224396,-0.999222815036774,0.0127874193713069,-0.0372839272022247,-0.0474832095205784,0.0047772629186511,-0.998860597610474,0.0451137870550156,0.00485539296641946,-0.998970091342926,0.0497319027781487,-0.000504543771967292,-0.998762488365173,-0.0167788211256266,-0.000554294092580676,-0.999859154224396,0.0497319027781487,-0.000504543771967292,-0.998762488365173,0.0451137870550156,0.00485539296641946,-0.998970091342926,0.999466896057129,0.000390108558349311,-0.0326477810740471,0.999950587749481,-0.00707615632563829,-0.00696852989494801,0.0202274657785892,-0.00268091028556228,0.999791860580444,-0.063536025583744,-0.00157637102529407,0.997978210449219,-0.0543607696890831,-0.0106874322518706,0.998464167118073,0.0298791397362947,-0.0105282356962562,0.999498069286346,-0.063536025583744,-0.00157637102529407,0.997978210449219,-0.999427556991577,0.000515970925334841,0.0338268950581551,-0.99946516752243,-0.0091411154717207,0.0313962250947952,-0.0543607696890831,-0.0106874322518706,0.998464167118073,-0.999427556991577,0.000515970925334841,0.0338268950581551,-0.999441266059875,0.000335396558512002,-0.03342429921031,-0.999308407306671,-0.00901791267096996,-0.0360735505819321,-0.99946516752243,-0.0091411154717207,0.0313962250947952,-0.999441266059875,0.000335396558512002,-0.03342429921031,-0.0423672497272491,0.00518635008484125,-0.999088644981384,-0.0537211298942566,0.000999756739474833,-0.998555481433868,-0.999308407306671,-0.00901791267096996,-0.0360735505819321,-0.0423672497272491,0.00518635008484125,-0.999088644981384,0.0424110665917397,0.0057171955704689,-0.999083817005157,0.0422306135296822,0.00183865416329354,-0.999106228351593,-0.0537211298942566,0.000999756739474833,-0.998555481433868,0.99907249212265,0.00252743205055594,-0.042985238134861,0.0422306135296822,0.00183865416329354,-0.999106228351593,0.0424110665917397,0.0057171955704689,-0.999083817005157,
  379. 0.999122679233551,0.00338878971524537,-0.0417430996894836,0.999122679233551,0.00338878971524537,-0.0417430996894836,0.999689280986786,0.00220875139348209,0.0248285215348005,0.99948638677597,0.0017513275379315,0.032000295817852,0.99907249212265,0.00252743205055594,-0.042985238134861,0.999689280986786,0.00220875139348209,0.0248285215348005,0.0202274657785892,-0.00268091028556228,0.999791860580444,0.0298791397362947,-0.0105282356962562,0.999498069286346,0.99948638677597,0.0017513275379315,0.032000295817852,-0.99946516752243,-0.0091411154717207,0.0313962250947952,-0.999308407306671,-0.00901791267096996,-0.0360735505819321,-0.999170660972595,0.00469148112460971,-0.040446400642395,-0.99952757358551,0.00712547264993191,0.0298967454582453,-0.0543607696890831,-0.0106874322518706,0.998464167118073,-0.99946516752243,-0.0091411154717207,0.0313962250947952,-0.99952757358551,0.00712547264993191,0.0298967454582453,-0.0419545732438564,-0.00334962201304734,0.999113917350769,0.0298791397362947,-0.0105282356962562,0.999498069286346,-0.0543607696890831,-0.0106874322518706,0.998464167118073,-0.0419545732438564,-0.00334962201304734,0.999113917350769,0.0557377710938454,-0.0024677726905793,0.99844229221344,0.99948638677597,0.0017513275379315,0.032000295817852,0.0298791397362947,-0.0105282356962562,0.999498069286346,0.0557377710938454,-0.0024677726905793,0.99844229221344,0.998939037322998,-0.00214937515556812,0.0460017956793308,0.99907249212265,0.00252743205055594,-0.042985238134861,0.99948638677597,0.0017513275379315,0.032000295817852,0.998939037322998,-0.00214937515556812,0.0460017956793308,0.999466896057129,0.000390108558349311,-0.0326477810740471,0.999466896057129,0.000390108558349311,-0.0326477810740471,0.0451137870550156,0.00485539296641946,-0.998970091342926,0.0422306135296822,0.00183865416329354,-0.999106228351593,0.99907249212265,0.00252743205055594,-0.042985238134861,-0.0537211298942566,0.000999756739474833,-0.998555481433868,0.0422306135296822,0.00183865416329354,-0.999106228351593,0.0451137870550156,0.00485539296641946,-0.998970091342926,
  380. -0.0474832095205784,0.0047772629186511,-0.998860597610474,-0.999308407306671,-0.00901791267096996,-0.0360735505819321,-0.0537211298942566,0.000999756739474833,-0.998555481433868,-0.0474832095205784,0.0047772629186511,-0.998860597610474,-0.999170660972595,0.00469148112460971,-0.040446400642395,0.550233900547028,-0.626114964485168,0.552469730377197,0.02421860024333,-0.00306699238717556,0.999701976776123,-0.0421209521591663,-0.00351615692488849,0.999106287956238,-0.583153486251831,-0.538130879402161,0.608561456203461,-0.586665153503418,-0.541637182235718,-0.602040886878967,-0.0342128463089466,7.45455763535574e-005,-0.999414563179016,0.0333583727478981,-0.0011200417065993,-0.99944281578064,0.547911107540131,-0.607645213603973,-0.574944019317627,0,1,1.55194925355318e-006,0,1,3.6442305173523e-008,0,1,-5.36308508714001e-009,0,1,4.77370420970402e-010,0,1,-3.06651344317288e-008,0,1,-1.53044561557181e-006,0,1,1.55194925355318e-006,0,1,1.55050292960368e-006,0,1,3.6442305173523e-008,0,1,1.55050292960368e-006,0,1,-3.06651344317288e-008,0,1,3.6442305173523e-008,0,1,4.77370420970402e-010,0,1,-1.53044561557181e-006,0,1,-1.62540936798905e-006,0,1,-5.36308508714001e-009,0,1,4.77370420970402e-010,0,1,-1.62540936798905e-006,0,1,3.6442305173523e-008,0,1,-3.06651344317288e-008,0,1,-5.36308508714001e-009,0,1,-5.36308508714001e-009,0,1,-3.06651344317288e-008,0,1,4.77370420970402e-010,0,-1,0,0,-1,0,0,-1,0,0,-1,-1.64134217328638e-008,0,-1,-1.28753043782126e-008,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1.64134217328638e-008,0,-1,-1.28696129308992e-008,0,-1,-1.28753043782126e-008,0,-1,0,0,-1,-1.28696129308992e-008,0,-1,-1.64134217328638e-008,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1.64134217328638e-008,0,-1,0,-0.999928712844849,0.00802973285317421,-0.00883466377854347,-0.999867260456085,0.000540056906174868,-0.0162839591503143,-0.998760998249054,0.000235735671594739,0.0497632883489132,-0.998677492141724,0.0078077083453536,0.0508168861269951,0.99738210439682,-0.00661471299827099,0.0720078349113464,0.997440576553345,-0.00786351691931486,0.0710651427507401,
  381. 0.999629259109497,-0.00850185193121433,-0.0258660409599543,0.999686896800995,-0.00628694007173181,-0.0242180563509464,-0.00280750752426684,-0.000535752449650317,0.999995827674866,-0.00705895898863673,0.00094946101307869,0.99997466802597,0.049200676381588,0.00267988420091569,0.998785376548767,0.0470209866762161,-0.00117577891796827,0.998893260955811,0.0424188897013664,0.00527181988582015,-0.999086022377014,0.0382100194692612,-0.0112626934424043,-0.999206244945526,-0.0358655080199242,-0.00601315964013338,-0.999338626861572,-0.0327393710613251,0.00612210528925061,-0.999445080757141,-0.613814234733582,0.49711275100708,-0.613278865814209,-0.999928712844849,0.00802973285317421,-0.00883466377854347,-0.998677492141724,0.0078077083453536,0.0508168861269951,-0.613716006278992,0.497332811355591,0.613198697566986,-0.921332895755768,0.388774663209915,0,-0.999064207077026,0.0102888941764832,-0.0420107580721378,-0.586665153503418,-0.541637182235718,-0.602040886878967,-0.904192924499512,-0.42712414264679,0,-0.583153486251831,-0.538130879402161,0.608561456203461,-0.999068915843964,0.00965610798448324,0.0420489311218262,-0.613716006278992,0.497332811355591,0.613198697566986,-0.00280750752426684,-0.000535752449650317,0.999995827674866,0.0470209866762161,-0.00117577891796827,0.998893260955811,0.613453328609467,0.497473329305649,0.613347589969635,0.613551497459412,0.497253179550171,-0.613427996635437,0.0424188897013664,0.00527181988582015,-0.999086022377014,-0.0327393710613251,0.00612210528925061,-0.999445080757141,-0.613814234733582,0.49711275100708,-0.613278865814209,0.613453328609467,0.497473329305649,0.613347589969635,0.99738210439682,-0.00661471299827099,0.0720078349113464,0.999686896800995,-0.00628694007173181,-0.0242180563509464,0.613551497459412,0.497253179550171,-0.613427996635437,0.921229481697083,0.389019459486008,0,0.999699294567108,-0.0133950291201472,0.0205393005162477,0.550233900547028,-0.626114964485168,0.552469730377197,0.831223249435425,-0.554843366146088,-0.0348840020596981,0.547911107540131,-0.607645213603973,-0.574944019317627,
  382. 0.997856259346008,-0.0147137772291899,-0.0637682005763054,-0.999928712844849,0.00802973285317421,-0.00883466377854347,-0.0327393710613251,0.00612210528925061,-0.999445080757141,-0.0358655080199242,-0.00601315964013338,-0.999338626861572,-0.999867260456085,0.000540056906174868,-0.0162839591503143,-0.00280750752426684,-0.000535752449650317,0.999995827674866,-0.998677492141724,0.0078077083453536,0.0508168861269951,-0.998760998249054,0.000235735671594739,0.0497632883489132,-0.00705895898863673,0.00094946101307869,0.99997466802597,0.0424188897013664,0.00527181988582015,-0.999086022377014,0.999686896800995,-0.00628694007173181,-0.0242180563509464,0.999629259109497,-0.00850185193121433,-0.0258660409599543,0.0382100194692612,-0.0112626934424043,-0.999206244945526,0.99738210439682,-0.00661471299827099,0.0720078349113464,0.0470209866762161,-0.00117577891796827,0.998893260955811,0.049200676381588,0.00267988420091569,0.998785376548767,0.997440576553345,-0.00786351691931486,0.0710651427507401,-0.613814234733582,0.49711275100708,-0.613278865814209,-0.0327393710613251,0.00612210528925061,-0.999445080757141,-0.999928712844849,0.00802973285317421,-0.00883466377854347,-0.586665153503418,-0.541637182235718,-0.602040886878967,-0.999064207077026,0.0102888941764832,-0.0420107580721378,-0.0342128463089466,7.45455763535574e-005,-0.999414563179016,-0.613716006278992,0.497332811355591,0.613198697566986,-0.998677492141724,0.0078077083453536,0.0508168861269951,-0.00280750752426684,-0.000535752449650317,0.999995827674866,-0.583153486251831,-0.538130879402161,0.608561456203461,-0.0421209521591663,-0.00351615692488849,0.999106287956238,-0.999068915843964,0.00965610798448324,0.0420489311218262,0.0424188897013664,0.00527181988582015,-0.999086022377014,0.613551497459412,0.497253179550171,-0.613427996635437,0.999686896800995,-0.00628694007173181,-0.0242180563509464,0.547911107540131,-0.607645213603973,-0.574944019317627,0.0333583727478981,-0.0011200417065993,-0.99944281578064,0.997856259346008,-0.0147137772291899,-0.0637682005763054,0.99738210439682,-0.00661471299827099,0.0720078349113464,
  383. 0.613453328609467,0.497473329305649,0.613347589969635,0.0470209866762161,-0.00117577891796827,0.998893260955811,0.550233900547028,-0.626114964485168,0.552469730377197,0.999699294567108,-0.0133950291201472,0.0205393005162477,0.02421860024333,-0.00306699238717556,0.999701976776123,-0.0326418802142143,-0.000389592605642974,0.999467015266418,0.0459974780678749,0.00214869389310479,0.998939275741577,0.049200676381588,0.00267988420091569,0.998785376548767,-0.00705895898863673,0.00094946101307869,0.99997466802597,0.0459974780678749,0.00214869389310479,0.998939275741577,0.99844229221344,0.00246805581264198,0.0557389706373215,0.997440576553345,-0.00786351691931486,0.0710651427507401,0.049200676381588,0.00267988420091569,0.998785376548767,0.99844229221344,0.00246805581264198,0.0557389706373215,0.99911493062973,0.003351358929649,-0.0419302769005299,0.999629259109497,-0.00850185193121433,-0.0258660409599543,0.997440576553345,-0.00786351691931486,0.0710651427507401,0.99911493062973,0.003351358929649,-0.0419302769005299,0.0299015883356333,-0.00712447334080935,-0.999527513980865,0.0382100194692612,-0.0112626934424043,-0.999206244945526,0.999629259109497,-0.00850185193121433,-0.0258660409599543,0.0299015883356333,-0.00712447334080935,-0.999527513980865,-0.0404494926333427,-0.00469020567834377,-0.999170660972595,-0.0358655080199242,-0.00601315964013338,-0.999338626861572,0.0382100194692612,-0.0112626934424043,-0.999206244945526,-0.0404494926333427,-0.00469020567834377,-0.999170660972595,-0.998860359191895,-0.00477605918422341,-0.0474893972277641,-0.999867260456085,0.000540056906174868,-0.0162839591503143,-0.0358655080199242,-0.00601315964013338,-0.999338626861572,-0.998860359191895,-0.00477605918422341,-0.0474893972277641,-0.998969912528992,-0.00485374499112368,0.0451178848743439,-0.998760998249054,0.000235735671594739,0.0497632883489132,-0.999867260456085,0.000540056906174868,-0.0162839591503143,-0.998760998249054,0.000235735671594739,0.0497632883489132,-0.998969912528992,-0.00485374499112368,0.0451178848743439,-0.0326418802142143,-0.000389592605642974,0.999467015266418,
  384. -0.00705895898863673,0.00094946101307869,0.99997466802597,0.999699294567108,-0.0133950291201472,0.0205393005162477,0.997856259346008,-0.0147137772291899,-0.0637682005763054,0.998554289340973,0.00524967163801193,-0.0534970425069332,0.99952220916748,0.00509991636499763,0.0304858796298504,0.997856259346008,-0.0147137772291899,-0.0637682005763054,0.0333583727478981,-0.0011200417065993,-0.99944281578064,0.0313462130725384,0.0097023518756032,-0.999461531639099,0.998554289340973,0.00524967163801193,-0.0534970425069332,0.0333583727478981,-0.0011200417065993,-0.99944281578064,-0.0342128463089466,7.45455763535574e-005,-0.999414563179016,-0.0359972380101681,0.00997826270759106,-0.99930202960968,0.0313462130725384,0.0097023518756032,-0.999461531639099,-0.0342128463089466,7.45455763535574e-005,-0.999414563179016,-0.999064207077026,0.0102888941764832,-0.0420107580721378,-0.998479425907135,0.00540383765473962,-0.0548609346151352,-0.0359972380101681,0.00997826270759106,-0.99930202960968,-0.999064207077026,0.0102888941764832,-0.0420107580721378,-0.999068915843964,0.00965610798448324,0.0420489311218262,-0.999096810817719,0.00437628058716655,0.0422647036612034,-0.998479425907135,0.00540383765473962,-0.0548609346151352,-0.0428950823843479,-0.00244060810655355,0.99907660484314,-0.999096810817719,0.00437628058716655,0.0422647036612034,-0.999068915843964,0.00965610798448324,0.0420489311218262,-0.0421209521591663,-0.00351615692488849,0.999106287956238,-0.0421209521591663,-0.00351615692488849,0.999106287956238,0.02421860024333,-0.00306699238717556,0.999701976776123,0.032969243824482,-0.00205905269831419,0.999454319477081,-0.0428950823843479,-0.00244060810655355,0.99907660484314,0.02421860024333,-0.00306699238717556,0.999701976776123,0.999699294567108,-0.0133950291201472,0.0205393005162477,0.99952220916748,0.00509991636499763,0.0304858796298504,0.032969243824482,-0.00205905269831419,0.999454319477081,0.0313462130725384,0.0097023518756032,-0.999461531639099,-0.0359972380101681,0.00997826270759106,-0.99930202960968,-0.0404494926333427,-0.00469020567834377,-0.999170660972595,
  385. 0.0299015883356333,-0.00712447334080935,-0.999527513980865,0.998554289340973,0.00524967163801193,-0.0534970425069332,0.0313462130725384,0.0097023518756032,-0.999461531639099,0.0299015883356333,-0.00712447334080935,-0.999527513980865,0.99911493062973,0.003351358929649,-0.0419302769005299,0.99952220916748,0.00509991636499763,0.0304858796298504,0.998554289340973,0.00524967163801193,-0.0534970425069332,0.99911493062973,0.003351358929649,-0.0419302769005299,0.99844229221344,0.00246805581264198,0.0557389706373215,0.032969243824482,-0.00205905269831419,0.999454319477081,0.99952220916748,0.00509991636499763,0.0304858796298504,0.99844229221344,0.00246805581264198,0.0557389706373215,0.0459974780678749,0.00214869389310479,0.998939275741577,-0.0428950823843479,-0.00244060810655355,0.99907660484314,0.032969243824482,-0.00205905269831419,0.999454319477081,0.0459974780678749,0.00214869389310479,0.998939275741577,-0.0326418802142143,-0.000389592605642974,0.999467015266418,-0.0326418802142143,-0.000389592605642974,0.999467015266418,-0.998969912528992,-0.00485374499112368,0.0451178848743439,-0.999096810817719,0.00437628058716655,0.0422647036612034,-0.0428950823843479,-0.00244060810655355,0.99907660484314,-0.998479425907135,0.00540383765473962,-0.0548609346151352,-0.999096810817719,0.00437628058716655,0.0422647036612034,-0.998969912528992,-0.00485374499112368,0.0451178848743439,-0.998860359191895,-0.00477605918422341,-0.0474893972277641,-0.0359972380101681,0.00997826270759106,-0.99930202960968,-0.998479425907135,0.00540383765473962,-0.0548609346151352,-0.998860359191895,-0.00477605918422341,-0.0474893972277641,-0.0404494926333427,-0.00469020567834377,-0.999170660972595,-0.552441298961639,-0.626114249229431,0.550263106822968,-0.999493896961212,-0.0193290878087282,0.0252650119364262,-0.998909950256348,-0.0207469314336777,-0.0418135486543179,-0.60844099521637,-0.538139343261719,-0.583271443843842,0.60197502374649,-0.541640818119049,-0.586729407310486,0.999318420886993,0.0162062961608171,-0.0331682041287422,0.999306261539459,0.0159858502447605,0.0336388945579529,
  386. 0.575011670589447,-0.607633888721466,0.547852754592896,0,1,0,0,1,0,0,1,0,0,0.999999940395355,-3.87796717404854e-007,0,1,-1.01431737675739e-006,0,0.999999940395355,-2.02182195607747e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1.01431737675739e-006,0,1,0,0,0.999999940395355,-3.87796717404854e-007,0,0.999999940395355,-2.02182195607747e-006,0,1,0,0,1,0,0,0.999999940395355,-3.87796717404854e-007,0,1,0,0,1,0,0,1,-1.01431737675739e-006,0,1,0,0,1,0,0,1,-1.01431737675739e-006,0,0.999999940395355,-3.87796717404854e-007,0,-1,0,0,-1,0,0,-1,0,0,-1,-8.20676060442338e-009,0,-1,-6.43673425670954e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-8.20676060442338e-009,0,-0.999999940395355,-6.4347305261947e-009,0,-1,-6.43673425670954e-009,0,-1,0,0,-0.999999940395355,-6.4347305261947e-009,0,-1,-8.20676060442338e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-8.20676060442338e-009,0,-1,0,0.00883401278406382,0.008029755204916,-0.999928772449493,0.016283230856061,0.0005378273781389,-0.99986720085144,-0.049764558672905,0.000233790124184452,-0.998760938644409,-0.0508218482136726,0.00780783174559474,-0.998677253723145,-0.0720275938510895,-0.00661771837621927,0.99738073348999,-0.0710786804556847,-0.00786369107663631,0.997439742088318,0.0258660838007927,-0.00850189197808504,0.999629259109497,0.024217477068305,-0.00628968793898821,0.999686896800995,-0.999995946884155,-0.000540376175194979,-0.00279825483448803,-0.999974548816681,0.000952869188040495,-0.00706141348928213,-0.998785674571991,0.00268288259394467,0.0491933189332485,-0.998894095420837,-0.00117756240069866,0.0470027439296246,0.999085128307343,0.00527856918051839,0.0424385033547878,0.999205827713013,-0.0112634021788836,0.0382216386497021,0.999338567256927,-0.00601217476651073,-0.0358661785721779,0.999444961547852,0.00612944038584828,-0.0327467620372772,0.613086402416229,0.497582405805588,-0.613625884056091,0.00883401278406382,0.008029755204916,-0.999928772449493,-0.0508218482136726,0.00780783174559474,-0.998677253723145,-0.613460063934326,0.497143566608429,-0.613608121871948,-2.21230548049789e-005,0.389205485582352,-0.921150922775269,
  387. 0.0433747135102749,-0.0056756897829473,-0.999042749404907,0.60197502374649,-0.541640818119049,-0.586729407310486,0,-0.427130401134491,-0.904190003871918,-0.60844099521637,-0.538139343261719,-0.583271443843842,-0.0417991504073143,-0.00758124282583594,-0.999097287654877,-0.613460063934326,0.497143566608429,-0.613608121871948,-0.999995946884155,-0.000540376175194979,-0.00279825483448803,-0.998894095420837,-0.00117756240069866,0.0470027439296246,-0.61329460144043,0.497059464454651,0.613841593265533,0.613382637500763,0.497496157884598,0.613399863243103,0.999085128307343,0.00527856918051839,0.0424385033547878,0.999444961547852,0.00612944038584828,-0.0327467620372772,0.613086402416229,0.497582405805588,-0.613625884056091,-0.61329460144043,0.497059464454651,0.613841593265533,-0.0720275938510895,-0.00661771837621927,0.99738073348999,0.024217477068305,-0.00628968793898821,0.999686896800995,0.613382637500763,0.497496157884598,0.613399863243103,4.42812279288773e-006,0.389068216085434,0.92120885848999,-0.0192517265677452,0.00302210170775652,0.999810099601746,-0.552441298961639,-0.626114249229431,0.550263106822968,0.0348842032253742,-0.554838418960571,0.831226408481598,0.575011670589447,-0.607633888721466,0.547852754592896,0.0640386417508125,0.00283536361530423,0.997943460941315,0.00883401278406382,0.008029755204916,-0.999928772449493,0.999444961547852,0.00612944038584828,-0.0327467620372772,0.999338567256927,-0.00601217476651073,-0.0358661785721779,0.016283230856061,0.0005378273781389,-0.99986720085144,-0.999995946884155,-0.000540376175194979,-0.00279825483448803,-0.0508218482136726,0.00780783174559474,-0.998677253723145,-0.049764558672905,0.000233790124184452,-0.998760938644409,-0.999974548816681,0.000952869188040495,-0.00706141348928213,0.999085128307343,0.00527856918051839,0.0424385033547878,0.024217477068305,-0.00628968793898821,0.999686896800995,0.0258660838007927,-0.00850189197808504,0.999629259109497,0.999205827713013,-0.0112634021788836,0.0382216386497021,-0.0720275938510895,-0.00661771837621927,0.99738073348999,-0.998894095420837,-0.00117756240069866,0.0470027439296246,
  388. -0.998785674571991,0.00268288259394467,0.0491933189332485,-0.0710786804556847,-0.00786369107663631,0.997439742088318,0.613086402416229,0.497582405805588,-0.613625884056091,0.999444961547852,0.00612944038584828,-0.0327467620372772,0.00883401278406382,0.008029755204916,-0.999928772449493,0.60197502374649,-0.541640818119049,-0.586729407310486,0.0433747135102749,-0.0056756897829473,-0.999042749404907,0.999318420886993,0.0162062961608171,-0.0331682041287422,-0.613460063934326,0.497143566608429,-0.613608121871948,-0.0508218482136726,0.00780783174559474,-0.998677253723145,-0.999995946884155,-0.000540376175194979,-0.00279825483448803,-0.60844099521637,-0.538139343261719,-0.583271443843842,-0.998909950256348,-0.0207469314336777,-0.0418135486543179,-0.0417991504073143,-0.00758124282583594,-0.999097287654877,0.999085128307343,0.00527856918051839,0.0424385033547878,0.613382637500763,0.497496157884598,0.613399863243103,0.024217477068305,-0.00628968793898821,0.999686896800995,0.575011670589447,-0.607633888721466,0.547852754592896,0.999306261539459,0.0159858502447605,0.0336388945579529,0.0640386417508125,0.00283536361530423,0.997943460941315,-0.0720275938510895,-0.00661771837621927,0.99738073348999,-0.61329460144043,0.497059464454651,0.613841593265533,-0.998894095420837,-0.00117756240069866,0.0470027439296246,-0.552441298961639,-0.626114249229431,0.550263106822968,-0.0192517265677452,0.00302210170775652,0.999810099601746,-0.999493896961212,-0.0193290878087282,0.0252650119364262,-0.999467015266418,-0.000391842739190906,-0.0326440595090389,-0.998938500881195,0.00214673904702067,0.0460126176476479,-0.998785674571991,0.00268288259394467,0.0491933189332485,-0.999974548816681,0.000952869188040495,-0.00706141348928213,-0.998938500881195,0.00214673904702067,0.0460126176476479,-0.0557532981038094,0.00246817385777831,0.998441517353058,-0.0710786804556847,-0.00786369107663631,0.997439742088318,-0.998785674571991,0.00268288259394467,0.0491933189332485,-0.0557532981038094,0.00246817385777831,0.998441517353058,0.0419272370636463,0.00335084623657167,0.99911504983902,
  389. 0.0258660838007927,-0.00850189197808504,0.999629259109497,-0.0710786804556847,-0.00786369107663631,0.997439742088318,0.0419272370636463,0.00335084623657167,0.99911504983902,0.999527513980865,-0.00712575390934944,0.0298963766545057,0.999205827713013,-0.0112634021788836,0.0382216386497021,0.0258660838007927,-0.00850189197808504,0.999629259109497,0.999527513980865,-0.00712575390934944,0.0298963766545057,0.999170660972595,-0.00469136890023947,-0.0404461249709129,0.999338567256927,-0.00601217476651073,-0.0358661785721779,0.999205827713013,-0.0112634021788836,0.0382216386497021,0.999170660972595,-0.00469136890023947,-0.0404461249709129,0.047489732503891,-0.00477569410577416,-0.998860239982605,0.016283230856061,0.0005378273781389,-0.99986720085144,0.999338567256927,-0.00601217476651073,-0.0358661785721779,0.047489732503891,-0.00477569410577416,-0.998860239982605,-0.0451165586709976,-0.00485308188945055,-0.998969912528992,-0.049764558672905,0.000233790124184452,-0.998760938644409,0.016283230856061,0.0005378273781389,-0.99986720085144,-0.049764558672905,0.000233790124184452,-0.998760938644409,-0.0451165586709976,-0.00485308188945055,-0.998969912528992,-0.999467015266418,-0.000391842739190906,-0.0326440595090389,-0.999974548816681,0.000952869188040495,-0.00706141348928213,-0.0192517265677452,0.00302210170775652,0.999810099601746,0.0640386417508125,0.00283536361530423,0.997943460941315,0.0534319467842579,0.0119923492893577,0.998499393463135,-0.031032795086503,0.0112582882866263,0.999454915523529,0.0640386417508125,0.00283536361530423,0.997943460941315,0.999306261539459,0.0159858502447605,0.0336388945579529,0.999377429485321,0.0163858849555254,0.0312451180070639,0.0534319467842579,0.0119923492893577,0.998499393463135,0.999306261539459,0.0159858502447605,0.0336388945579529,0.999318420886993,0.0162062961608171,-0.0331682041287422,0.999205350875854,0.0162216424942017,-0.0364072732627392,0.999377429485321,0.0163858849555254,0.0312451180070639,0.999318420886993,0.0162062961608171,-0.0331682041287422,0.0433747135102749,-0.0056756897829473,-0.999042749404907,
  390. 0.054323635995388,-0.00080979592166841,-0.998522996902466,0.999205350875854,0.0162216424942017,-0.0364072732627392,0.0433747135102749,-0.0056756897829473,-0.999042749404907,-0.0417991504073143,-0.00758124282583594,-0.999097287654877,-0.0423746295273304,-0.00227948883548379,-0.999099254608154,0.054323635995388,-0.00080979592166841,-0.998522996902466,-0.999035000801086,-0.00903056096285582,-0.0429822355508804,-0.0423746295273304,-0.00227948883548379,-0.999099254608154,-0.0417991504073143,-0.00758124282583594,-0.999097287654877,-0.998909950256348,-0.0207469314336777,-0.0418135486543179,-0.998909950256348,-0.0207469314336777,-0.0418135486543179,-0.999493896961212,-0.0193290878087282,0.0252650119364262,-0.99943482875824,-0.00832683872431517,0.0325673185288906,-0.999035000801086,-0.00903056096285582,-0.0429822355508804,-0.999493896961212,-0.0193290878087282,0.0252650119364262,-0.0192517265677452,0.00302210170775652,0.999810099601746,-0.031032795086503,0.0112582882866263,0.999454915523529,-0.99943482875824,-0.00832683872431517,0.0325673185288906,0.999377429485321,0.0163858849555254,0.0312451180070639,0.999205350875854,0.0162216424942017,-0.0364072732627392,0.999170660972595,-0.00469136890023947,-0.0404461249709129,0.999527513980865,-0.00712575390934944,0.0298963766545057,0.0534319467842579,0.0119923492893577,0.998499393463135,0.999377429485321,0.0163858849555254,0.0312451180070639,0.999527513980865,-0.00712575390934944,0.0298963766545057,0.0419272370636463,0.00335084623657167,0.99911504983902,-0.031032795086503,0.0112582882866263,0.999454915523529,0.0534319467842579,0.0119923492893577,0.998499393463135,0.0419272370636463,0.00335084623657167,0.99911504983902,-0.0557532981038094,0.00246817385777831,0.998441517353058,-0.99943482875824,-0.00832683872431517,0.0325673185288906,-0.031032795086503,0.0112582882866263,0.999454915523529,-0.0557532981038094,0.00246817385777831,0.998441517353058,-0.998938500881195,0.00214673904702067,0.0460126176476479,-0.999035000801086,-0.00903056096285582,-0.0429822355508804,-0.99943482875824,-0.00832683872431517,0.0325673185288906,
  391. -0.998938500881195,0.00214673904702067,0.0460126176476479,-0.999467015266418,-0.000391842739190906,-0.0326440595090389,-0.999467015266418,-0.000391842739190906,-0.0326440595090389,-0.0451165586709976,-0.00485308188945055,-0.998969912528992,-0.0423746295273304,-0.00227948883548379,-0.999099254608154,-0.999035000801086,-0.00903056096285582,-0.0429822355508804,0.054323635995388,-0.00080979592166841,-0.998522996902466,-0.0423746295273304,-0.00227948883548379,-0.999099254608154,-0.0451165586709976,-0.00485308188945055,-0.998969912528992,0.047489732503891,-0.00477569410577416,-0.998860239982605,0.999205350875854,0.0162216424942017,-0.0364072732627392,0.054323635995388,-0.00080979592166841,-0.998522996902466,0.047489732503891,-0.00477569410577416,-0.998860239982605,0.999170660972595,-0.00469136890023947,-0.0404461249709129,0.550249755382538,0.625706017017365,-0.552917063236237,0.0248420499265194,0.00220155203714967,-0.999688863754272,-0.0417248234152794,0.00338129536248744,-0.999123394489288,-0.58335542678833,0.537729561328888,-0.608722746372223,-0.58698695898056,0.541378438472748,0.601959943771362,-0.0333924628794193,0.000336550467181951,0.999442279338837,0.0338311903178692,0.000516402476932853,0.999427318572998,0.54824286699295,0.607408344745636,0.574878215789795,0,-1,0,0,-0.999999940395355,0,0,-1,-6.27991258994598e-009,0,-1,-4.03753896635606e-012,0,-1,-5.99289240454937e-009,0,-1,1.19568310807949e-008,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,-5.99289240454937e-009,0,-0.999999940395355,0,0,-1,-4.03753896635606e-012,0,-1,1.19568310807949e-008,0,-1,1.26985861825801e-008,0,-1,-6.27991258994598e-009,0,-1,-4.03753896635606e-012,0,-1,1.26985861825801e-008,0,-0.999999940395355,0,0,-1,-5.99289240454937e-009,0,-1,-6.27991258994598e-009,0,-1,-6.27991258994598e-009,0,-1,-5.99289240454937e-009,0,-1,-4.03753896635606e-012,0,1,0,0,1,0,0,0.999999940395355,0,0,1,2.10077769224881e-006,0,1,1.64808375302528e-006,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,2.10077769224881e-006,0,1,1.64717391726299e-006,
  392. 0,1,1.64808375302528e-006,0,1,0,0,1,1.64717391726299e-006,0,1,2.10077769224881e-006,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,2.10077769224881e-006,0,1,0,-0.999792635440826,-0.0185422170907259,0.00841063726693392,-0.99984222650528,-0.00638081459328532,0.016574589535594,-0.998747169971466,-0.00535187823697925,-0.0497525818645954,-0.998507440090179,-0.018273338675499,-0.051468338817358,0.997283697128296,0.0164024699479342,-0.0718065574765205,0.997376143932343,0.0139004196971655,-0.0710462257266045,0.999550819396973,0.0146365063264966,0.0261510331183672,0.999584019184113,0.0160627122968435,0.0239562839269638,-0.00252967397682369,0.000604835106059909,-0.999996602535248,-0.0077888360247016,-0.00104786898009479,-0.999969065189362,0.0489188879728317,-0.00258027389645576,-0.998799383640289,0.0472031347453594,0.00173911720048636,-0.998883903026581,0.0431041345000267,-0.00553303211927414,0.99905526638031,0.0370987728238106,0.0121074263006449,0.999238252639771,-0.0364231802523136,0.00634056190028787,0.999316394329071,-0.0322587564587593,-0.00714649306610227,0.999453961849213,-0.613974571228027,-0.49688658118248,0.613301753997803,-0.999792635440826,-0.0185422170907259,0.00841063726693392,-0.998507440090179,-0.018273338675499,-0.051468338817358,-0.613974630832672,-0.496886610984802,-0.613301753997803,-0.921335697174072,-0.388768047094345,0,-0.999088227748871,0.00518698198720813,0.0423759259283543,-0.58698695898056,0.541378438472748,0.601959943771362,-0.90418940782547,0.42713189125061,0,-0.58335542678833,0.537729561328888,-0.608722746372223,-0.999083936214447,0.00572011573240161,-0.0424093119800091,-0.613974630832672,-0.496886610984802,-0.613301753997803,-0.00252967397682369,0.000604835106059909,-0.999996602535248,0.0472031347453594,0.00173911720048636,-0.998883903026581,0.613671898841858,-0.497020304203033,-0.613496243953705,0.613763332366943,-0.497026264667511,0.613399863243103,0.0431041345000267,-0.00553303211927414,0.99905526638031,-0.0322587564587593,-0.00714649306610227,0.999453961849213,-0.613974571228027,-0.49688658118248,0.613301753997803,
  393. 0.613671898841858,-0.497020304203033,-0.613496243953705,0.997283697128296,0.0164024699479342,-0.0718065574765205,0.999584019184113,0.0160627122968435,0.0239562839269638,0.613763332366943,-0.497026264667511,0.613399863243103,0.921235144138336,-0.3890061378479,0,0.999791622161865,-0.00267910095863044,-0.0202364977449179,0.550249755382538,0.625706017017365,-0.552917063236237,0.831281304359436,0.554758071899414,0.034854207187891,0.54824286699295,0.607408344745636,0.574878215789795,0.997978210449219,-0.00158037838991731,0.0635372400283813,-0.999792635440826,-0.0185422170907259,0.00841063726693392,-0.0322587564587593,-0.00714649306610227,0.999453961849213,-0.0364231802523136,0.00634056190028787,0.999316394329071,-0.99984222650528,-0.00638081459328532,0.016574589535594,-0.00252967397682369,0.000604835106059909,-0.999996602535248,-0.998507440090179,-0.018273338675499,-0.051468338817358,-0.998747169971466,-0.00535187823697925,-0.0497525818645954,-0.0077888360247016,-0.00104786898009479,-0.999969065189362,0.0431041345000267,-0.00553303211927414,0.99905526638031,0.999584019184113,0.0160627122968435,0.0239562839269638,0.999550819396973,0.0146365063264966,0.0261510331183672,0.0370987728238106,0.0121074263006449,0.999238252639771,0.997283697128296,0.0164024699479342,-0.0718065574765205,0.0472031347453594,0.00173911720048636,-0.998883903026581,0.0489188879728317,-0.00258027389645576,-0.998799383640289,0.997376143932343,0.0139004196971655,-0.0710462257266045,-0.613974571228027,-0.49688658118248,0.613301753997803,-0.0322587564587593,-0.00714649306610227,0.999453961849213,-0.999792635440826,-0.0185422170907259,0.00841063726693392,-0.58698695898056,0.541378438472748,0.601959943771362,-0.999088227748871,0.00518698198720813,0.0423759259283543,-0.0333924628794193,0.000336550467181951,0.999442279338837,-0.613974630832672,-0.496886610984802,-0.613301753997803,-0.998507440090179,-0.018273338675499,-0.051468338817358,-0.00252967397682369,0.000604835106059909,-0.999996602535248,-0.58335542678833,0.537729561328888,-0.608722746372223,-0.0417248234152794,0.00338129536248744,-0.999123394489288,
  394. -0.999083936214447,0.00572011573240161,-0.0424093119800091,0.0431041345000267,-0.00553303211927414,0.99905526638031,0.613763332366943,-0.497026264667511,0.613399863243103,0.999584019184113,0.0160627122968435,0.0239562839269638,0.54824286699295,0.607408344745636,0.574878215789795,0.0338311903178692,0.000516402476932853,0.999427318572998,0.997978210449219,-0.00158037838991731,0.0635372400283813,0.997283697128296,0.0164024699479342,-0.0718065574765205,0.613671898841858,-0.497020304203033,-0.613496243953705,0.0472031347453594,0.00173911720048636,-0.998883903026581,0.550249755382538,0.625706017017365,-0.552917063236237,0.999791622161865,-0.00267910095863044,-0.0202364977449179,0.0248420499265194,0.00220155203714967,-0.999688863754272,-0.0326468050479889,0.000391524430597201,-0.999466896057129,0.0460058078169823,-0.00214729201979935,-0.998938798904419,0.0489188879728317,-0.00258027389645576,-0.998799383640289,-0.0077888360247016,-0.00104786898009479,-0.999969065189362,0.0460058078169823,-0.00214729201979935,-0.998938798904419,0.998441219329834,-0.00246910308487713,-0.0557586550712585,0.997376143932343,0.0139004196971655,-0.0710462257266045,0.0489188879728317,-0.00258027389645576,-0.998799383640289,0.998441219329834,-0.00246910308487713,-0.0557586550712585,0.999114215373993,-0.00335022434592247,0.0419482216238976,0.999550819396973,0.0146365063264966,0.0261510331183672,0.997376143932343,0.0139004196971655,-0.0710462257266045,0.999114215373993,-0.00335022434592247,0.0419482216238976,0.0298970304429531,0.00712535670027137,0.9995276927948,0.0370987728238106,0.0121074263006449,0.999238252639771,0.999550819396973,0.0146365063264966,0.0261510331183672,0.0298970304429531,0.00712535670027137,0.9995276927948,-0.0404616743326187,0.00469185365363956,0.999170184135437,-0.0364231802523136,0.00634056190028787,0.999316394329071,0.0370987728238106,0.0121074263006449,0.999238252639771,-0.0404616743326187,0.00469185365363956,0.999170184135437,-0.998861253261566,0.00477826362475753,0.0474698171019554,-0.99984222650528,-0.00638081459328532,0.016574589535594,
  395. -0.0364231802523136,0.00634056190028787,0.999316394329071,-0.998861253261566,0.00477826362475753,0.0474698171019554,-0.998969912528992,0.00485604209825397,-0.045117475092411,-0.998747169971466,-0.00535187823697925,-0.0497525818645954,-0.99984222650528,-0.00638081459328532,0.016574589535594,-0.998747169971466,-0.00535187823697925,-0.0497525818645954,-0.998969912528992,0.00485604209825397,-0.045117475092411,-0.0326468050479889,0.000391524430597201,-0.999466896057129,-0.0077888360247016,-0.00104786898009479,-0.999969065189362,0.999791622161865,-0.00267910095863044,-0.0202364977449179,0.997978210449219,-0.00158037838991731,0.0635372400283813,0.998464286327362,-0.0106861237436533,0.0543592944741249,0.999497532844543,-0.0105270128697157,-0.0298952646553516,0.997978210449219,-0.00158037838991731,0.0635372400283813,0.0338311903178692,0.000516402476932853,0.999427318572998,0.0314039140939713,-0.00913568586111069,0.999464988708496,0.998464286327362,-0.0106861237436533,0.0543592944741249,0.0338311903178692,0.000516402476932853,0.999427318572998,-0.0333924628794193,0.000336550467181951,0.999442279338837,-0.0360658653080463,-0.00901240203529596,0.99930876493454,0.0314039140939713,-0.00913568586111069,0.999464988708496,-0.0333924628794193,0.000336550467181951,0.999442279338837,-0.999088227748871,0.00518698198720813,0.0423759259283543,-0.998555541038513,0.00100118515547365,0.0537202470004559,-0.0360658653080463,-0.00901240203529596,0.99930876493454,-0.999088227748871,0.00518698198720813,0.0423759259283543,-0.999083936214447,0.00572011573240161,-0.0424093119800091,-0.999106228351593,0.00183984229806811,-0.0422287993133068,-0.998555541038513,0.00100118515547365,0.0537202470004559,-0.0429692938923836,0.00253030797466636,-0.999073147773743,-0.999106228351593,0.00183984229806811,-0.0422287993133068,-0.999083936214447,0.00572011573240161,-0.0424093119800091,-0.0417248234152794,0.00338129536248744,-0.999123394489288,-0.0417248234152794,0.00338129536248744,-0.999123394489288,0.0248420499265194,0.00220155203714967,-0.999688863754272,0.0320141799747944,0.00175435945857316,-0.999485909938812,
  396. -0.0429692938923836,0.00253030797466636,-0.999073147773743,0.0248420499265194,0.00220155203714967,-0.999688863754272,0.999791622161865,-0.00267910095863044,-0.0202364977449179,0.999497532844543,-0.0105270128697157,-0.0298952646553516,0.0320141799747944,0.00175435945857316,-0.999485909938812,0.0314039140939713,-0.00913568586111069,0.999464988708496,-0.0360658653080463,-0.00901240203529596,0.99930876493454,-0.0404616743326187,0.00469185365363956,0.999170184135437,0.0298970304429531,0.00712535670027137,0.9995276927948,0.998464286327362,-0.0106861237436533,0.0543592944741249,0.0314039140939713,-0.00913568586111069,0.999464988708496,0.0298970304429531,0.00712535670027137,0.9995276927948,0.999114215373993,-0.00335022434592247,0.0419482216238976,0.999497532844543,-0.0105270128697157,-0.0298952646553516,0.998464286327362,-0.0106861237436533,0.0543592944741249,0.999114215373993,-0.00335022434592247,0.0419482216238976,0.998441219329834,-0.00246910308487713,-0.0557586550712585,0.0320141799747944,0.00175435945857316,-0.999485909938812,0.999497532844543,-0.0105270128697157,-0.0298952646553516,0.998441219329834,-0.00246910308487713,-0.0557586550712585,0.0460058078169823,-0.00214729201979935,-0.998938798904419,-0.0429692938923836,0.00253030797466636,-0.999073147773743,0.0320141799747944,0.00175435945857316,-0.999485909938812,0.0460058078169823,-0.00214729201979935,-0.998938798904419,-0.0326468050479889,0.000391524430597201,-0.999466896057129,-0.0326468050479889,0.000391524430597201,-0.999466896057129,-0.998969912528992,0.00485604209825397,-0.045117475092411,-0.999106228351593,0.00183984229806811,-0.0422287993133068,-0.0429692938923836,0.00253030797466636,-0.999073147773743,-0.998555541038513,0.00100118515547365,0.0537202470004559,-0.999106228351593,0.00183984229806811,-0.0422287993133068,-0.998969912528992,0.00485604209825397,-0.045117475092411,-0.998861253261566,0.00477826362475753,0.0474698171019554,-0.0360658653080463,-0.00901240203529596,0.99930876493454,-0.998555541038513,0.00100118515547365,0.0537202470004559,-0.998861253261566,0.00477826362475753,0.0474698171019554,
  397. -0.0404616743326187,0.00469185365363956,0.999170184135437,0.967669785022736,-0.247367426753044,0.049239743500948,0.741492211818695,-0.638439297676086,0.206360191106796,0.71330589056015,-0.63318943977356,-0.300442665815353,0.969930410385132,-0.235663011670113,-0.0608102641999722,0.9778813123703,0.201203852891922,-0.057141151279211,0.615504920482636,0.746879875659943,-0.251643180847168,0.633995652198792,0.755063235759735,0.167119562625885,0.975381553173065,0.21546745300293,0.0469531379640102,0.975381553173065,0.21546745300293,0.0469531379640102,0.633995652198792,0.755063235759735,0.167119562625885,0.741492211818695,-0.638439297676086,0.206360191106796,0.967669785022736,-0.247367426753044,0.049239743500948,0.9778813123703,0.201203852891922,-0.057141151279211,0.975381553173065,0.21546745300293,0.0469531379640102,0.967669785022736,-0.247367426753044,0.049239743500948,0.969930410385132,-0.235663011670113,-0.0608102641999722,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,-4.73630645814183e-009,1,0,-4.73630690223104e-009,1,0,-2.86386363512747e-008,1,-7.14284055902681e-007,-2.85196684046696e-008,1,-7.1072884111345e-007,0.00578359607607126,0.00107994268182665,0.999982714653015,0.00578359607607126,0.00107994268182665,0.999982714653015,0.00203066412359476,0.0006507498328574,0.999997675418854,0.00203065667301416,0.000650749017950147,0.999997735023499,0.71330589056015,-0.63318943977356,-0.300442665815353,0.615504920482636,0.746879875659943,-0.251643180847168,0.9778813123703,0.201203852891922,-0.057141151279211,0.969930410385132,-0.235663011670113,-0.0608102641999722,-0.0023265655618161,-0.000530393037479371,-0.999997198581696,-0.00232657208107412,-0.000530393735971302,-0.999997138977051,-0.00608464470133185,-0.000911201874259859,-0.999981105327606,-0.00608464470133185,-0.000911201874259859,-0.999981045722961,-0.524540960788727,-0.834535419940948,-0.168545380234718,-0.52379322052002,-0.835088610649109,0.168129548430443,-0.975610554218292,-0.210107713937759,0.06355319917202,-0.975527703762054,-0.210509359836578,-0.0634946376085281,-0.523980617523193,0.834956645965576,0.168200999498367,
  398. -0.524667918682098,0.834441959857941,-0.168612778186798,-0.975534439086914,0.210479080677032,-0.0634913146495819,-0.975606203079224,0.210123017430305,0.063568614423275,-0.52379322052002,-0.835088610649109,0.168129548430443,-0.523980617523193,0.834956645965576,0.168200999498367,-0.975606203079224,0.210123017430305,0.063568614423275,-0.975610554218292,-0.210107713937759,0.06355319917202,-0.975527703762054,-0.210509359836578,-0.0634946376085281,-0.975534439086914,0.210479080677032,-0.0634913146495819,-0.524667918682098,0.834441959857941,-0.168612778186798,-0.524540960788727,-0.834535419940948,-0.168545380234718,-0.975527703762054,-0.210509359836578,-0.0634946376085281,-0.975610554218292,-0.210107713937759,0.06355319917202,-0.975606203079224,0.210123017430305,0.063568614423275,-0.975534439086914,0.210479080677032,-0.0634913146495819,-2.85196684046696e-008,1,-7.1072884111345e-007,-2.86386363512747e-008,1,-7.14284055902681e-007,-4.91589808859771e-008,1,-1.32750267312076e-006,-4.91589773332635e-008,1,-1.32750255943392e-006,0.00203065667301416,0.000650749017950147,0.999997735023499,0.00203066412359476,0.0006507498328574,0.999997675418854,-0.00120082055218518,0.000281186017673463,0.999999284744263,-0.00120082055218518,0.000281186017673463,0.999999284744263,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.000909345922991633,-0.000202492417884059,-0.999999523162842,0.000909345981199294,-0.000202492432435974,-0.999999523162842,-0.00232657208107412,-0.000530393735971302,-0.999997138977051,-0.0023265655618161,-0.000530393037479371,-0.999997198581696,0.928573071956635,-0.366719961166382,0.0571701750159264,0.610807955265045,-0.765782535076141,0.201222971081734,0.569621622562408,-0.774761974811554,-0.274363368749619,0.944997191429138,-0.323276430368423,-0.0497249476611614,0.95664256811142,0.286479443311691,-0.0525790266692638,0.460401028394699,0.858248889446259,-0.226803094148636,0.479082584381104,0.868464946746826,0.127469643950462,0.952777564525604,0.299404472112656,0.0507139302790165,0.952777564525604,0.299404472112656,0.0507139302790165,0.479082584381104,0.868464946746826,0.127469643950462,
  399. 0.610807955265045,-0.765782535076141,0.201222971081734,0.928573071956635,-0.366719961166382,0.0571701750159264,0.95664256811142,0.286479443311691,-0.0525790266692638,0.952777564525604,0.299404472112656,0.0507139302790165,0.928573071956635,-0.366719961166382,0.0571701750159264,0.944997191429138,-0.323276430368423,-0.0497249476611614,-0.00106883340049535,-0.999999403953552,7.43272266845452e-006,-0.00106883351691067,-0.999999463558197,7.43272357794922e-006,4.18637546317768e-006,-1,9.51995207287837e-006,1.15028233267367e-005,-1,9.53418384597171e-006,-0.00106879300437868,0.999999403953552,6.60712294120458e-006,-0.00106879300437868,0.999999403953552,6.60712248645723e-006,1.14438626042102e-005,1,9.00703525985591e-006,4.22137054556515e-006,1,8.99098904483253e-006,0.00387723417952657,0.001167600043118,0.999991774559021,0.00387723394669592,0.00116759992670268,0.999991774559021,0.00244264048524201,0.000812050478998572,0.999996721744537,0.00244286563247442,0.000812106241937727,0.999996721744537,0.569621622562408,-0.774761974811554,-0.274363368749619,0.460401028394699,0.858248889446259,-0.226803094148636,0.95664256811142,0.286479443311691,-0.0525790266692638,0.944997191429138,-0.323276430368423,-0.0497249476611614,-0.00103314407169819,-0.000651973532512784,-0.999999284744263,-0.00103311461862177,-0.000651972775813192,-0.999999284744263,-0.0130085749551654,-0.000968878739513457,-0.999914884567261,-0.0130085740238428,-0.000968878623098135,-0.999914884567261,-0.524489164352417,-0.84075140953064,-0.134343162178993,-0.52440744638443,-0.843552350997925,0.115828819572926,-0.976564168930054,-0.213235974311829,0.0292031485587358,-0.974471926689148,-0.216217190027237,-0.060452226549387,-0.524593949317932,0.843432188034058,0.11585921049118,-0.524624347686768,0.840659320354462,-0.134391829371452,-0.974481582641602,0.216174855828285,-0.0604484751820564,-0.976558446884155,0.21326008439064,0.0292192008346319,-0.52440744638443,-0.843552350997925,0.115828819572926,-0.524593949317932,0.843432188034058,0.11585921049118,-0.976558446884155,0.21326008439064,0.0292192008346319,
  400. -0.976564168930054,-0.213235974311829,0.0292031485587358,-0.974471926689148,-0.216217190027237,-0.060452226549387,-0.974481582641602,0.216174855828285,-0.0604484751820564,-0.524624347686768,0.840659320354462,-0.134391829371452,-0.524489164352417,-0.84075140953064,-0.134343162178993,-0.974471926689148,-0.216217190027237,-0.060452226549387,-0.976564168930054,-0.213235974311829,0.0292031485587358,-0.976558446884155,0.21326008439064,0.0292192008346319,-0.974481582641602,0.216174855828285,-0.0604484751820564,4.22137054556515e-006,1,8.99098904483253e-006,1.14438626042102e-005,1,9.00703525985591e-006,0.0019197401124984,0.999998092651367,1.3246582057036e-005,0.00191974046174437,0.999998211860657,1.32465838760254e-005,0.00244286563247442,0.000812106241937727,0.999996721744537,0.00244264048524201,0.000812050478998572,0.999996721744537,-0.000127350082038902,0.000175103050423786,0.99999988079071,-0.000127350082038902,0.000175103050423786,0.999999940395355,1.15028233267367e-005,-1,9.53418384597171e-006,4.18637546317768e-006,-1,9.51995207287837e-006,0.00191988854203373,-0.999998271465302,1.32463301270036e-005,0.00191988830920309,-0.999998152256012,1.32463283080142e-005,0.0205084905028343,-8.16923857200891e-005,-0.999789714813232,0.0205084905028343,-8.16923784441315e-005,-0.999789655208588,-0.00103311461862177,-0.000651972775813192,-0.999999284744263,-0.00103314407169819,-0.000651973532512784,-0.999999284744263,0.928484916687012,-0.363973081111908,0.0737515315413475,0.624371588230133,-0.744186341762543,0.237374901771545,0.57852041721344,-0.745028376579285,-0.332034468650818,0.945623636245728,-0.318874508142471,-0.0641477331519127,0.956762373447418,0.28288608789444,-0.067685142159462,0.473561435937881,0.835695087909698,-0.27812448143959,0.497555285692215,0.853227913379669,0.156335815787315,0.953114330768585,0.295489341020584,0.0652622431516647,0.953114330768585,0.295489341020584,0.0652622431516647,0.497555285692215,0.853227913379669,0.156335815787315,0.624371588230133,-0.744186341762543,0.237374901771545,0.928484916687012,-0.363973081111908,0.0737515315413475,
  401. 0.956762373447418,0.28288608789444,-0.067685142159462,0.953114330768585,0.295489341020584,0.0652622431516647,0.928484916687012,-0.363973081111908,0.0737515315413475,0.945623636245728,-0.318874508142471,-0.0641477331519127,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,-1.0047001097746e-007,1,-1.28139390653814e-006,-1.0047001097746e-007,1,-1.28139390653814e-006,-2.67451376601002e-008,1,-9.85022211352771e-007,-2.5336639453144e-008,1,-9.79359924713208e-007,-0.00459135603159666,0.00122619397006929,0.999988734722137,-0.00459135603159666,0.00122619397006929,0.999988734722137,0.000934963987674564,0.000780450878664851,0.999999165534973,0.000934970157686621,0.000780450587626547,0.999999344348907,0.57852041721344,-0.745028376579285,-0.332034468650818,0.473561435937881,0.835695087909698,-0.27812448143959,0.956762373447418,0.28288608789444,-0.067685142159462,0.945623636245728,-0.318874508142471,-0.0641477331519127,-0.000985448597930372,-0.000638835248537362,-0.999999344348907,-0.00098544277716428,-0.000638835539575666,-0.999999284744263,0.00456305639818311,-0.00103495398070663,-0.999989032745361,0.00456305686384439,-0.00103495409712195,-0.999989092350006,-0.52695631980896,-0.830028653144836,-0.182673215866089,-0.528422176837921,-0.838066399097443,0.135701194405556,-0.977582693099976,-0.209718927741051,0.0187106244266033,-0.971460998058319,-0.216242983937263,-0.0974814966320992,-0.528510689735413,0.838006615638733,0.135726094245911,-0.526985168457031,0.830003201961517,-0.182705402374268,-0.971455037593842,0.216272845864296,-0.0974736362695694,-0.977566719055176,0.209791839122772,0.0187245961278677,-0.528422176837921,-0.838066399097443,0.135701194405556,-0.528510689735413,0.838006615638733,0.135726094245911,-0.977566719055176,0.209791839122772,0.0187245961278677,-0.977582693099976,-0.209718927741051,0.0187106244266033,-0.971460998058319,-0.216242983937263,-0.0974814966320992,-0.971455037593842,0.216272845864296,-0.0974736362695694,-0.526985168457031,0.830003201961517,-0.182705402374268,-0.52695631980896,-0.830028653144836,-0.182673215866089,
  402. -0.971460998058319,-0.216242983937263,-0.0974814966320992,-0.977582693099976,-0.209718927741051,0.0187106244266033,-0.977566719055176,0.209791839122772,0.0187245961278677,-0.971455037593842,0.216272845864296,-0.0974736362695694,0.966400265693665,0.255748301744461,0.0257554780691862,0.768758594989777,0.597455263137817,0.228160992264748,0.691844582557678,-0.695943892002106,0.192388206720352,0.972157657146454,-0.23317776620388,0.0231901258230209,0.972157657146454,-0.23317776620388,0.0231901258230209,0.691844582557678,-0.695943892002106,0.192388206720352,0.665685892105103,-0.686416685581207,-0.292736113071442,0.970472633838654,-0.225502669811249,-0.0856241062283516,0.970472633838654,-0.225502669811249,-0.0856241062283516,0.964574933052063,0.249048128724098,-0.0870073810219765,0.966400265693665,0.255748301744461,0.0257554780691862,0.972157657146454,-0.23317776620388,0.0231901258230209,0.969838559627533,-0.241782680153847,-0.0308926925063133,0.456039577722549,-0.833657026290894,-0.311518728733063,0.443171858787537,0.844525098800659,-0.300626009702683,0.970941841602325,0.237362995743752,-0.0305088609457016,0.968348562717438,-0.244331404566765,0.0510214865207672,0.398376554250717,-0.880432784557343,0.25716558098793,0.456039577722549,-0.833657026290894,-0.311518728733063,0.969838559627533,-0.241782680153847,-0.0308926925063133,0.970941841602325,0.237362995743752,-0.0305088609457016,0.443171858787537,0.844525098800659,-0.300626009702683,0.378151595592499,0.894128978252411,0.239863574504852,0.969005227088928,0.242001250386238,0.0496416911482811,0.968348562717438,-0.244331404566765,0.0510214865207672,0.969838559627533,-0.241782680153847,-0.0308926925063133,0.970941841602325,0.237362995743752,-0.0305088609457016,0.969005227088928,0.242001250386238,0.0496416911482811,0.636191427707672,-0.761516511440277,0.123907782137394,0.489879786968231,-0.856807768344879,0.160930007696152,0.458187788724899,-0.860102593898773,-0.224248751997948,0.782277882099152,-0.614634871482849,-0.101318463683128,0.857657909393311,-0.514079391956329,-0.0120540875941515,
  403. 0.845306217670441,-0.534278929233551,-0.00183149368967861,0.857657909393311,-0.514079391956329,-0.0120540875941515,0.782277882099152,-0.614634871482849,-0.101318463683128,0.790328025817871,0.603362798690796,-0.106466002762318,0.839154720306396,0.543801784515381,-0.00994324777275324,0.790328025817871,0.603362798690796,-0.106466002762318,0.465759843587875,0.853601276874542,-0.233307883143425,0.483804821968079,0.865440249443054,0.13017649948597,0.699645459651947,0.702810645103455,0.128659710288048,0.803732812404633,0.594816565513611,0.0143854506313801,0.839154720306396,0.543801784515381,-0.00994324777275324,0.699645459651947,0.702810645103455,0.128659710288048,0.483804821968079,0.865440249443054,0.13017649948597,0.489879786968231,-0.856807768344879,0.160930007696152,0.636191427707672,-0.761516511440277,0.123907782137394,0.845306217670441,-0.534278929233551,-0.00183149368967861,0.803732812404633,0.594816565513611,0.0143854506313801,0.699645459651947,0.702810645103455,0.128659710288048,0.636191427707672,-0.761516511440277,0.123907782137394,0.839154720306396,0.543801784515381,-0.00994324777275324,0.803732812404633,0.594816565513611,0.0143854506313801,0.845306217670441,-0.534278929233551,-0.00183149368967861,0.857657909393311,-0.514079391956329,-0.0120540875941515,-0.00970450695604086,0.000810293306130916,-0.999952554702759,-0.00970450881868601,0.000810293364338577,-0.999952614307404,-0.00615458330139518,-0.00069001002702862,-0.999980807304382,-0.00615424429997802,-0.000690153043251485,-0.999980807304382,0.00050864857621491,-0.99999988079071,9.25860513234511e-006,0.000508648518007249,-0.999999821186066,9.25860422285041e-006,-3.33595403390063e-006,-1,6.97922178005683e-006,3.06207698486105e-006,-1,7.00770533512696e-006,0.000508770579472184,0.99999988079071,9.25377207749989e-006,0.000508770521264523,0.99999988079071,9.25377298699459e-006,3.01639533972775e-006,1,7.00362761563156e-006,-3.32675722347631e-006,1,6.97540599503554e-006,0.378151595592499,0.894128978252411,0.239863574504852,0.398376554250717,-0.880432784557343,0.25716558098793,
  404. 0.968348562717438,-0.244331404566765,0.0510214865207672,0.378151595592499,0.894128978252411,0.239863574504852,0.968348562717438,-0.244331404566765,0.0510214865207672,0.969005227088928,0.242001250386238,0.0496416911482811,-0.00618042517453432,-0.00204751919955015,0.999978840351105,-0.00618042424321175,-0.00204751919955015,0.99997878074646,-0.000246346229687333,-0.00132491148542613,0.999999165534973,-0.000245626666583121,-0.00132482405751944,0.999999165534973,-0.000350248301401734,-0.999958336353302,-0.00911637675017118,-0.000350248301401734,-0.999958395957947,-0.00911637768149376,-0.000393648340832442,-0.999979019165039,-0.00646311696618795,-0.00039386935532093,-0.999979138374329,-0.00644960580393672,0.733999371528625,0.592426180839539,-0.332078665494919,0.768758594989777,0.597455263137817,0.228160992264748,0.966400265693665,0.255748301744461,0.0257554780691862,0.964574933052063,0.249048128724098,-0.0870073810219765,0.665685892105103,-0.686416685581207,-0.292736113071442,0.733999371528625,0.592426180839539,-0.332078665494919,0.964574933052063,0.249048128724098,-0.0870073810219765,0.970472633838654,-0.225502669811249,-0.0856241062283516,0,-1,-7.02583236034116e-007,0,-1,-7.02583292877534e-007,0,-1,-8.00981865722861e-007,0,-1,-8.02421254775254e-007,-8.94533669359987e-010,1,-7.02611657743546e-007,-8.94533613848836e-010,1,-7.02611600900127e-007,-2.69835744859392e-008,1,-8.02441888936301e-007,-2.66081734423551e-008,1,-8.01005285211431e-007,0.00108436320442706,0.00128245179075748,0.99999862909317,0.00108436320442706,0.00128245179075748,0.999998688697815,-0.000601958949118853,0.000730776111595333,0.999999523162842,-0.000601958541665226,0.000730776344425976,0.999999463558197,0.458187788724899,-0.860102593898773,-0.224248751997948,0.465759843587875,0.853601276874542,-0.233307883143425,0.790328025817871,0.603362798690796,-0.106466002762318,0.782277882099152,-0.614634871482849,-0.101318463683128,0.00622225971892476,-0.00121011561714113,0.999979913234711,0.00622302619740367,-0.00121026451233774,0.999979972839355,0.0132046425715089,-0.0025662889238447,0.999909520149231,
  405. 0.013204644434154,-0.00256628869101405,0.999909520149231,-0.483993589878082,0.848653733730316,-0.213394224643707,-0.483376562595367,-0.848970115184784,-0.213534399867058,-0.970045924186707,-0.239875957369804,-0.0383472889661789,-0.969821929931641,0.240718185901642,-0.0387331806123257,-0.483376562595367,-0.848970115184784,-0.213534399867058,-0.481177091598511,-0.841297447681427,0.246348008513451,-0.96461009979248,-0.244511425495148,0.098699264228344,-0.970045924186707,-0.239875957369804,-0.0383472889661789,-0.480989754199982,0.841426908969879,0.246271267533302,-0.483993589878082,0.848653733730316,-0.213394224643707,-0.969821929931641,0.240718185901642,-0.0387331806123257,-0.964593768119812,0.244631916284561,0.0985600203275681,-0.964593768119812,0.244631916284561,0.0985600203275681,-0.96461009979248,-0.244511425495148,0.098699264228344,-0.481177091598511,-0.841297447681427,0.246348008513451,-0.480989754199982,0.841426908969879,0.246271267533302,-0.000390759756555781,0.99997889995575,-0.00650111865252256,-0.000390532659366727,0.99997878074646,-0.0065147653222084,-0.000346693472238258,0.999958097934723,-0.00914919283241034,-0.000346693472238258,0.999958038330078,-0.00914919283241034,0.000128729836433195,0.00115251645911485,-0.999999284744263,0.000129514955915511,0.00115259236190468,-0.999999284744263,0.00623472081497312,0.00174309720750898,-0.999978959560394,0.0062347212806344,0.0017430973239243,-0.999978959560394,-0.662562906742096,-0.718150734901428,0.212767153978348,-0.662393271923065,0.718287527561188,0.212833523750305,-0.973090350627899,0.228042677044868,0.0330408774316311,-0.97307163476944,-0.228112742304802,0.0331078507006168,-0.658575654029846,-0.714043915271759,-0.237527370452881,-0.662562906742096,-0.718150734901428,0.212767153978348,-0.97307163476944,-0.228112742304802,0.0331078507006168,-0.970198750495911,-0.230137184262276,-0.0758377984166145,-0.970191180706024,0.230156883597374,-0.0758748129010201,-0.973090350627899,0.228042677044868,0.0330408774316311,-0.662393271923065,0.718287527561188,0.212833523750305,
  406. -0.658510088920593,0.714052259922028,-0.237684041261673,-0.970198750495911,-0.230137184262276,-0.0758377984166145,-0.970191180706024,0.230156883597374,-0.0758748129010201,-0.658510088920593,0.714052259922028,-0.237684041261673,-0.658575654029846,-0.714043915271759,-0.237527370452881,-0.000207081640837714,-0.00059544580290094,-0.999999761581421,-0.00020708235388156,-0.000595445977523923,-0.999999821186066,-0.00189363025128841,-0.00109121750574559,-0.999997556209564,-0.00189363025128841,-0.00109121738933027,-0.999997556209564,-0.524148106575012,-0.843668043613434,-0.116159468889236,-0.522387623786926,-0.840520143508911,0.143655478954315,-0.974038004875183,-0.214821204543114,0.071426548063755,-0.977104902267456,-0.211487635970116,-0.023215901106596,-0.522573888301849,0.840395748615265,0.143706113100052,-0.524286925792694,0.843574106693268,-0.11621468514204,-0.977115154266357,0.211440920829773,-0.023210858926177,-0.9740349650383,0.214830487966537,0.0714403912425041,-0.522387623786926,-0.840520143508911,0.143655478954315,-0.522573888301849,0.840395748615265,0.143706113100052,-0.9740349650383,0.214830487966537,0.0714403912425041,-0.974038004875183,-0.214821204543114,0.071426548063755,-0.977104902267456,-0.211487635970116,-0.023215901106596,-0.977115154266357,0.211440920829773,-0.023210858926177,-0.524286925792694,0.843574106693268,-0.11621468514204,-0.524148106575012,-0.843668043613434,-0.116159468889236,-0.977104902267456,-0.211487635970116,-0.023215901106596,-0.974038004875183,-0.214821204543114,0.071426548063755,-0.9740349650383,0.214830487966537,0.0714403912425041,-0.977115154266357,0.211440920829773,-0.023210858926177,-0.970191180706024,0.230156883597374,-0.0758748129010201,-0.970198750495911,-0.230137184262276,-0.0758377984166145,-0.97307163476944,-0.228112742304802,0.0331078507006168,-0.973090350627899,0.228042677044868,0.0330408774316311,-0.964593768119812,0.244631916284561,0.0985600203275681,-0.969821929931641,0.240718185901642,-0.0387331806123257,-0.970045924186707,-0.239875957369804,-0.0383472889661789,-0.96461009979248,-0.244511425495148,0.098699264228344,
  407. 0.00079308426938951,-0.000155618530698121,0.999999642372131,0.000793084327597171,-0.000155618530698121,0.999999582767487,0.00622302619740367,-0.00121026451233774,0.999979972839355,0.00622225971892476,-0.00121011561714113,0.999979913234711,3.06207698486105e-006,-1,7.00770533512696e-006,-3.33595403390063e-006,-1,6.97922178005683e-006,-0.000395454961108044,-0.99999988079071,5.23348535352852e-006,-0.000395454961108044,-0.99999988079071,5.23348489878117e-006,-0.00615424429997802,-0.000690153043251485,-0.999980807304382,-0.00615458330139518,-0.00069001002702862,-0.999980807304382,-0.00339356204494834,-0.00185686547774822,-0.999992489814758,-0.00339356251060963,-0.00185686536133289,-0.999992489814758,-3.32675722347631e-006,1,6.97540599503554e-006,3.01639533972775e-006,1,7.00362761563156e-006,-0.000395550625398755,0.99999988079071,5.23036669619614e-006,-0.000395550625398755,0.999999940395355,5.23036715094349e-006,-0.000447907921625301,0.999995291233063,-0.00306659284979105,-0.000447907921625301,0.999995231628418,-0.00306659284979105,-0.000390532659366727,0.99997878074646,-0.0065147653222084,-0.000390759756555781,0.99997889995575,-0.00650111865252256,-0.000245626666583121,-0.00132482405751944,0.999999165534973,-0.000246346229687333,-0.00132491148542613,0.999999165534973,0.00782747752964497,-0.000341667531756684,0.999969303607941,0.00782747752964497,-0.000341667531756684,0.999969303607941,-0.00039386935532093,-0.999979138374329,-0.00644960580393672,-0.000393648340832442,-0.999979019165039,-0.00646311696618795,-0.000450436637038365,-0.999995350837708,-0.00299103907309473,-0.000450436695246026,-0.999995470046997,-0.00299103953875601,-0.00782826635986567,0.000382839061785489,-0.999969303607941,-0.00782826635986567,0.000382839032681659,-0.999969303607941,0.000129514955915511,0.00115259236190468,-0.999999284744263,0.000128729836433195,0.00115251645911485,-0.999999284744263,-2.66081734423551e-008,1,-8.01005285211431e-007,-2.69835744859392e-008,1,-8.02441888936301e-007,-4.2704581204589e-008,0.999999940395355,-8.62598540152248e-007,
  408. -4.2704581204589e-008,1,-8.6259848330883e-007,-0.000601958541665226,0.000730776344425976,0.999999463558197,-0.000601958949118853,0.000730776111595333,0.999999523162842,-0.00163241906557232,0.000393662601709366,0.999998569488525,-0.00163241906557232,0.000393662572605535,0.999998569488525,0,-1,-8.02421254775254e-007,0,-1,-8.00981865722861e-007,0,-1,-8.62581885030522e-007,0,-1,-8.62581771343685e-007,0.00082352792378515,-0.000292490760330111,-0.999999642372131,0.000823527865577489,-0.00029249073122628,-0.999999642372131,-0.00020708235388156,-0.000595445977523923,-0.999999821186066,-0.000207081640837714,-0.00059544580290094,-0.999999761581421,-0.96766984462738,-0.247366279363632,-0.0492443107068539,-0.741494238376617,-0.638444662094116,-0.206336498260498,-0.713314116001129,-0.633180856704712,0.300441443920136,-0.969930589199066,-0.235662385821342,0.0608099699020386,-0.977879881858826,0.201211541891098,0.0571405030786991,-0.615519225597382,0.746863663196564,0.251656055450439,-0.634025156497955,0.755032300949097,-0.167148008942604,-0.975380182266235,0.215474352240562,-0.0469484217464924,-0.975380182266235,0.215474352240562,-0.0469484217464924,-0.634025156497955,0.755032300949097,-0.167148008942604,-0.741494238376617,-0.638444662094116,-0.206336498260498,-0.96766984462738,-0.247366279363632,-0.0492443107068539,-0.977879881858826,0.201211541891098,0.0571405030786991,-0.975380182266235,0.215474352240562,-0.0469484217464924,-0.96766984462738,-0.247366279363632,-0.0492443107068539,-0.969930589199066,-0.235662385821342,0.0608099699020386,0,-1,-3.84556074095599e-007,0,-1,-3.84556074095599e-007,0,-0.999999940395355,-1.78674952167057e-007,0,-1,-1.7763819926131e-007,4.73554306879009e-009,1,7.69141365708492e-007,4.73554262470088e-009,0.999999940395355,7.69141308865073e-007,2.86386967474073e-008,1,7.12429823579441e-007,2.85197359062295e-008,1,7.12712051154085e-007,-0.00578264705836773,0.00107994501013309,-0.999982714653015,-0.00578264705836773,0.00107994512654841,-0.999982714653015,-0.00203131302259862,0.000644707179162651,-0.999997794628143,
  409. -0.00203130510635674,0.000644706189632416,-0.999997735023499,-0.713314116001129,-0.633180856704712,0.300441443920136,-0.615519225597382,0.746863663196564,0.251656055450439,-0.977879881858826,0.201211541891098,0.0571405030786991,-0.969930589199066,-0.235662385821342,0.0608099699020386,0.00232632760889828,-0.000558097497560084,0.999997079372406,0.00232633505947888,-0.000558098196052015,0.999997138977051,0.00608416879549623,-0.000944949220865965,0.999981045722961,0.00608416879549623,-0.000944949220865965,0.999981045722961,0.524575710296631,-0.834508895874023,0.168568193912506,0.523817300796509,-0.835074305534363,-0.168125659227371,0.975609183311462,-0.210113152861595,-0.0635548308491707,0.975523591041565,-0.210529655218124,0.0634916350245476,0.524001181125641,0.834936201572418,-0.168238803744316,0.524697124958038,0.834418952465057,0.168635383248329,0.975529789924622,0.210501551628113,0.0634882599115372,0.975600302219391,0.210151717066765,-0.0635628402233124,0.523817300796509,-0.835074305534363,-0.168125659227371,0.524001181125641,0.834936201572418,-0.168238803744316,0.975600302219391,0.210151717066765,-0.0635628402233124,0.975609183311462,-0.210113152861595,-0.0635548308491707,0.975523591041565,-0.210529655218124,0.0634916350245476,0.975529789924622,0.210501551628113,0.0634882599115372,0.524697124958038,0.834418952465057,0.168635383248329,0.524575710296631,-0.834508895874023,0.168568193912506,0.975523591041565,-0.210529655218124,0.0634916350245476,0.975609183311462,-0.210113152861595,-0.0635548308491707,0.975600302219391,0.210151717066765,-0.0635628402233124,0.975529789924622,0.210501551628113,0.0634882599115372,2.85197359062295e-008,1,7.12712051154085e-007,2.86386967474073e-008,1,7.12429823579441e-007,4.91596168217256e-008,1,6.63742810047552e-007,4.9159613269012e-008,1,6.63742810047552e-007,-0.00203130510635674,0.000644706189632416,-0.999997735023499,-0.00203131302259862,0.000644707179162651,-0.999997794628143,0.00119881262071431,0.000269936281256378,-0.999999225139618,0.00119881273712963,0.000269936310360208,-0.999999284744263,
  410. 0,-1,-1.7763819926131e-007,0,-0.999999940395355,-1.78674952167057e-007,0,-1,0,0,-1,0,-0.000909382477402687,-0.000224992953008041,0.999999523162842,-0.000909382535610348,-0.000224992982111871,0.999999523162842,0.00232633505947888,-0.000558098196052015,0.999997138977051,0.00232632760889828,-0.000558097497560084,0.999997079372406,-0.929630160331726,-0.359118849039078,-0.0825915485620499,-0.585386872291565,-0.781954884529114,-0.214169651269913,-0.56055074930191,-0.772776484489441,0.297656387090683,-0.947655737400055,-0.315564036369324,0.0486615523695946,-0.959903240203857,0.275501191616058,0.0518170297145844,-0.453196942806244,0.856599509716034,0.246677085757256,-0.465514332056046,0.873078286647797,-0.145019575953484,-0.954839110374451,0.287767142057419,-0.0739752575755119,-0.954839110374451,0.287767142057419,-0.0739752575755119,-0.465514332056046,0.873078286647797,-0.145019575953484,-0.585386872291565,-0.781954884529114,-0.214169651269913,-0.929630160331726,-0.359118849039078,-0.0825915485620499,-0.959903240203857,0.275501191616058,0.0518170297145844,-0.954839110374451,0.287767142057419,-0.0739752575755119,-0.929630160331726,-0.359118849039078,-0.0825915485620499,-0.947655737400055,-0.315564036369324,0.0486615523695946,0.00106884655542672,-0.999999403953552,5.95469828112982e-006,0.00106884667184204,-0.999999463558197,5.95469828112982e-006,-3.1893114282866e-006,-1,-1.06164752651239e-005,-1.13898959170911e-005,-1,-1.07432388176676e-005,0.00106880196835846,0.999999403953552,6.45130330667598e-006,0.00106880185194314,0.999999463558197,6.45130285192863e-006,-1.1349012311257e-005,1,-1.02663470897824e-005,-3.24020993502927e-006,1,-1.01408477348741e-005,0.00959236267954111,0.00101517210714519,-0.999953508377075,0.00959236361086369,0.00101517222356051,-0.999953508377075,0.0107864178717136,0.000705423764884472,-0.999941647052765,0.0107862176373601,0.000705475511495024,-0.99994158744812,-0.56055074930191,-0.772776484489441,0.297656387090683,-0.453196942806244,0.856599509716034,0.246677085757256,-0.959903240203857,0.275501191616058,0.0518170297145844,
  411. -0.947655737400055,-0.315564036369324,0.0486615523695946,-0.0119589455425739,-0.000520249886903912,0.99992835521698,-0.0119590293616056,-0.000520248024258763,0.999928414821625,-0.00199375138618052,-0.00077050575055182,0.999997675418854,-0.00199375138618052,-0.000770505692344159,0.999997735023499,0.519810378551483,-0.838681936264038,0.162510961294174,0.523941218852997,-0.842251181602478,-0.126880183815956,0.977670967578888,-0.208888828754425,-0.0229097828269005,0.973480582237244,-0.212226614356041,0.0854132249951363,0.52412611246109,0.842127740383148,-0.1269351541996,0.519943356513977,0.838587701320648,0.16257181763649,0.97348427772522,0.212209939956665,0.0854126587510109,0.977662980556488,0.208924889564514,-0.0229233019053936,0.523941218852997,-0.842251181602478,-0.126880183815956,0.52412611246109,0.842127740383148,-0.1269351541996,0.977662980556488,0.208924889564514,-0.0229233019053936,0.977670967578888,-0.208888828754425,-0.0229097828269005,0.973480582237244,-0.212226614356041,0.0854132249951363,0.97348427772522,0.212209939956665,0.0854126587510109,0.519943356513977,0.838587701320648,0.16257181763649,0.519810378551483,-0.838681936264038,0.162510961294174,0.973480582237244,-0.212226614356041,0.0854132249951363,0.977670967578888,-0.208888828754425,-0.0229097828269005,0.977662980556488,0.208924889564514,-0.0229233019053936,0.97348427772522,0.212209939956665,0.0854126587510109,-3.24020993502927e-006,1,-1.01408477348741e-005,-1.1349012311257e-005,1,-1.02663470897824e-005,-0.00191938353236765,0.999998152256012,-3.97972435166594e-005,-0.001919383299537,0.999998092651367,-3.97972398786806e-005,0.0107862176373601,0.000705475511495024,-0.99994158744812,0.0107864178717136,0.000705423764884472,-0.999941647052765,0.0129254292696714,0.000150531443068758,-0.99991649389267,0.0129254292696714,0.000150531457620673,-0.99991649389267,-1.13898959170911e-005,-1,-1.07432388176676e-005,-3.1893114282866e-006,-1,-1.06164752651239e-005,-0.00191953149624169,-0.999998152256012,-4.02386249334086e-005,-0.00191953137982637,-0.999998211860657,-4.02386249334086e-005,
  412. -0.0298819225281477,-6.99452430126257e-005,0.999553382396698,-0.0298819225281477,-6.99452430126257e-005,0.999553442001343,-0.0119590293616056,-0.000520248024258763,0.999928414821625,-0.0119589455425739,-0.000520249886903912,0.99992835521698,-0.92925500869751,-0.360331684350967,-0.081523708999157,-0.612157464027405,-0.753145813941956,-0.240903630852699,-0.570752620697021,-0.74340945482254,0.348688900470734,-0.946435153484344,-0.315090775489807,0.0705560073256493,-0.957797467708588,0.277660250663757,0.0743548795580864,-0.467418223619461,0.834257543087006,0.292462974786758,-0.490962564945221,0.855797052383423,-0.162994295358658,-0.954351544380188,0.289970934391022,-0.0716235414147377,-0.954351544380188,0.289970934391022,-0.0716235414147377,-0.490962564945221,0.855797052383423,-0.162994295358658,-0.612157464027405,-0.753145813941956,-0.240903630852699,-0.92925500869751,-0.360331684350967,-0.081523708999157,-0.957797467708588,0.277660250663757,0.0743548795580864,-0.954351544380188,0.289970934391022,-0.0716235414147377,-0.92925500869751,-0.360331684350967,-0.081523708999157,-0.946435153484344,-0.315090775489807,0.0705560073256493,-0.004341010004282,-0.999990582466125,-2.39167638937943e-005,-0.004341010004282,-0.999990522861481,-2.39167620748049e-005,8.69936338858679e-005,-1,8.13786464277655e-005,-8.82794702192768e-005,-0.999999940395355,7.72107669035904e-005,0.00434105284512043,0.999990582466125,2.55865306826308e-005,0.00434105331078172,0.999990582466125,2.55865343206096e-005,8.83202883414924e-005,1,-7.61274714022875e-005,-8.71754818945192e-005,1,-8.03248258307576e-005,-0.000851862307172269,0.0010124632390216,-0.999999105930328,-0.000851862307172269,0.0010124632390216,-0.999999165534973,-0.000854014419019222,0.000705983664374799,-0.999999403953552,-0.000854008307214826,0.000706843682564795,-0.999999403953552,-0.570752620697021,-0.74340945482254,0.348688900470734,-0.467418223619461,0.834257543087006,0.292462974786758,-0.957797467708588,0.277660250663757,0.0743548795580864,-0.946435153484344,-0.315090775489807,0.0705560073256493,
  413. 0.000900472048670053,-0.000589565315749496,0.999999403953552,0.000900476588867605,-0.000588815659284592,0.999999344348907,0.000898801197763532,-0.000854972749948502,0.999999225139618,0.000898801197763532,-0.000854972808156163,0.999999225139618,0.525070548057556,-0.828140616416931,0.196173697710037,0.527131259441376,-0.837359130382538,-0.144783496856689,0.9780193567276,-0.207492366433144,-0.0206160973757505,0.970908582210541,-0.214487642049789,0.106449753046036,0.527129709720612,0.837350070476532,-0.144841715693474,0.525009155273438,0.828175365924835,0.19619132578373,0.970906376838684,0.21449987590313,0.106445282697678,0.978010892868042,0.207533434033394,-0.0206074602901936,0.527131259441376,-0.837359130382538,-0.144783496856689,0.527129709720612,0.837350070476532,-0.144841715693474,0.978010892868042,0.207533434033394,-0.0206074602901936,0.9780193567276,-0.207492366433144,-0.0206160973757505,0.970908582210541,-0.214487642049789,0.106449753046036,0.970906376838684,0.21449987590313,0.106445282697678,0.525009155273438,0.828175365924835,0.19619132578373,0.525070548057556,-0.828140616416931,0.196173697710037,0.970908582210541,-0.214487642049789,0.106449753046036,0.9780193567276,-0.207492366433144,-0.0206160973757505,0.978010892868042,0.207533434033394,-0.0206074602901936,0.970906376838684,0.21449987590313,0.106445282697678,-0.967828989028931,0.24949423968792,-0.0325532518327236,-0.747655510902405,0.620550632476807,-0.236491411924362,-0.670919239521027,-0.713770627975464,-0.200994998216629,-0.973951578140259,-0.224879592657089,-0.0291119813919067,-0.973951578140259,-0.224879592657089,-0.0291119813919067,-0.670919239521027,-0.713770627975464,-0.200994998216629,-0.645547986030579,-0.694099485874176,0.318580985069275,-0.970770299434662,-0.217082098126411,0.102373227477074,-0.970770299434662,-0.217082098126411,0.102373227477074,-0.964468598365784,0.242632076144218,0.104545548558235,-0.967828989028931,0.24949423968792,-0.0325532518327236,-0.973951578140259,-0.224879592657089,-0.0291119813919067,-0.967905402183533,-0.25060248374939,0.0189077612012625,
  414. -0.487129122018814,-0.824494183063507,0.28794863820076,-0.473018288612366,0.836207568645477,0.277507930994034,-0.968988656997681,0.246406346559525,0.0185702797025442,-0.966441631317139,-0.252227544784546,-0.0487018451094627,-0.415791869163513,-0.877277493476868,-0.239794462919235,-0.487129122018814,-0.824494183063507,0.28794863820076,-0.967905402183533,-0.25060248374939,0.0189077612012625,-0.968988656997681,0.246406346559525,0.0185702797025442,-0.473018288612366,0.836207568645477,0.277507930994034,-0.393850743770599,0.891631960868835,-0.223325029015541,-0.96696799993515,0.250407487154007,-0.0476341880857944,-0.966441631317139,-0.252227544784546,-0.0487018451094627,-0.967905402183533,-0.25060248374939,0.0189077612012625,-0.968988656997681,0.246406346559525,0.0185702797025442,-0.96696799993515,0.250407487154007,-0.0476341880857944,-0.639515280723572,-0.759431779384613,-0.119514547288418,-0.486835688352585,-0.860064506530762,-0.152578800916672,-0.451065093278885,-0.859742522239685,0.239547744393349,-0.782056868076324,-0.61109447479248,0.122272193431854,-0.857652187347412,-0.513426423072815,0.0287407469004393,-0.845748901367188,-0.533297061920166,0.0174097735434771,-0.857652187347412,-0.513426423072815,0.0287407469004393,-0.782056868076324,-0.61109447479248,0.122272193431854,-0.789858877658844,0.599822580814362,0.127811640501022,-0.839119493961334,0.543304681777954,0.0264285616576672,-0.789858877658844,0.599822580814362,0.127811640501022,-0.458289563655853,0.853203237056732,0.249027863144875,-0.48307403922081,0.866713106632233,-0.124289482831955,-0.703517973423004,0.699942767620087,-0.123055040836334,-0.804656147956848,0.593740880489349,0.000524969364050776,-0.839119493961334,0.543304681777954,0.0264285616576672,-0.703517973423004,0.699942767620087,-0.123055040836334,-0.48307403922081,0.866713106632233,-0.124289482831955,-0.486835688352585,-0.860064506530762,-0.152578800916672,-0.639515280723572,-0.759431779384613,-0.119514547288418,-0.845748901367188,-0.533297061920166,0.0174097735434771,-0.804656147956848,0.593740880489349,0.000524969364050776,
  415. -0.703517973423004,0.699942767620087,-0.123055040836334,-0.639515280723572,-0.759431779384613,-0.119514547288418,-0.839119493961334,0.543304681777954,0.0264285616576672,-0.804656147956848,0.593740880489349,0.000524969364050776,-0.845748901367188,-0.533297061920166,0.0174097735434771,-0.857652187347412,-0.513426423072815,0.0287407469004393,0.00215445784851909,0.000944754632655531,0.999997198581696,0.00215445761568844,0.000944754632655531,0.999997198581696,-0.00209408858790994,-0.000831084267701954,0.999997437000275,-0.00209450838156044,-0.00083125993842259,0.999997437000275,-0.000508557888679206,-0.99999988079071,-1.12555944724591e-005,-0.000508557946886867,-0.99999988079071,-1.12555953819538e-005,2.76910054708424e-006,-1,-5.97177267991356e-006,-2.35392622016661e-006,-1,-6.024712092767e-006,-0.000508679600898176,0.99999988079071,-1.12496809379081e-005,-0.000508679600898176,0.99999988079071,-1.12496809379081e-005,-2.30900559472502e-006,1,-6.17400837654714e-006,2.75921411230229e-006,1,-6.12320673099021e-006,-0.393850743770599,0.891631960868835,-0.223325029015541,-0.415791869163513,-0.877277493476868,-0.239794462919235,-0.966441631317139,-0.252227544784546,-0.0487018451094627,-0.393850743770599,0.891631960868835,-0.223325029015541,-0.966441631317139,-0.252227544784546,-0.0487018451094627,-0.96696799993515,0.250407487154007,-0.0476341880857944,0.00521244667470455,-0.00174125202465802,-0.999984920024872,0.00521244574338198,-0.00174125202465802,-0.999984920024872,0.000208193756407127,-0.001115862862207,-0.999999344348907,0.000206949567655101,-0.00111570733133703,-0.999999344348907,0.00035023529198952,-0.999941527843475,0.0108108688145876,0.00035023529198952,-0.999941468238831,0.0108108688145876,0.000393614231143147,-0.999970555305481,0.0076670260168612,0.000393892551073805,-0.999970734119415,0.00764685496687889,-0.712332904338837,0.603581547737122,0.358149796724319,-0.747655510902405,0.620550632476807,-0.236491411924362,-0.967828989028931,0.24949423968792,-0.0325532518327236,-0.964468598365784,0.242632076144218,0.104545548558235,
  416. -0.645547986030579,-0.694099485874176,0.318580985069275,-0.712332904338837,0.603581547737122,0.358149796724319,-0.964468598365784,0.242632076144218,0.104545548558235,-0.970770299434662,-0.217082098126411,0.102373227477074,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,1.26812320644376e-008,1,3.69706555147786e-007,1.26812320644376e-008,1,3.69706583569496e-007,3.51032234391369e-008,1,4.22257357968192e-007,3.47635484843067e-008,1,4.21461265887046e-007,-0.0198779162019491,0.00120437634177506,-0.999801635742188,-0.0198779162019491,0.00120437634177506,-0.999801695346832,-0.0182759743183851,0.000667206943035126,-0.99983274936676,-0.0182760898023844,0.000667245360091329,-0.999832808971405,-0.451065093278885,-0.859742522239685,0.239547744393349,-0.458289563655853,0.853203237056732,0.249027863144875,-0.789858877658844,0.599822580814362,0.127811640501022,-0.782056868076324,-0.61109447479248,0.122272193431854,0.00201252102851868,-0.00144348642788827,-0.999996900558472,0.00201090285554528,-0.00144379888661206,-0.999996960163116,-0.00634414982050657,-0.00305600557476282,-0.999975144863129,-0.00634415028616786,-0.00305600557476282,-0.999975204467773,0.489510327577591,0.850009262561798,0.194586649537086,0.488923043012619,-0.850268423557281,0.194930344820023,0.968290090560913,-0.246952533721924,0.037799309939146,0.968019545078278,0.24794802069664,0.0382100380957127,0.488923043012619,-0.850268423557281,0.194930344820023,0.491109192371368,-0.843888461589813,-0.216018706560135,0.964976787567139,-0.251208335161209,-0.0755920931696892,0.968290090560913,-0.246952533721924,0.037799309939146,0.490917950868607,0.844001293182373,-0.216012462973595,0.489510327577591,0.850009262561798,0.194586649537086,0.968019545078278,0.24794802069664,0.0382100380957127,0.964986622333527,0.251213669776917,-0.0754478350281715,0.964986622333527,0.251213669776917,-0.0754478350281715,0.964976787567139,-0.251208335161209,-0.0755920931696892,0.491109192371368,-0.843888461589813,-0.216018706560135,0.490917950868607,0.844001293182373,-0.216012462973595,0.000390784174669534,0.999970197677612,0.00770785007625818,
  417. 0.000390497880289331,0.999970078468323,0.00772824278101325,0.000346687535056844,0.999941051006317,0.0108492719009519,0.000346687593264505,0.999941170215607,0.0108492728322744,-0.000108796099084429,0.000946490908972919,0.999999523162842,-0.00010945912799798,0.000946554529946297,0.999999463558197,-0.00525697181001306,0.00143946066964418,0.999985158443451,-0.00525697227567434,0.0014394607860595,0.999985218048096,0.648922741413116,-0.726067662239075,-0.227431640028954,0.648738026618958,0.726228177547455,-0.227445885539055,0.974473416805267,0.220821842551231,-0.0404861383140087,0.97445684671402,-0.220883265137672,-0.0405512526631355,0.644401133060455,-0.720088481903076,0.257332235574722,0.648922741413116,-0.726067662239075,-0.227431640028954,0.97445684671402,-0.220883265137672,-0.0405512526631355,0.97045886516571,-0.223407313227654,0.0910966619849205,0.970452547073364,0.22342175245285,0.0911296010017395,0.974473416805267,0.220821842551231,-0.0404861383140087,0.648738026618958,0.726228177547455,-0.227445885539055,0.644349038600922,0.720054924488068,0.257556289434433,0.97045886516571,-0.223407313227654,0.0910966619849205,0.970452547073364,0.22342175245285,0.0911296010017395,0.644349038600922,0.720054924488068,0.257556289434433,0.644401133060455,-0.720088481903076,0.257332235574722,0.0190449189394712,-0.000548630254343152,0.999818444252014,0.019044941291213,-0.000548637064639479,0.999818503856659,0.0206472463905811,-0.00102442223578691,0.99978631734848,0.0206472501158714,-0.00102442235220224,0.999786376953125,0.525878131389618,-0.843304634094238,0.110858038067818,0.518840551376343,-0.839840352535248,-0.15960231423378,0.972408592700958,-0.213696613907814,-0.0935700684785843,0.977643430233002,-0.210181191563606,0.00609779031947255,0.518928468227386,0.839779794216156,-0.15963439643383,0.525906622409821,0.843280613422394,0.110906459391117,0.977646470069885,0.210167303681374,0.00608210824429989,0.972394526004791,0.213754951953888,-0.0935816913843155,0.518840551376343,-0.839840352535248,-0.15960231423378,0.518928468227386,0.839779794216156,-0.15963439643383,
  418. 0.972394526004791,0.213754951953888,-0.0935816913843155,0.972408592700958,-0.213696613907814,-0.0935700684785843,0.977643430233002,-0.210181191563606,0.00609779031947255,0.977646470069885,0.210167303681374,0.00608210824429989,0.525906622409821,0.843280613422394,0.110906459391117,0.525878131389618,-0.843304634094238,0.110858038067818,0.977643430233002,-0.210181191563606,0.00609779031947255,0.972408592700958,-0.213696613907814,-0.0935700684785843,0.972394526004791,0.213754951953888,-0.0935816913843155,0.977646470069885,0.210167303681374,0.00608210824429989,0.970452547073364,0.22342175245285,0.0911296010017395,0.97045886516571,-0.223407313227654,0.0910966619849205,0.97445684671402,-0.220883265137672,-0.0405512526631355,0.974473416805267,0.220821842551231,-0.0404861383140087,0.964986622333527,0.251213669776917,-0.0754478350281715,0.968019545078278,0.24794802069664,0.0382100380957127,0.968290090560913,-0.246952533721924,0.037799309939146,0.964976787567139,-0.251208335161209,-0.0755920931696892,0.00850929692387581,-0.000189765269169584,-0.999963879585266,0.00850929599255323,-0.000189765240065753,-0.999963760375977,0.00201090285554528,-0.00144379888661206,-0.999996960163116,0.00201252102851868,-0.00144348642788827,-0.999996900558472,-2.35392622016661e-006,-1,-6.024712092767e-006,2.76910054708424e-006,-1,-5.97177267991356e-006,0.000395483191823587,-0.999999940395355,-1.91364279089612e-006,0.000395483191823587,-0.99999988079071,-1.91364233614877e-006,-0.00209450838156044,-0.00083125993842259,0.999997437000275,-0.00209408858790994,-0.000831084267701954,0.999997437000275,-0.00539835682138801,-0.00221222755499184,0.999983012676239,-0.00539835682138801,-0.00221222778782249,0.999983012676239,2.75921411230229e-006,1,-6.12320673099021e-006,-2.30900559472502e-006,1,-6.17400837654714e-006,0.000395579118048772,0.999999940395355,-2.18572199628397e-006,0.000395579118048772,0.99999988079071,-2.18572199628397e-006,0.000447903439635411,0.999993324279785,0.00363817531615496,0.000447903468739241,0.999993324279785,0.00363817531615496,0.000390497880289331,0.999970078468323,0.00772824278101325,
  419. 0.000390784174669534,0.999970197677612,0.00770785007625818,0.000206949567655101,-0.00111570733133703,-0.999999344348907,0.000208193756407127,-0.001115862862207,-0.999999344348907,-0.00660124840214849,-0.000264831789536402,-0.999978125095367,-0.00660124840214849,-0.000264831789536402,-0.999978125095367,0.000393892551073805,-0.999970734119415,0.00764685496687889,0.000393614231143147,-0.999970555305481,0.0076670260168612,0.000450439925771207,-0.999993622303009,0.00354809919372201,0.000450439954875037,-0.999993622303009,0.00354809919372201,0.00660003675147891,0.000304041197523475,0.999978125095367,0.00660003675147891,0.000304041226627305,0.999978125095367,-0.00010945912799798,0.000946554529946297,0.999999463558197,-0.000108796099084429,0.000946490908972919,0.999999523162842,3.47635484843067e-008,1,4.21461265887046e-007,3.51032234391369e-008,1,4.22257357968192e-007,4.8600490742956e-008,0.999999940395355,4.53891146889873e-007,4.8600490742956e-008,0.999999940395355,4.53891175311583e-007,-0.0182760898023844,0.000667245360091329,-0.999832808971405,-0.0182759743183851,0.000667206943035126,-0.99983274936676,-0.0172971412539482,0.000338988320436329,-0.999850392341614,-0.0172971393913031,0.000338988320436329,-0.999850273132324,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0.0180657617747784,-0.000257888721534982,0.999836802482605,0.0180657599121332,-0.000257888721534982,0.99983674287796,0.019044941291213,-0.000548637064639479,0.999818503856659,0.0190449189394712,-0.000548630254343152,0.999818444252014,-8.71754818945192e-005,1,-8.03248258307576e-005,8.83202883414924e-005,1,-7.61274714022875e-005,-0.00778582878410816,0.999969601631165,-0.000264452333794907,-0.00778582924976945,0.999969601631165,-0.000264452333794907,-0.000854008307214826,0.000706843682564795,-0.999999403953552,-0.000854014419019222,0.000705983664374799,-0.999999403953552,-0.000857865379657596,0.000157493850565515,-0.999999582767487,-0.000857865496072918,0.000157493879669346,-0.999999642372131,-8.82794702192768e-005,-0.999999940395355,7.72107669035904e-005,8.69936338858679e-005,-1,8.13786464277655e-005,
  420. 0.00778582040220499,-0.999969720840454,0.000264448637608439,0.0077858199365437,-0.999969601631165,0.000264448666712269,0.000903475098311901,-0.000112494890345261,0.999999523162842,0.000903475098311901,-0.000112494890345261,0.999999642372131,0.000900476588867605,-0.000588815659284592,0.999999344348907,0.000900472048670053,-0.000589565315749496,0.999999403953552,-0.999312818050385,0.0370135493576527,-0.00198589987121522,-0.999320447444916,0.0368086993694305,-0.00197197659872472,-0.995616912841797,0.0933439359068871,-0.00581538397818804,-0.995617032051086,0.0933439359068871,-0.00581538444384933,-0.0108382171019912,-0.9999138712883,0.00741131603717804,-0.0109119853004813,-0.999912679195404,0.00744736241176724,-0.0275789480656385,-0.999497950077057,0.0155914230272174,-0.0275789517909288,-0.999498009681702,0.0155914230272174,0.999305069446564,-0.036576259881258,0.00718354200944304,0.999280691146851,-0.0372404381632805,0.00715955207124352,0.995620727539063,-0.0933441817760468,0.00511954165995121,0.995620667934418,-0.0933441668748856,0.00511954119428992,0.0275787599384785,0.999491214752197,-0.0160191878676414,0.0107711246237159,0.999933242797852,-0.00417713541537523,0.010979026556015,0.999930322170258,-0.00432360731065273,0.0275787599384785,0.999491214752197,-0.0160191860049963,0,-0.999997735023499,0.00211499258875847,0,-0.999997735023499,0.00211499258875847,-0.0109119853004813,-0.999912679195404,0.00744736241176724,-0.0108382171019912,-0.9999138712883,0.00741131603717804,-0.999999821186066,0,0.000529454264324158,-0.99999988079071,0,0.000529454322531819,-0.999320447444916,0.0368086993694305,-0.00197197659872472,-0.999312818050385,0.0370135493576527,-0.00198589987121522,0.010979026556015,0.999930322170258,-0.00432360731065273,0.0107711246237159,0.999933242797852,-0.00417713541537523,0,0.999994158744812,0.00341105181723833,0,0.999994218349457,0.00341105158440769,0.999963879585266,0,0.00849882699549198,0.999963939189911,0,0.00849882699549198,0.999280691146851,-0.0372404381632805,0.00715955207124352,0.999305069446564,-0.036576259881258,0.00718354200944304,
  421. 0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.999072790145874,0.0430360548198223,-0.00127800402697176,-0.999056458473206,0.0434145368635654,-0.00123171589802951,-0.999764382839203,0.0213452242314816,-0.00392918568104506,-0.999764382839203,0.0213452279567719,-0.00392918614670634,-0.0430899262428284,-0.999012589454651,0.0108245266601443,-0.0433478318154812,-0.999002873897552,0.0106821777299047,-0.021346028894186,-0.999511778354645,0.0228149387985468,-0.0213460270315409,-0.999511778354645,0.0228149369359016,0.999048709869385,-0.0432761982083321,0.00537661788985133,0.999052762985229,-0.0431845374405384,0.00536824855953455,0.999765992164612,-0.0213669594377279,0.00337562570348382,0.999766051769257,-0.0213669650256634,0.00337562640197575,0.0213451981544495,0.999497413635254,-0.0234380420297384,0.0431865602731705,0.999048113822937,-0.00613697012886405,0.0432520620524883,0.999045610427856,-0.00608503771945834,0.0213452000170946,0.999497413635254,-0.0234380420297384,-0.0574231296777725,-0.998345673084259,0.0029089713934809,-0.0574231296777725,-0.998345732688904,0.00290897162631154,-0.0433478318154812,-0.999002873897552,0.0106821777299047,-0.0430899262428284,-0.999012589454651,0.0108245266601443,-0.998349189758301,0.0574335493147373,0.000483472278574482,-0.998349249362946,0.0574335530400276,0.000483472307678312,-0.999056458473206,0.0434145368635654,-0.00123171589802951,-0.999072790145874,0.0430360548198223,-0.00127800402697176,0.0432520620524883,0.999045610427856,-0.00608503771945834,0.0431865602731705,0.999048113822937,-0.00613697012886405,0.0574226230382919,0.998336732387543,0.00515664741396904,0.0574226081371307,0.998336613178253,0.00515664648264647,0.998327136039734,-0.0574322715401649,0.00666913809254766,0.998327136039734,-0.0574322789907455,0.00666913902387023,0.999052762985229,-0.0431845374405384,0.00536824855953455,0.999048709869385,-0.0432761982083321,0.00537661788985133,-0.999796330928802,0.0201198253780603,-0.00157256738748401,-0.99979954957962,0.0199576057493687,-0.00155651743989438,-0.998698770999908,0.0507895275950432,-0.00460720714181662,
  422. -0.998698651790619,0.0507895201444626,-0.00460720621049404,-0.0199853852391243,-0.999741911888123,0.0108021944761276,-0.020092848688364,-0.999739408493042,0.0108437035232782,-0.0507877580821514,-0.99845153093338,0.022698175162077,-0.0507877543568611,-0.998451471328735,0.022698175162077,0.999788165092468,-0.0197814125567675,0.00568728288635612,0.999777734279633,-0.0203075036406517,0.00565971340984106,0.998700141906738,-0.0508103296160698,0.00405809609219432,0.998700022697449,-0.0508103221654892,0.00405809562653303,0.050786592066288,0.998437225818634,-0.023319223895669,0.0198884047567844,0.999783515930176,-0.00610584300011396,0.0201911237090826,0.999776482582092,-0.00627445755526423,0.0507865883409977,0.998437225818634,-0.0233192257583141,0,-0.999995291233063,0.00308197038248181,0,-0.999995291233063,0.00308197038248181,-0.020092848688364,-0.999739408493042,0.0108437035232782,-0.0199853852391243,-0.999741911888123,0.0108021944761276,-0.99999988079071,0,0.000417990086134523,-0.999999940395355,0,0.000417990115238354,-0.99979954957962,0.0199576057493687,-0.00155651743989438,-0.999796330928802,0.0201198253780603,-0.00157256738748401,0.0201911237090826,0.999776482582092,-0.00627445755526423,0.0198884047567844,0.999783515930176,-0.00610584300011396,0,0.999987721443176,0.00497069815173745,0,0.999987602233887,0.00497069768607616,0.99997740983963,0,0.00672252289950848,0.99997740983963,0,0.0067225219681859,0.999777734279633,-0.0203075036406517,0.00565971340984106,0.999788165092468,-0.0197814125567675,0.00568728288635612,-1.26929066368575e-007,0,-0.999999940395355,-1.26929066368575e-007,0,-1,-1.26929066368575e-007,0,-1,-1.26929066368575e-007,0,-0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,-1.5866220337557e-007,0,-1,-1.58662217586425e-007,0,-1,-1.58662217586425e-007,0,-1,-1.5866223179728e-007,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0.999312818050385,0.0370135419070721,0.00198590359650552,0.999320447444916,0.0368086919188499,0.00197198055684567,0.995616912841797,0.0933439210057259,0.00581539515405893,
  423. 0.995616972446442,0.0933439210057259,0.00581539515405893,0.0108382171019912,-0.9999138712883,-0.00741135748103261,0.0109119853004813,-0.999912679195404,-0.00744740338996053,0.0275789480656385,-0.999497950077057,-0.0155913438647985,0.0275789517909288,-0.999498009681702,-0.0155913438647985,-0.999305069446564,-0.0365763194859028,-0.00718352571129799,-0.999280691146851,-0.0372404977679253,-0.00715953530743718,-0.995620667934418,-0.0933443382382393,-0.00511947646737099,-0.995620667934418,-0.0933443382382393,-0.00511947646737099,-0.0275787655264139,0.999491333961487,0.0160189773887396,-0.0107711274176836,0.999933242797852,0.00417713215574622,-0.0109790302813053,0.999930322170258,0.004323601257056,-0.0275787655264139,0.999491274356842,0.0160189773887396,0,-0.999997735023499,-0.00211511179804802,0,-0.999997735023499,-0.00211511179804802,0.0109119853004813,-0.999912679195404,-0.00744740338996053,0.0108382171019912,-0.9999138712883,-0.00741135748103261,0.99999988079071,0,-0.000529454788193107,0.99999988079071,0,-0.000529454788193107,0.999320447444916,0.0368086919188499,0.00197198055684567,0.999312818050385,0.0370135419070721,0.00198590359650552,-0.0109790302813053,0.999930322170258,0.004323601257056,-0.0107711274176836,0.999933242797852,0.00417713215574622,0,0.999994158744812,-0.00341092399321496,0,0.999994218349457,-0.00341092422604561,-0.999963879585266,0,-0.00849884003400803,-0.999963939189911,0,-0.00849884003400803,-0.999280691146851,-0.0372404977679253,-0.00715953530743718,-0.999305069446564,-0.0365763194859028,-0.00718352571129799,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1.46221424301984e-007,0,1,1.4622141009113e-007,0,1,1.46221424301984e-007,0,1,1.4622141009113e-007,0,1,0.999072790145874,0.0430353134870529,0.0012780069373548,0.999056398868561,0.0434137843549252,0.00123171892482787,0.999764442443848,0.0213452279567719,0.00392918661236763,0.999764442443848,0.0213452260941267,0.00392918707802892,0.0430899374186993,-0.999012589454651,-0.010824547149241,0.0433478392660618,-0.999002873897552,-0.0106821991503239,0.0213460382074118,-0.999511778354645,-0.0228150561451912,
  424. 0.0213460363447666,-0.999511778354645,-0.0228150505572557,-0.999048829078674,-0.0432750955224037,-0.00537661276757717,-0.999052762985229,-0.0431834310293198,-0.0053682429715991,-0.999766051769257,-0.0213660188019276,-0.00337565573863685,-0.999765992164612,-0.0213660188019276,-0.00337565573863685,-0.021345229819417,0.999497354030609,0.0234375316649675,-0.0431865826249123,0.999048173427582,0.00613678945228457,-0.0432520806789398,0.999045610427856,0.00608485890552402,-0.0213452316820621,0.999497532844543,0.0234375335276127,0.0574231371283531,-0.998345673084259,-0.00290893111377954,0.0574231371283531,-0.998345732688904,-0.0029089308809489,0.0433478392660618,-0.999002873897552,-0.0106821991503239,0.0430899374186993,-0.999012589454651,-0.010824547149241,0.99834930896759,0.0574323236942291,-0.000483467563753948,0.99834930896759,0.0574323274195194,-0.000483467534650117,0.999056398868561,0.0434137843549252,0.00123171892482787,0.999072790145874,0.0430353134870529,0.0012780069373548,-0.0432520806789398,0.999045610427856,0.00608485890552402,-0.0431865826249123,0.999048173427582,0.00613678945228457,-0.0574226155877113,0.998336732387543,-0.00515660364180803,-0.0574226081371307,0.998336613178253,-0.00515660317614675,-0.998327195644379,-0.0574310608208179,-0.00666911015287042,-0.998327255249023,-0.0574310570955276,-0.0066691106185317,-0.999052762985229,-0.0431834310293198,-0.0053682429715991,-0.999048829078674,-0.0432750955224037,-0.00537661276757717,0.999796330928802,0.0201198235154152,0.00157256424427032,0.99979954957962,0.0199576057493687,0.00155651464592665,0.998698770999908,0.0507895313203335,0.00460720015689731,0.998698651790619,0.0507895201444626,0.00460719969123602,0.0199854020029306,-0.999742031097412,-0.0108021916821599,0.0200928617268801,-0.999739348888397,-0.0108436997979879,0.0507877469062805,-0.99845153093338,-0.0226980615407228,0.0507877543568611,-0.998451590538025,-0.022698063403368,-0.999788165092468,-0.0197814106941223,-0.00568728800863028,-0.999777734279633,-0.0203075017780066,-0.00565971992909908,-0.998700141906738,-0.0508103296160698,-0.00405809609219432,
  425. -0.998700022697449,-0.0508103221654892,-0.00405809562653303,-0.0507865808904171,0.998437225818634,0.0233190935105085,-0.0198884196579456,0.999783456325531,0.00610588816925883,-0.0201911386102438,0.999776422977448,0.00627450086176395,-0.0507865846157074,0.998437225818634,0.0233190953731537,0,-0.999995172023773,-0.0030820278916508,0,-0.999995291233063,-0.00308202835731208,0.0200928617268801,-0.999739348888397,-0.0108436997979879,0.0199854020029306,-0.999742031097412,-0.0108021916821599,0.99999988079071,0,-0.000417990377172828,0.99999988079071,0,-0.000417990377172828,0.99979954957962,0.0199576057493687,0.00155651464592665,0.999796330928802,0.0201198235154152,0.00157256424427032,-0.0201911386102438,0.999776422977448,0.00627450086176395,-0.0198884196579456,0.999783456325531,0.00610588816925883,0,0.999987721443176,-0.00497055379673839,0,0.999987661838531,-0.0049705533310771,-0.999977350234985,0,-0.00672253221273422,-0.999977350234985,0,-0.00672253221273422,-0.999777734279633,-0.0203075017780066,-0.00565971992909908,-0.999788165092468,-0.0197814106941223,-0.00568728800863028,9.51968956997007e-008,0,1,9.51968956997007e-008,0,1,9.5196902805128e-008,0,1,9.51968956997007e-008,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-3.17323944898362e-008,0,1,-3.17323980425499e-008,0,1,-3.17323980425499e-008,0,1,-3.17323980425499e-008,0,0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.255097836256027,-0.0583935417234898,0.965150415897369,-0.579688310623169,-0.267133951187134,0.769805788993835,0.679145336151123,-0.228412657976151,0.697559535503387,0.232762739062309,-0.0557662174105644,0.970933437347412,0.232762739062309,-0.0557662174105644,0.970933437347412,0.679145336151123,-0.228412657976151,0.697559535503387,0.666785538196564,0.293855130672455,0.684869468212128,0.225080624222755,0.0639724507927895,0.972237765789032,0.225080624222755,0.0639724507927895,0.972237765789032,-0.248392254114151,0.0656507834792137,0.966432213783264,-0.255097836256027,-0.0583935417234898,0.965150415897369,0.232762739062309,-0.0557662174105644,0.970933437347412,0.00204851804301143,-0.99960058927536,-0.028185261413455,
  426. 0.00204851827584207,-0.99960058927536,-0.028185261413455,0.00145343760959804,-0.999512732028961,-0.0311804749071598,0.00145340559538454,-0.999512732028961,-0.0311806313693523,0.999949991703033,0.00999931991100311,-0.000346063374308869,0.999949991703033,0.00999932084232569,-0.000346063345205039,0.999970734119415,0.00762839382514358,-0.000503965537063777,0.999970972537994,0.00760414684191346,-0.000505580275785178,-0.572352945804596,0.3310826420784,0.75019758939743,-0.579688310623169,-0.267133951187134,0.769805788993835,-0.255097836256027,-0.0583935417234898,0.965150415897369,-0.248392254114151,0.0656507834792137,0.966432213783264,0.666785538196564,0.293855130672455,0.684869468212128,-0.572352945804596,0.3310826420784,0.75019758939743,-0.248392254114151,0.0656507834792137,0.966432213783264,0.225080624222755,0.0639724507927895,0.972237765789032,-0.999970436096191,0.00767267635092139,-0.000498115899972618,-0.999970197677612,0.00769710075110197,-0.00049648288404569,-0.999949395656586,0.0100522888824344,-0.00033901326241903,-0.999949395656586,0.0100522888824344,-0.0003390132333152,-0.00126880640164018,0.999508619308472,0.0313221924006939,-0.00126890395767987,0.999508559703827,0.0313215628266335,-0.00175304908771068,0.999600291252136,0.0282137971371412,-0.00175304932054132,0.999600350856781,0.0282138027250767,0.705742239952087,-0.208892211318016,-0.676972627639771,-0.705889761447906,-0.208929687738419,-0.676807343959808,-0.22758637368679,-0.00608227076008916,-0.973738968372345,0.227681905031204,-0.00615385128185153,-0.973716139793396,0.700542509555817,0.277476966381073,-0.657454669475555,0.705742239952087,-0.208892211318016,-0.676972627639771,0.227681905031204,-0.00615385128185153,-0.973716139793396,0.229971095919609,0.113448455929756,-0.966562390327454,-0.229966208338737,0.113487236201763,-0.966558933258057,-0.22758637368679,-0.00608227076008916,-0.973738968372345,-0.705889761447906,-0.208929687738419,-0.676807343959808,-0.700510501861572,0.277657359838486,-0.657412767410278,0.229971095919609,0.113448455929756,-0.966562390327454,
  427. -0.229966208338737,0.113487236201763,-0.966558933258057,-0.700510501861572,0.277657359838486,-0.657412767410278,0.700542509555817,0.277476966381073,-0.657454669475555,-0.229966208338737,0.113487236201763,-0.966558933258057,0.229971095919609,0.113448455929756,-0.966562390327454,0.227681905031204,-0.00615385128185153,-0.973716139793396,-0.22758637368679,-0.00608227076008916,-0.973738968372345,-0.999993920326233,0.00340328295715153,-0.000783556257374585,-0.999993920326233,0.00340328295715153,-0.000783556140959263,-0.999970197677612,0.00769710075110197,-0.00049648288404569,-0.999970436096191,0.00767267635092139,-0.000498115899972618,0.00145340559538454,-0.999512732028961,-0.0311806313693523,0.00145343760959804,-0.999512732028961,-0.0311804749071598,0.000330105423927307,-0.999321341514587,-0.036833543330431,0.000330105423927307,-0.999321341514587,-0.036833543330431,0.999970972537994,0.00760414684191346,-0.000505580275785178,0.999970734119415,0.00762839382514358,-0.000503965537063777,0.999994218349457,0.00330703449435532,-0.000791750440839678,0.999994218349457,0.00330703426152468,-0.000791750499047339,-0.000391840381780639,0.999317049980164,0.0369505025446415,-0.000391840381780639,0.999317049980164,0.0369505025446415,-0.00126890395767987,0.999508559703827,0.0313215628266335,-0.00126880640164018,0.999508619308472,0.0313221924006939,-0.36428439617157,-0.011834922246635,0.931212604045868,-0.633391499519348,-0.263117223978043,0.727725625038147,0.737246751785278,-0.221131041646004,0.638410687446594,0.332772970199585,-0.0119714410975575,0.942930996417999,0.332772970199585,-0.0119714410975575,0.942930996417999,0.737246751785278,-0.221131041646004,0.638410687446594,0.715747237205505,0.348709106445313,0.605068564414978,0.32740506529808,0.128721743822098,0.936075091362,0.32740506529808,0.128721743822098,0.936075091362,-0.353568315505981,0.134595841169357,0.925674498081207,-0.36428439617157,-0.011834922246635,0.931212604045868,0.332772970199585,-0.0119714410975575,0.942930996417999,0.00382546591572464,-0.999696493148804,0.0243375189602375,
  428. 0.00382546568289399,-0.999696433544159,0.0243375189602375,0.00305489264428616,-0.999898970127106,0.0138782532885671,0.00306098232977092,-0.9998978972435,0.0139608960598707,0.999800384044647,-0.00143401930108666,-0.0199300888925791,0.999800324440002,-0.00143401941750199,-0.0199300888925791,0.999975621700287,-0.00254749227315187,-0.0065058209002018,0.99997866153717,-0.00259098317474127,-0.00598134240135551,-0.617668449878693,0.409334421157837,0.671513974666595,-0.633391499519348,-0.263117223978043,0.727725625038147,-0.36428439617157,-0.011834922246635,0.931212604045868,-0.353568315505981,0.134595841169357,0.925674498081207,0.715747237205505,0.348709106445313,0.605068564414978,-0.617668449878693,0.409334421157837,0.671513974666595,-0.353568315505981,0.134595841169357,0.925674498081207,0.32740506529808,0.128721743822098,0.936075091362,-0.999946296215057,0.00925102550536394,0.00466965325176716,-0.999942779541016,0.00935337692499161,0.00519094942137599,-0.999757587909698,0.0119622321799397,0.0184825677424669,-0.999757647514343,0.0119622321799397,0.0184825677424669,-0.00250996556133032,0.999902367591858,-0.0137505745515227,-0.00250486563891172,0.999903500080109,-0.0136639708653092,-0.00313285854645073,0.999699056148529,-0.0243306271731853,-0.00313285877928138,0.999699056148529,-0.0243306271731853,0.773588478565216,-0.32294836640358,-0.54522043466568,-0.775191128253937,-0.315095245838165,-0.547534286975861,-0.323958724737167,-0.138073548674583,-0.935941457748413,0.321606487035751,-0.141833290457726,-0.93619042634964,0.763209581375122,0.231031462550163,-0.603436470031738,0.773588478565216,-0.32294836640358,-0.54522043466568,0.321606487035751,-0.141833290457726,-0.93619042634964,0.32986456155777,0.00842958223074675,-0.943990588188171,-0.327199459075928,0.0121447397395968,-0.94487726688385,-0.323958724737167,-0.138073548674583,-0.935941457748413,-0.775191128253937,-0.315095245838165,-0.547534286975861,-0.762296974658966,0.238641619682312,-0.601625800132751,0.32986456155777,0.00842958223074675,-0.943990588188171,-0.327199459075928,0.0121447397395968,-0.94487726688385,
  429. -0.762296974658966,0.238641619682312,-0.601625800132751,0.763209581375122,0.231031462550163,-0.603436470031738,-0.327199459075928,0.0121447397395968,-0.94487726688385,0.32986456155777,0.00842958223074675,-0.943990588188171,0.321606487035751,-0.141833290457726,-0.93619042634964,-0.323958724737167,-0.138073548674583,-0.935941457748413,-0.999981939792633,0.00331798428669572,0.00502575747668743,-0.999981820583344,0.00331798428669572,0.00502575747668743,-0.999987661838531,0.00469388160854578,0.00161003309767693,-0.999987721443176,0.00466885371133685,0.00167216709814966,0.00120170600712299,-0.999908626079559,0.0134613672271371,0.0012011619983241,-0.999908626079559,0.0134644908830523,0.000543882022611797,-0.999851107597351,0.0172408856451511,0.000543882080819458,-0.999851286411285,0.0172408893704414,0.999972879886627,-0.00691428454592824,-0.0025446810759604,0.999973118305206,-0.00688185356557369,-0.00248634372837842,0.999945878982544,-0.00868226587772369,-0.00572493253275752,0.999945938587189,-0.00868226587772369,-0.00572493299841881,-0.000550209544599056,0.999627947807312,-0.0272698849439621,-0.000550209602806717,0.999627947807312,-0.0272698849439621,-0.00104229035787284,0.999793946743011,-0.0202711764723063,-0.0010426709195599,0.999794065952301,-0.0202657673507929,-0.999987721443176,0.00466885371133685,0.00167216709814966,-0.999987661838531,0.00469388160854578,0.00161003309767693,-0.999942779541016,0.00935337692499161,0.00519094942137599,-0.999946296215057,0.00925102550536394,0.00466965325176716,0.00306098232977092,-0.9998978972435,0.0139608960598707,0.00305489264428616,-0.999898970127106,0.0138782532885671,0.0012011619983241,-0.999908626079559,0.0134644908830523,0.00120170600712299,-0.999908626079559,0.0134613672271371,0.99997866153717,-0.00259098317474127,-0.00598134240135551,0.999975621700287,-0.00254749227315187,-0.0065058209002018,0.999973118305206,-0.00688185356557369,-0.00248634372837842,0.999972879886627,-0.00691428454592824,-0.0025446810759604,-0.0010426709195599,0.999794065952301,-0.0202657673507929,-0.00104229035787284,0.999793946743011,-0.0202711764723063,
  430. -0.00250486563891172,0.999903500080109,-0.0136639708653092,-0.00250996556133032,0.999902367591858,-0.0137505745515227,0.242912068963051,0.0256220009177923,-0.969709873199463,0.591899454593658,-0.177393794059753,-0.786248326301575,-0.700665175914764,-0.176796793937683,-0.691238939762115,-0.245934218168259,0.0164626613259315,-0.96914678812027,-0.245934218168259,0.0164626613259315,-0.96914678812027,-0.700665175914764,-0.176796793937683,-0.691238939762115,-0.702352821826935,0.306470096111298,-0.642476916313171,-0.240839034318924,0.125231802463531,-0.962451815605164,-0.240839034318924,0.125231802463531,-0.962451815605164,0.233539775013924,0.137980565428734,-0.962507426738739,0.242912068963051,0.0256220009177923,-0.969709873199463,-0.245934218168259,0.0164626613259315,-0.96914678812027,0.0216233748942614,-0.99786514043808,-0.0616251938045025,0.0216233730316162,-0.997865080833435,-0.0616251900792122,0.0225818455219269,-0.998364686965942,-0.0525164417922497,0.0226000584661961,-0.99837338924408,-0.0523431375622749,-0.99981701374054,-0.0135974241420627,-0.0134621560573578,-0.99981689453125,-0.0135974232107401,-0.0134621551260352,-0.999845087528229,-0.0175814162939787,-0.000892366282641888,-0.999845087528229,-0.0175757426768541,-0.000910263683181256,0.574061453342438,0.38037770986557,-0.725097358226776,0.591899454593658,-0.177393794059753,-0.786248326301575,0.242912068963051,0.0256220009177923,-0.969709873199463,0.233539775013924,0.137980565428734,-0.962507426738739,-0.702352821826935,0.306470096111298,-0.642476916313171,0.574061453342438,0.38037770986557,-0.725097358226776,0.233539775013924,0.137980565428734,-0.962507426738739,-0.240839034318924,0.125231802463531,-0.962451815605164,0.999558091163635,0.0296069104224443,0.00263216719031334,0.99955826997757,0.0296045001596212,0.00261754426173866,0.99937117099762,0.0317684225738049,0.0157468374818563,0.999371230602264,0.0317684262990952,0.0157468393445015,-0.0227508433163166,0.998381376266479,0.0521256737411022,-0.0227356255054474,0.998372495174408,0.052300751209259,-0.0219212677329779,0.997856676578522,0.0616571642458439,
  431. -0.0219212677329779,0.997856676578522,0.0616571642458439,-0.703482806682587,-0.261015504598618,0.661046922206879,0.732236325740814,-0.225707441568375,0.642562091350555,0.242120131850243,-0.0728028565645218,0.967511057853699,-0.213805630803108,-0.0840432494878769,0.973254323005676,-0.710242211818695,0.188963398337364,0.678121566772461,-0.703482806682587,-0.261015504598618,0.661046922206879,-0.213805630803108,-0.0840432494878769,0.973254323005676,-0.218451678752899,0.0248394198715687,0.97553151845932,0.241616874933243,0.0361435897648335,0.969698369503021,0.242120131850243,-0.0728028565645218,0.967511057853699,0.732236325740814,-0.225707441568375,0.642562091350555,0.717183351516724,0.22403921186924,0.659889757633209,-0.218451678752899,0.0248394198715687,0.97553151845932,0.241616874933243,0.0361435897648335,0.969698369503021,0.717183351516724,0.22403921186924,0.659889757633209,-0.710242211818695,0.188963398337364,0.678121566772461,0.241616874933243,0.0361435897648335,0.969698369503021,-0.218451678752899,0.0248394198715687,0.97553151845932,-0.213805630803108,-0.0840432494878769,0.973254323005676,0.242120131850243,-0.0728028565645218,0.967511057853699,0.999570071697235,0.0274860560894012,-0.0102055296301842,0.999570071697235,0.0274860579520464,-0.0102055286988616,0.99955826997757,0.0296045001596212,0.00261754426173866,0.999558091163635,0.0296069104224443,0.00263216719031334,0.0226000584661961,-0.99837338924408,-0.0523431375622749,0.0225818455219269,-0.998364686965942,-0.0525164417922497,0.0235769432038069,-0.998795330524445,-0.0430358089506626,0.0235769413411617,-0.998795330524445,-0.0430358089506626,-0.999845087528229,-0.0175757426768541,-0.000910263683181256,-0.999845087528229,-0.0175814162939787,-0.000892366282641888,-0.999704778194427,-0.0214675310999155,0.0113780787214637,-0.999704837799072,-0.0214675348252058,0.0113780805841088,-0.0235439706593752,0.998798131942749,0.0429859533905983,-0.0235439706593752,0.998798251152039,0.0429859608411789,-0.0227356255054474,0.998372495174408,0.052300751209259,-0.0227508433163166,0.998381376266479,0.0521256737411022,
  432. 0.999462723731995,0.0240719504654408,-0.0222471710294485,0.999450206756592,0.0242979116737843,-0.0225599855184555,0.999859690666199,0.0143006956204772,-0.00872162729501724,0.999859690666199,0.0143006974831223,-0.00872162729501724,0.0565147884190083,-0.716064631938934,0.695742309093475,0.0568816177546978,-0.715908646583557,0.695873081684113,0.0280129685997963,-0.727793216705322,0.685224294662476,0.028012964874506,-0.727793216705322,0.685224294662476,-0.99944019317627,-0.0271556824445724,0.019539462402463,-0.999443471431732,-0.0270787328481674,0.0194790307432413,-0.999861240386963,-0.0139192491769791,0.00914527103304863,-0.999861359596252,-0.0139192501083016,0.0091452719643712,-0.0280112121254206,0.728354692459106,-0.684627532958984,-0.0566663667559624,0.71174693107605,-0.700146615505219,-0.0567301400005817,0.711708784103394,-0.700180113315582,-0.0280112084001303,0.728354692459106,-0.684627532958984,0.0752850994467735,-0.707911491394043,0.702277421951294,0.0752850919961929,-0.707911491394043,0.702277421951294,0.0568816177546978,-0.715908646583557,0.695873081684113,0.0565147884190083,-0.716064631938934,0.695742309093475,0.999040961265564,0.0306135006248951,-0.0313038304448128,0.999040961265564,0.0306134987622499,-0.0313038267195225,0.999450206756592,0.0242979116737843,-0.0225599855184555,0.999462723731995,0.0240719504654408,-0.0222471710294485,-0.0567301400005817,0.711708784103394,-0.700180113315582,-0.0566663667559624,0.71174693107605,-0.700146615505219,-0.0752805396914482,0.700423359870911,-0.709746420383453,-0.0752805396914482,0.700423300266266,-0.709746420383453,-0.999017417430878,-0.0357065461575985,0.0262544751167297,-0.999017417430878,-0.0357065424323082,0.0262544751167297,-0.999443471431732,-0.0270787328481674,0.0194790307432413,-0.99944019317627,-0.0271556824445724,0.019539462402463,5.30661679931654e-007,0.706986129283905,0.707227408885956,5.30661679931654e-007,0.70698606967926,0.707227468490601,5.30661679931654e-007,0.706986129283905,0.707227408885956,5.30661679931654e-007,0.70698606967926,0.707227468490601,
  433. 0,-0.706984221935272,-0.707229256629944,0,-0.706984221935272,-0.707229256629944,0,-0.706984221935272,-0.707229256629944,0,-0.706984221935272,-0.707229256629944,0.99946266412735,0.0232030060142279,0.0231517758220434,0.999450206756592,0.0235243737697601,0.0233646910637617,0.999859750270844,0.00929313339293003,0.0139350276440382,0.999859690666199,0.00929313525557518,0.0139350285753608,0.05650644749403,-0.724159181118011,-0.687313973903656,0.0568735711276531,-0.724283635616302,-0.687152564525604,0.0280062649399042,-0.714122951030731,-0.699459791183472,0.0280062686651945,-0.714123010635376,-0.699459850788116,-0.999440252780914,-0.0206230450421572,-0.0263426508754492,-0.999443471431732,-0.0205595120787621,-0.0262681785970926,-0.999861240386963,-0.00970084965229034,-0.0135391531512141,-0.999861299991608,-0.00970084965229034,-0.0135391540825367,-0.0280199814587832,0.713551998138428,0.700041770935059,-0.0566721372306347,0.728384792804718,0.682820439338684,-0.0567366816103458,0.728417217731476,0.682780683040619,-0.028019979596138,0.713551878929138,0.700041770935059,0.0752760544419289,-0.73035991191864,-0.67890191078186,0.0752760544419289,-0.73035991191864,-0.67890191078186,0.0568735711276531,-0.724283635616302,-0.687152564525604,0.05650644749403,-0.724159181118011,-0.687313973903656,0.999040961265564,0.0325167030096054,0.0293218698352575,0.999040961265564,0.0325167067348957,0.0293218698352575,0.999450206756592,0.0235243737697601,0.0233646910637617,0.99946266412735,0.0232030060142279,0.0231517758220434,-0.0567366816103458,0.728417217731476,0.682780683040619,-0.0566721372306347,0.728384792804718,0.682820439338684,-0.0752849951386452,0.737518072128296,0.671117961406708,-0.0752849876880646,0.737518072128296,0.671117961406708,-0.999017357826233,-0.0276791397482157,-0.0346138067543507,-0.999017357826233,-0.0276791397482157,-0.0346138030290604,-0.999443471431732,-0.0205595120787621,-0.0262681785970926,-0.999440252780914,-0.0206230450421572,-0.0263426508754492,-1.25512651720783e-005,-0.678028106689453,0.735036015510559,-1.25512642625836e-005,-0.678028047084808,0.735036075115204,
  434. -1.25512633530889e-005,-0.678028047084808,0.735036015510559,-1.25512642625836e-005,-0.678028047084808,0.735036075115204,0,0.678024172782898,-0.735039710998535,0,0.678024172782898,-0.735039710998535,0,0.678024172782898,-0.735039710998535,0,0.678024172782898,-0.735039710998535,0.999463677406311,0.0231801588088274,0.0231297686696053,0.999451220035553,0.0235013347119093,0.0233428832143545,0.999860286712646,0.00927872955799103,0.0139045873656869,0.999860286712646,0.0092787304893136,0.0139045855030417,0.0565064810216427,-0.724159717559814,-0.687313377857208,0.0568734966218472,-0.724284112453461,-0.687152028083801,0.028006250038743,-0.714122653007507,-0.69946014881134,0.0280062556266785,-0.714122593402863,-0.69946014881134,-0.999440968036652,-0.0206051878631115,-0.0263323746621609,-0.999444127082825,-0.0205417461693287,-0.0262579564005136,-0.999861299991608,-0.00969947781413794,-0.0135391112416983,-0.999861359596252,-0.00969947688281536,-0.0135391112416983,-0.0280187129974365,0.71355128288269,0.700042605400085,-0.0566711463034153,0.728384375572205,0.682821094989777,-0.0567355342209339,0.728416621685028,0.682781338691711,-0.0280187092721462,0.713551223278046,0.700042605400085,0.0752760395407677,-0.730360984802246,-0.678900897502899,0.0752760320901871,-0.730360984802246,-0.678900897502899,0.0568734966218472,-0.724284112453461,-0.687152028083801,0.0565064810216427,-0.724159717559814,-0.687313377857208,0.999042332172394,0.0324882231652737,0.0293055269867182,0.999042510986328,0.032488226890564,0.0293055307120085,0.999451220035553,0.0235013347119093,0.0233428832143545,0.999463677406311,0.0231801588088274,0.0231297686696053,-0.0567355342209339,0.728416621685028,0.682781338691711,-0.0566711463034153,0.728384375572205,0.682821094989777,-0.0752849951386452,0.737518072128296,0.671117961406708,-0.0752849876880646,0.737518072128296,0.671117961406708,-0.999018788337708,-0.0276506524533033,-0.0345969386398792,-0.999018728733063,-0.0276506505906582,-0.0345969349145889,-0.999444127082825,-0.0205417461693287,-0.0262579564005136,-0.999440968036652,-0.0206051878631115,-0.0263323746621609,
  435. -1.25507103803102e-005,-0.678028047084808,0.735036015510559,-1.25507094708155e-005,-0.678027987480164,0.735036015510559,-1.25507103803102e-005,-0.678028047084808,0.735036075115204,-1.25507094708155e-005,-0.678028047084808,0.735036015510559,0,0.67802494764328,-0.735038816928864,0,0.67802494764328,-0.735038816928864,0,0.67802494764328,-0.735038816928864,0,0.67802494764328,-0.735038816928864,0.999463737010956,0.024048613384366,-0.0222252681851387,0.999451220035553,0.0242747981101274,-0.0225378889590502,0.999860227108002,0.0142677705734968,-0.00870833732187748,0.999860227108002,0.0142677705734968,-0.00870833732187748,0.0565148405730724,-0.716064512729645,0.69574248790741,0.056881558150053,-0.715908467769623,0.695873200893402,0.0280129741877317,-0.727793216705322,0.685224115848541,0.028012977913022,-0.727793335914612,0.685224115848541,-0.999440848827362,-0.0271448623389006,0.0195229705423117,-0.999444127082825,-0.0270679779350758,0.0194626338779926,-0.999861359596252,-0.0139206228777766,0.00914531480520964,-0.999861240386963,-0.0139206210151315,0.00914531387388706,-0.0280098728835583,0.728355407714844,-0.684626817703247,-0.0566652677953243,0.711747884750366,-0.700145661830902,-0.0567289032042027,0.711709916591644,-0.700179159641266,-0.0280098747462034,0.728355467319489,-0.684626758098602,0.0752850621938705,-0.707911133766174,0.702277779579163,0.0752850696444511,-0.707911193370819,0.702277779579163,0.056881558150053,-0.715908467769623,0.695873200893402,0.0565148405730724,-0.716064512729645,0.69574248790741,0.999042272567749,0.0305966064333916,-0.0312761813402176,0.999042332172394,0.0305966064333916,-0.0312761813402176,0.999451220035553,0.0242747981101274,-0.0225378889590502,0.999463737010956,0.024048613384366,-0.0222252681851387,-0.0567289032042027,0.711709916591644,-0.700179159641266,-0.0566652677953243,0.711747884750366,-0.700145661830902,-0.0752804726362228,0.700423896312714,-0.70974588394165,-0.0752804726362228,0.700423955917358,-0.709745764732361,-0.999018788337708,-0.035687867552042,0.0262273196130991,-0.999018728733063,-0.0356878638267517,0.0262273158878088,
  436. -0.999444127082825,-0.0270679779350758,0.0194626338779926,-0.999440848827362,-0.0271448623389006,0.0195229705423117,5.30638374129921e-007,0.70698606967926,0.707227408885956,5.3063843097334e-007,0.706986129283905,0.707227528095245,5.30638374129921e-007,0.70698606967926,0.707227468490601,5.30638374129921e-007,0.70698606967926,0.707227349281311,0,-0.706984221935272,-0.707229256629944,0,-0.706984221935272,-0.707229256629944,0,-0.706984221935272,-0.707229256629944,0,-0.706984221935272,-0.707229256629944,0.999349892139435,0.0360463447868824,0.000674308743327856,0.999346673488617,0.036137942224741,0.000669681583531201,0.999771058559418,0.0213500894606113,0.00141644466202706,0.999771118164063,0.0213500931859016,0.00141644466202706,0.0360673628747463,-0.999332427978516,-0.00581074552610517,0.0361324846744537,-0.999330282211304,-0.005799048114568,0.0213507749140263,-0.999736309051514,-0.00845316797494888,0.0213507767766714,-0.999736309051514,-0.00845316797494888,-0.999342620372772,-0.0361381769180298,-0.00289809564128518,-0.999344885349274,-0.0360737852752209,-0.00289077591150999,-0.999771356582642,-0.0213516131043434,-0.00121735397260636,-0.999771296977997,-0.0213516093790531,-0.00121735397260636,-0.0213501453399658,0.999734461307526,0.00867702625691891,-0.0361163504421711,0.999342143535614,0.00329470518045127,-0.0360820144414902,0.99934333562851,0.00330722541548312,-0.0213501453399658,0.999734461307526,0.00867702625691891,0.0574252940714359,-0.998347818851471,-0.00197094795294106,0.0574252903461456,-0.998347759246826,-0.00197094772011042,0.0361324846744537,-0.999330282211304,-0.005799048114568,0.0360673628747463,-0.999332427978516,-0.00581074552610517,0.99835067987442,0.057409755885601,-0.000405472674174234,0.998350620269775,0.0574097596108913,-0.000405472674174234,0.999346673488617,0.036137942224741,0.000669681583531201,0.999349892139435,0.0360463447868824,0.000674308743327856,-0.0360820144414902,0.99934333562851,0.00330722541548312,-0.0361163504421711,0.999342143535614,0.00329470518045127,-0.0574226975440979,0.998339951038361,-0.0044786911457777,
  437. -0.0574226975440979,0.998339951038361,-0.00447869068011642,-0.99833470582962,-0.0574419014155865,-0.00532009219750762,-0.998334586620331,-0.0574418939650059,-0.00532009219750762,-0.999344885349274,-0.0360737852752209,-0.00289077591150999,-0.999342620372772,-0.0361381769180298,-0.00289809564128518,-2.85465375782223e-007,0,1,-2.85465347360514e-007,0,1,-2.85465375782223e-007,0,0.999999940395355,-2.85465347360514e-007,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.999364912509918,0.035613976418972,0.00118435476906598,0.999364137649536,0.035635594278574,0.00118428573478013,0.999843597412109,0.0176385492086411,0.0012413642834872,0.999843657016754,0.0176385510712862,0.00124136439990252,0.0431653819978237,-0.999053835868835,-0.00531920278444886,0.0432848110795021,-0.999047458171844,-0.00552801974117756,0.0213400609791279,-0.999235093593597,0.0327717661857605,0.0213400572538376,-0.999234974384308,0.0327717587351799,-0.999360740184784,-0.0355900228023529,-0.00339376251213253,-0.999356925487518,-0.035695519298315,-0.00340767903253436,-0.999843835830688,-0.0176395084708929,-0.00102596660144627,-0.999843895435333,-0.0176395103335381,-0.00102596660144627,-0.0213408153504133,0.999246001243591,-0.0324348397552967,-0.0431969985365868,0.999062478542328,0.00286324950866401,-0.0432526096701622,0.999059796333313,0.00295320898294449,-0.0213408134877682,0.999246001243591,-0.0324348397552967,0.057399183511734,-0.997893452644348,-0.0302339661866426,0.0573991760611534,-0.997893393039703,-0.0302339643239975,0.0432848110795021,-0.999047458171844,-0.00552801974117756,0.0431653819978237,-0.999053835868835,-0.00531920278444886,0.998881638050079,0.0472656339406967,0.00114717672113329,0.998881697654724,0.047265637665987,0.00114717683754861,0.999364137649536,0.035635594278574,0.00118428573478013,0.999364912509918,0.035613976418972,0.00118435476906598,-0.0432526096701622,0.999059796333313,0.00295320898294449,-0.0431969985365868,0.999062478542328,0.00286324950866401,-0.0574040897190571,0.998015701770782,0.0258699972182512,-0.0574040859937668,0.998015761375427,0.0258699990808964,
  438. -0.998869001865387,-0.0472920723259449,-0.00493757240474224,-0.998869001865387,-0.0472920686006546,-0.00493757193908095,-0.999356925487518,-0.035695519298315,-0.00340767903253436,-0.999360740184784,-0.0355900228023529,-0.00339376251213253,-2.36041159951128e-007,0,1,-2.36041174161983e-007,0,1,-2.36041159951128e-007,0,0.999999940395355,-2.36041188372838e-007,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.999509692192078,0.0313057862222195,0.000661854166537523,0.999506950378418,0.0313923247158527,0.000656842312309891,0.999833226203918,0.0182088948786259,0.00142016494646668,0.999833226203918,0.0182088948786259,0.00142016483005136,0.0367662161588669,-0.999306917190552,-0.00582056539133191,0.0368384495377541,-0.999304294586182,-0.0058049401268363,0.0213513690978289,-0.999730169773102,-0.00915304757654667,0.0213513690978289,-0.999730229377747,-0.00915304757654667,-0.999503076076508,-0.0313902050256729,-0.00287277111783624,-0.999504745006561,-0.0313368327915668,-0.0028662548866123,-0.999832928180695,-0.0182344503700733,-0.00126652361359447,-0.999832928180695,-0.0182344522327185,-0.00126652373000979,-0.0213500484824181,0.999728083610535,0.00938480161130428,-0.0368150845170021,0.999316573143005,0.00330233410932124,-0.0367877893149853,0.999317586421967,0.0033130741212517,-0.0213500466197729,0.999727964401245,0.00938480067998171,0.0574254170060158,-0.998348832130432,-0.00134894228540361,0.0574254132807255,-0.998348832130432,-0.00134894216898829,0.0368384495377541,-0.999304294586182,-0.0058049401268363,0.0367662161588669,-0.999306917190552,-0.00582056539133191,0.998806476593018,0.0488430038094521,-0.000354219228029251,0.998806416988373,0.0488430000841618,-0.000354219198925421,0.999506950378418,0.0313923247158527,0.000656842312309891,0.999509692192078,0.0313057862222195,0.000661854166537523,-0.0367877893149853,0.999317586421967,0.0033130741212517,-0.0368150845170021,0.999316573143005,0.00330233410932124,-0.0574247315526009,0.998338222503662,-0.00481117609888315,-0.0574247278273106,0.998338222503662,-0.00481117609888315,-0.998793840408325,-0.0488432869315147,-0.00500395987182856,
  439. -0.99879390001297,-0.0488432869315147,-0.00500396080315113,-0.999504745006561,-0.0313368327915668,-0.0028662548866123,-0.999503076076508,-0.0313902050256729,-0.00287277111783624,3.65436449101253e-007,0,1,3.65436449101253e-007,0,1,3.65436420679544e-007,0,0.999999940395355,3.65436449101253e-007,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.993525624275208,0.11360602080822,0.000804843497462571,0.993539690971375,0.113482274115086,0.000805664109066129,0.986820340156555,0.16181892156601,0.000483266689116135,0.98682028055191,0.161818936467171,0.000483266718219966,0.100780114531517,-0.99487030506134,-0.00874383561313152,0.100914478302002,-0.994857013225555,-0.00870765652507544,0.155238196253777,-0.987858951091766,0.00597847485914826,0.155238196253777,-0.987859010696411,0.00597847579047084,-0.993568122386932,-0.113192155957222,-0.00313751143403351,-0.993483245372772,-0.113936103880405,-0.00309622543863952,-0.986814320087433,-0.161855846643448,-0.00042572824168019,-0.986814320087433,-0.161855846643448,-0.00042572824168019,-0.155239075422287,0.987861275672913,-0.00556412572041154,-0.100620806217194,0.99490213394165,0.00672384258359671,-0.10108096152544,0.994856178760529,0.00662070605903864,-0.155239075422287,0.987861275672913,-0.00556412618607283,0.0489621087908745,-0.998543858528137,-0.0226453710347414,0.0489621087908745,-0.998543918132782,-0.0226453710347414,0.100914478302002,-0.994857013225555,-0.00870765652507544,0.100780114531517,-0.99487030506134,-0.00874383561313152,0.997729301452637,0.0673426389694214,0.00110996409785002,0.997729301452637,0.0673426389694214,0.0011099639814347,0.993539690971375,0.113482274115086,0.000805664109066129,0.993525624275208,0.11360602080822,0.000804843497462571,-0.10108096152544,0.994856178760529,0.00662070605903864,-0.100620806217194,0.99490213394165,0.00672384258359671,-0.0489670671522617,0.998633503913879,0.0182595737278461,-0.0489670634269714,0.99863338470459,0.0182595737278461,-0.99771386384964,-0.0673416331410408,-0.00567177636548877,-0.99771386384964,-0.0673416405916214,-0.00567177589982748,-0.993483245372772,-0.113936103880405,-0.00309622543863952,
  440. -0.993568122386932,-0.113192155957222,-0.00313751143403351,-1.67451446486666e-007,0,1,-1.67451446486666e-007,0,1,-1.67451460697521e-007,0,1,-1.67451460697521e-007,0,0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.000934970157686621,0.000780450587626547,0.999999344348907,0.000934963987674564,0.000780450878664851,0.999999165534973,0.00670548435300589,0.000314983131829649,0.999977469444275,0.00670548481866717,0.000314983131829649,0.99997740983963,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.00678178854286671,-0.000224999530473724,-0.999976933002472,-0.00678178807720542,-0.000224999515921809,-0.999976933002472,-0.00098544277716428,-0.000638835539575666,-0.999999284744263,-0.000985448597930372,-0.000638835248537362,-0.999999344348907,-2.5336639453144e-008,1,-9.79359924713208e-007,-2.67451376601002e-008,1,-9.85022211352771e-007,5.17422762413844e-008,1,-6.69505311634566e-007,5.17422726886707e-008,1,-6.69505368477985e-007
  441. }
  442. NormalsW: *2980 {
  443. 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,
  444. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  445. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  446. }
  447. }
  448. LayerElementBinormal: 0 {
  449. Version: 102
  450. Name: "map1"
  451. MappingInformationType: "ByPolygonVertex"
  452. ReferenceInformationType: "Direct"
  453. Binormals: *8940 {
  454. a: 0.00916278455406427,0.00229543354362249,0.999955475330353,-0.00843239389359951,0.00129648123402148,0.999963641166687,-0.0257351100444794,0.00115514977369457,0.999668180942535,0.00853956677019596,0.00230566994287074,0.999960958957672,-8.58379098644946e-006,0.999998986721039,0.0014447548892349,-7.30237297830172e-005,0.999987900257111,0.00493433373048902,-3.87086147384252e-005,0.999992966651917,0.00375660345889628,-9.27286964724772e-006,0.999998986721039,0.00144475104752928,2.28012631851016e-005,-0.999996542930603,-0.00265833316370845,4.47943275503349e-005,-0.999994933605194,-0.00320590124465525,-1.10549228793388e-006,-0.999999701976776,-0.000882784079294652,-5.86798705626279e-007,-0.999999642372131,-0.000882780936080962,-0.221606254577637,0.974494636058807,0.0353687778115273,0.187694519758224,0.977838575839996,0.0927490368485451,0.176037430763245,0.974726676940918,-0.137545645236969,-0.220293581485748,0.974960386753082,-0.0303833782672882,0.195830404758453,-0.0702231302857399,0.978120267391205,-0.018697913736105,-0.129134461283684,0.991450786590576,-0.0231525767594576,0.0727218687534332,0.99708354473114,0.191148728132248,0.0957759767770767,0.976877272129059,-0.0108039304614067,-0.000612368399742991,-0.999941527843475,-0.0102748237550259,-0.000621622195467353,-0.999947011470795,-0.0102674420922995,-0.000150816020322964,-0.999947249889374,-0.0104827815666795,-0.000161777890753001,-0.999945104122162,0.176037430763245,0.974726676940918,-0.137545645236969,0.187694519758224,0.977838575839996,0.0927490368485451,0.516729891300201,0.838935494422913,0.170814499258995,0.565387904644012,0.816518783569336,-0.11676312983036,0.516729891300201,0.838935494422913,0.170814499258995,0.187694519758224,0.977838575839996,0.0927490368485451,-0.221606254577637,0.974494636058807,0.0353687778115273,-0.433959126472473,0.850179731845856,-0.298117518424988,-0.495229959487915,0.835790932178497,0.237067312002182,-0.433959126472473,0.850179731845856,-0.298117518424988,-0.221606254577637,0.974494636058807,0.0353687778115273,-0.220293581485748,0.974960386753082,-0.0303833782672882,
  455. -0.220293581485748,0.974960386753082,-0.0303833782672882,0.176037430763245,0.974726676940918,-0.137545645236969,0.565387904644012,0.816518783569336,-0.11676312983036,-0.495229959487915,0.835790932178497,0.237067312002182,-0.0427477397024632,0.000298883096547797,0.99908584356308,-0.0257351100444794,0.00115514977369457,0.999668180942535,-0.00843239389359951,0.00129648123402148,0.999963641166687,-0.0425410754978657,0.000298328610369936,0.999094724655151,-3.87086147384252e-005,0.999992966651917,0.00375660345889628,-7.30237297830172e-005,0.999987900257111,0.00493433373048902,3.54636836163991e-006,0.999999701976776,0.000857985869515687,-1.51500489664613e-005,0.999998152256012,0.00197134050540626,-0.00445218337699771,-0.000128417406813242,-0.999990165233612,-0.0104827815666795,-0.000161777890753001,-0.999945104122162,-0.0102674420922995,-0.000150816020322964,-0.999947249889374,-0.00759778264909983,-0.000113106762000825,-0.999971151351929,-1.27777036595944e-006,-0.99999988079071,-0.000565476017072797,4.47943275503349e-005,-0.999994933605194,-0.00320590124465525,2.28012631851016e-005,-0.999996542930603,-0.00265833316370845,9.41245707508642e-006,-0.999999403953552,-0.00118173775263131,0.209248453378677,-0.0978801995515823,0.972951471805573,-0.210977137088776,0.0697110593318939,0.97500216960907,-0.212887689471245,-0.0707450956106186,0.974512159824371,0.207632228732109,0.0964550599455833,0.973439991474152,0.215467572212219,0.170845791697502,-0.961449682712555,0.229740023612976,-0.108932837843895,-0.967136561870575,-0.263353109359741,-0.0406765453517437,-0.963841617107391,-0.265181183815002,0.0472155697643757,-0.96304190158844,-0.265181183815002,0.0472155697643757,-0.96304190158844,-0.56494414806366,-0.269199371337891,-0.779980659484863,0.65453040599823,0.144992902874947,-0.742002069950104,0.215467572212219,0.170845791697502,-0.961449682712555,-0.471624433994293,0.354172378778458,-0.807547211647034,-0.56494414806366,-0.269199371337891,-0.779980659484863,-0.265181183815002,0.0472155697643757,-0.96304190158844,-0.263353109359741,-0.0406765453517437,-0.963841617107391,
  456. 0.597042679786682,-0.20708854496479,-0.775018930435181,-0.471624433994293,0.354172378778458,-0.807547211647034,-0.263353109359741,-0.0406765453517437,-0.963841617107391,0.229740023612976,-0.108932837843895,-0.967136561870575,0.65453040599823,0.144992902874947,-0.742002069950104,0.597042679786682,-0.20708854496479,-0.775018930435181,0.229740023612976,-0.108932837843895,-0.967136561870575,0.215467572212219,0.170845791697502,-0.961449682712555,0.00401495909318328,-0.999991953372955,0.000271237309789285,0.00450177118182182,-0.999989867210388,0.000261098582996055,0.00428605824708939,-0.999990820884705,-5.10683821630664e-005,0.00315131945535541,-0.999995112419128,-4.75613669550512e-005,-0.0438307002186775,-0.00546003691852093,0.999024033546448,-0.0488436780869961,-0.0055168978869915,0.998791217803955,-0.0544985383749008,-0.00864932686090469,0.998476386070251,-0.055333323776722,-0.00865189265459776,0.998430550098419,0.00526456069201231,0.999986171722412,-0.000276341015705839,0.0073522012680769,0.999972999095917,-0.000292873475700617,0.00608108844608068,0.999981582164764,3.64318875654135e-005,0.00423680152744055,0.999991059303284,4.21369659306947e-005,0.000538454449269921,0.00849439576268196,-0.999963879585266,0.00351079436950386,0.00541893113404512,-0.999979197978973,0.00432418659329414,0.00541242538020015,-0.999976098537445,-0.00101195718161762,0.00849966052919626,-0.999963343143463,0.00592589611187577,0.999982416629791,-0.000480865477584302,0.00675694597885013,0.999977111816406,-0.000332948926370591,0.0073522012680769,0.999972999095917,-0.000292873475700617,0.00526456069201231,0.999986171722412,-0.000276341015705839,-0.0388101562857628,-2.79507257801015e-005,0.999246597290039,-0.0377495847642422,-2.67870636889711e-005,0.999287307262421,-0.0488436780869961,-0.0055168978869915,0.998791217803955,-0.0438307002186775,-0.00546003691852093,0.999024033546448,0.00321161444298923,-0.999994814395905,0.000327889516483992,0.00462794024497271,-0.99998927116394,0.000463997479528189,0.00450177118182182,-0.999989867210388,0.000261098582996055,
  457. 0.00401495909318328,-0.999991953372955,0.000271237309789285,0.00351079436950386,0.00541893113404512,-0.999979197978973,0.0185200031846762,2.88116461888421e-006,-0.999828577041626,0.0271053202450275,1.33394485146709e-006,-0.999632656574249,0.00432418659329414,0.00541242538020015,-0.999976098537445,0.191148728132248,0.0957759767770767,0.976877272129059,0.574326992034912,0.199145093560219,0.794033885002136,0.686421513557434,-0.0908511951565742,0.721506416797638,0.195830404758453,-0.0702231302857399,0.978120267391205,-0.0231525767594576,0.0727218687534332,0.99708354473114,-0.337545663118362,-0.274719744920731,0.900328874588013,0.574326992034912,0.199145093560219,0.794033885002136,0.191148728132248,0.0957759767770767,0.976877272129059,-0.500164806842804,0.242441207170486,0.83129870891571,-0.337545663118362,-0.274719744920731,0.900328874588013,-0.0231525767594576,0.0727218687534332,0.99708354473114,-0.018697913736105,-0.129134461283684,0.991450786590576,0.195830404758453,-0.0702231302857399,0.978120267391205,0.686421513557434,-0.0908511951565742,0.721506416797638,-0.500164806842804,0.242441207170486,0.83129870891571,-0.018697913736105,-0.129134461283684,0.991450786590576,-0.608224272727966,-0.168628796935081,0.77564662694931,0.424454420804977,0.395406603813171,0.814550161361694,0.207632228732109,0.0964550599455833,0.973439991474152,-0.212887689471245,-0.0707450956106186,0.974512159824371,-0.541355788707733,0.249099224805832,0.803046345710754,-0.608224272727966,-0.168628796935081,0.77564662694931,-0.212887689471245,-0.0707450956106186,0.974512159824371,-0.210977137088776,0.0697110593318939,0.97500216960907,0.209248453378677,-0.0978801995515823,0.972951471805573,0.514884054660797,-0.305428683757782,0.80100417137146,-0.541355788707733,0.249099224805832,0.803046345710754,-0.210977137088776,0.0697110593318939,0.97500216960907,0.424454420804977,0.395406603813171,0.814550161361694,0.514884054660797,-0.305428683757782,0.80100417137146,0.209248453378677,-0.0978801995515823,0.972951471805573,0.207632228732109,0.0964550599455833,0.973439991474152,
  458. -0.0377495847642422,-2.67870636889711e-005,0.999287307262421,-0.0388101562857628,-2.79507257801015e-005,0.999246597290039,-0.0389639958739281,-4.83653566334397e-005,0.999240636825562,-0.0385050624608994,-4.4590651668841e-005,0.999258458614349,0.00462794024497271,-0.99998927116394,0.000463997479528189,0.00321161444298923,-0.999994814395905,0.000327889516483992,0.00294980476610363,-0.999995648860931,-7.98678206903602e-011,0.00340426969341934,-0.999994218349457,-9.21727416614004e-011,0.0391911342740059,0.000134418325615115,-0.999231696128845,0.0382761731743813,0.000126574101159349,-0.999267280101776,0.0271053202450275,1.33394485146709e-006,-0.999632656574249,0.0185200031846762,2.88116461888421e-006,-0.999828577041626,0.00675694597885013,0.999977111816406,-0.000332948926370591,0.00592589611187577,0.999982416629791,-0.000480865477584302,0.00488597899675369,0.99998813867569,9.84324149966298e-011,0.00612865760922432,0.999981224536896,1.234672919459e-010,3.54636836163991e-006,0.999999701976776,0.000857985869515687,-2.86047470581252e-005,0.999998390674591,-0.00181879277806729,-2.80173953797203e-005,0.999998390674591,-0.00181880174204707,-1.51500489664613e-005,0.999998152256012,0.00197134050540626,0.00616306206211448,0.000138781455461867,0.999980986118317,0.00612133229151368,0.00013855476572644,0.999981343746185,0.00607960112392902,0.000138328075991012,0.999981582164764,0.00612133229151368,0.000138554780278355,0.999981343746185,2.33012306125602e-005,-0.999999046325684,0.00142894859891385,2.37252897932194e-005,-0.999999046325684,0.00142894207965583,-1.27777036595944e-006,-0.99999988079071,-0.000565476017072797,9.41245707508642e-006,-0.999999403953552,-0.00118173775263131,-0.00759778264909983,-0.000113106762000825,-0.999971151351929,-0.00137755216564983,-0.000256414146861061,-0.999999105930328,-0.0013600765960291,-0.00025632104370743,-0.999999105930328,-0.00445218337699771,-0.000128417406813242,-0.999990165233612,-0.00916376430541277,0.00229541747830808,-0.999955475330353,0.0186830572783947,0.00164271052926779,-0.999824166297913,
  459. 0.0467933714389801,0.00159157672896981,-0.998903334140778,-0.00854003988206387,0.0023056622594595,-0.999960958957672,8.84604105522158e-006,0.999998986721039,-0.00144475337583572,0.000285272457404062,0.999955356121063,-0.0094519192352891,0.000112970090413,0.999979913234711,-0.00633623218163848,9.38586072152248e-006,0.999998986721039,-0.00144475034903735,-7.64001961215399e-005,-0.999989449977875,0.00461586099117994,-0.000175146531546488,-0.999981820583344,0.00603253394365311,9.58068653744704e-007,-0.999999701976776,0.000882783206179738,4.358362275525e-007,-0.999999642372131,0.000882780062966049,-0.12157991528511,0.0908214077353477,0.98841780424118,-0.126947194337845,-0.0586354956030846,0.990174949169159,0.141185864806175,-0.0572992190718651,0.988323569297791,0.140758186578751,0.0587387345731258,0.988300025463104,-0.287072747945786,-0.0727940574288368,-0.955138862133026,0.154124185442925,-0.201964229345322,-0.967189848423004,0.123788915574551,-0.0177561994642019,-0.992149710655212,-0.284487694501877,0.10538823902607,-0.952869474887848,0.0108037116006017,-0.000612372125033289,0.999941527843475,0.0102748144418001,-0.000621622311882675,0.999947011470795,0.00294882943853736,-0.000250376091571525,0.999995648860931,0.00669668661430478,-0.000234882900258526,0.999977648258209,0.141185864806175,-0.0572992190718651,0.988323569297791,-0.126947194337845,-0.0586354956030846,0.990174949169159,-0.530107200145721,-0.15545842051506,0.833558082580566,0.440210789442062,0.288777321577072,0.850189566612244,-0.530107200145721,-0.15545842051506,0.833558082580566,-0.126947194337845,-0.0586354956030846,0.990174949169159,-0.12157991528511,0.0908214077353477,0.98841780424118,-0.561315953731537,0.107979848980904,0.820527136325836,0.489172339439392,-0.222863420844078,0.843233227729797,-0.561315953731537,0.107979848980904,0.820527136325836,-0.12157991528511,0.0908214077353477,0.98841780424118,0.140758186578751,0.0587387345731258,0.988300025463104,0.140758186578751,0.0587387345731258,0.988300025463104,0.141185864806175,-0.0572992190718651,0.988323569297791,
  460. 0.440210789442062,0.288777321577072,0.850189566612244,0.489172339439392,-0.222863420844078,0.843233227729797,0.0751186162233353,0.000532221514731646,-0.997174501419067,0.0467933714389801,0.00159157672896981,-0.998903334140778,0.0186830572783947,0.00164271052926779,-0.999824166297913,0.0740907266736031,0.000528415024746209,-0.997251391410828,0.000112970090413,0.999979913234711,-0.00633623218163848,0.000285272457404062,0.999955356121063,-0.0094519192352891,1.69360237123328e-006,0.999998986721039,-0.00143001065589488,7.24606870790012e-005,0.999994516372681,-0.00332262692973018,0.00349844340234995,-0.000123757214169018,0.999993920326233,0.00669668661430478,-0.000234882900258526,0.999977648258209,0.00294882943853736,-0.000250376091571525,0.999995648860931,0.00349642289802432,-0.000107579639006872,0.999993920326233,-1.92729135051195e-006,-0.999999582767487,0.000960514531470835,-0.000175146531546488,-0.999981820583344,0.00603253394365311,-7.64001961215399e-005,-0.999989449977875,0.00461586099117994,-4.251373684383e-005,-0.999998033046722,0.00199689180590212,-0.237302884459496,0.0515076331794262,-0.970069229602814,0.200643554329872,0.119042046368122,-0.972404897212982,0.203186318278313,-0.118151262402534,-0.971985399723053,-0.235529333353043,-0.0490985065698624,-0.970626294612885,-0.230537578463554,0.112506799399853,0.966537475585938,-0.238448619842529,-0.0744640082120895,0.968296229839325,0.227986320853233,0.108375824987888,0.967614054679871,0.229627996683121,-0.108531467616558,0.967208385467529,0.229627996683121,-0.108531467616558,0.967208385467529,0.523288667201996,-0.321579068899155,0.78914886713028,-0.632037401199341,0.180645301938057,0.753588795661926,-0.230537578463554,0.112506799399853,0.966537475585938,0.412545949220657,0.415236830711365,0.810792446136475,0.523288667201996,-0.321579068899155,0.78914886713028,0.229627996683121,-0.108531467616558,0.967208385467529,0.227986320853233,0.108375824987888,0.967614054679871,-0.551886141300201,-0.266736090183258,0.790109872817993,0.412545949220657,0.415236830711365,0.810792446136475,
  461. 0.227986320853233,0.108375824987888,0.967614054679871,-0.238448619842529,-0.0744640082120895,0.968296229839325,-0.632037401199341,0.180645301938057,0.753588795661926,-0.551886141300201,-0.266736090183258,0.790109872817993,-0.238448619842529,-0.0744640082120895,0.968296229839325,-0.230537578463554,0.112506799399853,0.966537475585938,-0.00660691503435373,-0.999977827072144,-0.000933264207560569,-0.00923177693039179,-0.999957025051117,-0.000897106307093054,-0.00436325324699283,-0.999990463256836,0.000230348217883147,-0.00604406790807843,-0.999981760978699,0.00025404104962945,0.0457561835646629,-0.00441295513883233,-0.998942911624908,0.0514194220304489,-0.00450153555721045,-0.998667001724243,0.0572776310145855,-0.00864816643297672,-0.998320937156677,0.0583108626306057,-0.00865112245082855,-0.998261034488678,-0.00139819434843957,0.999998569488525,0.00095593259902671,-0.00364963221363723,0.999992847442627,0.00101127149537206,-0.00571637134999037,0.999983668327332,-0.000165975681738928,-0.00620195409283042,0.999980807304382,-0.000159123112098314,0.00962688028812408,0.00848594401031733,0.99991762638092,0.000988378305919468,0.00447101471945643,0.99998950958252,-0.00650033028796315,0.00442167650908232,0.999969124794006,0.0115454094484448,0.00848464015871286,0.999897360801697,-0.00620307726785541,0.999979734420776,0.00144700752571225,-0.0106426728889346,0.99994283914566,0.00101168116088957,-0.00364963221363723,0.999992847442627,0.00101127149537206,-0.00139819434843957,0.999998569488525,0.00095593259902671,0.0391083881258965,5.06176911585499e-006,-0.999235033988953,0.0386577919125557,4.89985541207716e-006,-0.999252557754517,0.0514194220304489,-0.00450153555721045,-0.998667001724243,0.0457561835646629,-0.00441295513883233,-0.998942911624908,0.00214702403172851,-0.999997317790985,-0.000983541714958847,-0.00205652299337089,-0.999997019767761,-0.0013750575017184,-0.00923177693039179,-0.999957025051117,-0.000897106307093054,-0.00660691503435373,-0.999977827072144,-0.000933264207560569,0.000988378305919468,0.00447101471945643,0.99998950958252,
  462. -0.0243240408599377,-1.66863924278005e-006,0.999704241752625,-0.0303946044296026,-1.74922515725484e-005,0.999537944793701,-0.00650033028796315,0.00442167650908232,0.999969124794006,-0.284487694501877,0.10538823902607,-0.952869474887848,-0.641206383705139,0.244603753089905,-0.72733998298645,-0.786446928977966,-0.0534970983862877,-0.615336894989014,-0.287072747945786,-0.0727940574288368,-0.955138862133026,0.123788915574551,-0.0177561994642019,-0.992149710655212,0.331501662731171,-0.398952573537827,-0.854952335357666,-0.641206383705139,0.244603753089905,-0.72733998298645,-0.284487694501877,0.10538823902607,-0.952869474887848,0.594583213329315,0.249995023012161,-0.76418149471283,0.331501662731171,-0.398952573537827,-0.854952335357666,0.123788915574551,-0.0177561994642019,-0.992149710655212,0.154124185442925,-0.201964229345322,-0.967189848423004,-0.287072747945786,-0.0727940574288368,-0.955138862133026,-0.786446928977966,-0.0534970983862877,-0.615336894989014,0.594583213329315,0.249995023012161,-0.76418149471283,0.154124185442925,-0.201964229345322,-0.967189848423004,0.631289124488831,-0.12968821823597,-0.76462733745575,-0.476669281721115,0.335353642702103,-0.81260347366333,-0.235529333353043,-0.0490985065698624,-0.970626294612885,0.203186318278313,-0.118151262402534,-0.971985399723053,0.578652381896973,0.194340765476227,-0.792081594467163,0.631289124488831,-0.12968821823597,-0.76462733745575,0.203186318278313,-0.118151262402534,-0.971985399723053,0.200643554329872,0.119042046368122,-0.972404897212982,-0.237302884459496,0.0515076331794262,-0.970069229602814,-0.553224563598633,-0.254547655582428,-0.793188571929932,0.578652381896973,0.194340765476227,-0.792081594467163,0.200643554329872,0.119042046368122,-0.972404897212982,-0.476669281721115,0.335353642702103,-0.81260347366333,-0.553224563598633,-0.254547655582428,-0.793188571929932,-0.237302884459496,0.0515076331794262,-0.970069229602814,-0.235529333353043,-0.0490985065698624,-0.970626294612885,0.0386577919125557,4.89985541207716e-006,-0.999252557754517,0.0391083881258965,5.06176911585499e-006,-0.999235033988953,
  463. 0.038964968174696,1.0389481758466e-005,-0.999240577220917,0.0385054647922516,9.58086820901372e-006,-0.999258399009705,-0.00205652299337089,-0.999997019767761,-0.0013750575017184,0.00214702403172851,-0.999997317790985,-0.000983541714958847,-0.00294959126040339,-0.999995648860931,-5.14920528091323e-012,0.00147244380787015,-0.999998927116394,2.57049676682941e-012,-0.039191659539938,0.000134422807605006,0.99923175573349,-0.0382766164839268,0.000126577884657308,0.999267220497131,-0.0303946044296026,-1.74922515725484e-005,0.999537944793701,-0.0243240408599377,-1.66863924278005e-006,0.999704241752625,-0.0106426728889346,0.99994283914566,0.00101168116088957,-0.00620307726785541,0.999979734420776,0.00144700752571225,-0.00949412304908037,0.99995493888855,2.30192448436028e-010,-0.00612838706001639,0.999981284141541,1.48587545045764e-010,1.69360237123328e-006,0.999998986721039,-0.00143001065589488,4.45178375230171e-005,0.999997496604919,0.00227503129281104,4.39060204371344e-005,0.999997437000275,0.00227504316717386,7.24606870790012e-005,0.999994516372681,-0.00332262692973018,-0.011587355285883,0.000141945158247836,-0.999932885169983,-0.0115448264405131,0.000141750249895267,-0.999933421611786,-0.0115022994577885,0.000141555370646529,-0.999933898448944,-0.0115448273718357,0.000141750249895267,-0.999933421611786,-3.5836041206494e-005,-0.999998450279236,-0.00178578076884151,-3.61170132237021e-005,-0.999998390674591,-0.00178577518090606,-1.92729135051195e-006,-0.999999582767487,0.000960514531470835,-4.251373684383e-005,-0.999998033046722,0.00199689180590212,0.00349642289802432,-0.000107579639006872,0.999993920326233,0.00744277331978083,-0.000244369264692068,0.999972283840179,0.00744612514972687,-0.000244384340476245,0.999972224235535,0.00349844340234995,-0.000123757214169018,0.999993920326233,0.521052181720734,0.255592823028564,-0.814356803894043,0.0247390251606703,-0.209874168038368,-0.977415382862091,-0.0418799258768559,0.0857344195246696,-0.995437502861023,-0.754497408866882,0.16456937789917,-0.635335028171539,-0.701382756233215,-0.00726319756358862,0.712747991085052,
  464. -0.0334119759500027,0.0189193189144135,0.999262571334839,0.0331342779099941,0.216783568263054,0.975657224655151,0.651756227016449,-0.064964585006237,0.755641102790833,0.481268376111984,0,-0.876573383808136,0.440840601921082,0,-0.897585511207581,-0.00445215497165918,-0,-0.999990165233612,-0.436763018369675,-0,-0.899576723575592,-0.00203354912810028,-0,-0.999998033046722,-0.627871155738831,-0,-0.778317332267761,0.481268376111984,0,-0.876573383808136,0.641664266586304,0,-0.766985654830933,0.440840601921082,0,-0.897585511207581,0.641664266586304,0,-0.766985654830933,-0.00203354912810028,-0,-0.999998033046722,0.440840601921082,0,-0.897585511207581,-0.436763018369675,-0,-0.899576723575592,-0.627871155738831,-0,-0.778317332267761,-0.47100231051445,-0,-0.882131993770599,-0.00445215497165918,-0,-0.999990165233612,-0.436763018369675,-0,-0.899576723575592,-0.47100231051445,-0,-0.882131993770599,0.440840601921082,0,-0.897585511207581,-0.00203354912810028,-0,-0.999998033046722,-0.00445215497165918,-0,-0.999990165233612,-0.00445215497165918,-0,-0.999990165233612,-0.00203354912810028,-0,-0.999998033046722,-0.436763018369675,-0,-0.899576723575592,0.48129203915596,1.94260746866348e-006,-0.87656044960022,0.0143350530415773,2.13175644603325e-006,-0.999897301197052,0.440846413373947,3.78767595066165e-007,-0.897582530975342,-0.409940421581268,3.75522319018273e-007,-0.912112414836884,-0.611247181892395,0,-0.791439712047577,-0.00205739610828459,0,-0.999997913837433,0.48129203915596,1.94260746866348e-006,-0.87656044960022,0.440846413373947,3.78767595066165e-007,-0.897582530975342,0.641697943210602,0,-0.766957581043243,0.641697943210602,0,-0.766957581043243,0.440846413373947,3.78767595066165e-007,-0.897582530975342,-0.00205739610828459,0,-0.999997913837433,-0.409940421581268,3.75522319018273e-007,-0.912112414836884,-0.418121159076691,1.83492886662862e-006,-0.908391356468201,-0.611247181892395,0,-0.791439712047577,0.0143350530415773,2.13175644603325e-006,-0.999897301197052,-0.418121159076691,1.83492886662862e-006,-0.908391356468201,-0.409940421581268,3.75522319018273e-007,-0.912112414836884,
  465. 0.440846413373947,3.78767595066165e-007,-0.897582530975342,0.0143350530415773,2.13175644603325e-006,-0.999897301197052,-0.00205739610828459,0,-0.999997913837433,0.0143350530415773,2.13175644603325e-006,-0.999897301197052,-0.409940421581268,3.75522319018273e-007,-0.912112414836884,-0.00205739610828459,0,-0.999997913837433,-0.998611867427826,-0.0518009401857853,0.00954596046358347,-0.999767482280731,0.0135564403608441,0.0167697686702013,-0.998670876026154,0.013531731441617,-0.0497341752052307,-0.991020977497101,0.123457632958889,-0.051338903605938,0.991679131984711,0.106726959347725,-0.0719859823584557,0.99743926525116,-0.0081343175843358,-0.0710556209087372,0.999584555625916,-0.0129167418926954,0.0257668606936932,0.963969349861145,0.265098482370377,0.0220428425818682,-0.00191460293717682,0.00674731563776731,-0.999975442886353,-0.0070046866312623,-0.00509761599823833,-0.999962568283081,0.0495206378400326,-0.00262188725173473,-0.998769760131836,0.0486170314252377,0.119650162756443,-0.991625070571899,0.0412165597081184,0.0180511809885502,0.998987197875977,0.0368577875196934,-0.000951248861383647,0.999320149421692,-0.0372367948293686,0.0039046963211149,0.999298870563507,-0.0319676138460636,0.265778183937073,0.963504076004028,-0.718321144580841,0.0278262048959732,0.695154964923859,-0.998611867427826,-0.0518009401857853,0.00954596046358347,-0.991020977497101,0.123457632958889,-0.051338903605938,-0.593195855617523,0.223129346966743,-0.773519277572632,-0.999171853065491,0.0374873355031013,-0.0158187188208103,-0.991486251354218,0.123017072677612,0.0426834560930729,-0.621284127235413,0.14402662217617,0.770235300064087,-1,0.000142772914841771,6.74442198942415e-005,-0.707784950733185,0.0356748886406422,-0.705526649951935,-0.996565103530884,-0.0709495544433594,-0.0427101477980614,-0.707887589931488,-0.00120675575453788,-0.70632416009903,-0.00191460293717682,0.00674731563776731,-0.999975442886353,0.0486170314252377,0.119650162756443,-0.991625070571899,0.582709074020386,-0.239289343357086,-0.776653587818146,0.707956433296204,-0.00189548754133284,0.706253588199615,
  466. 0.0412165597081184,0.0180511809885502,0.998987197875977,-0.0319676138460636,0.265778183937073,0.963504076004028,-0.699323892593384,-0.0195705145597458,0.714536964893341,0.728206396102905,0.0554621368646622,-0.683110117912292,0.991679131984711,0.106726959347725,-0.0719859823584557,0.963969349861145,0.265098482370377,0.0220428425818682,0.583224177360535,0.238726928830147,0.776440024375916,0.948808252811432,0.290974408388138,0.122869737446308,0.98684549331665,0.160482183098793,-0.0195352099835873,0.616110324859619,0.137600943446159,-0.775547683238983,0.998323440551758,0.0577881187200546,0.00328680640086532,0.708765625953674,0.0350072085857391,0.704574882984161,0.997663378715515,-0.0252728909254074,0.0634760633111,-0.998611867427826,-0.0518009401857853,0.00954596046358347,-0.0338049381971359,0.00992756150662899,0.999379217624664,-0.0373673141002655,-0.00634497590363026,0.999281466007233,-0.999767482280731,0.0135564403608441,0.0167697686702013,-0.00198182580061257,-0.00105861423071474,-0.999997496604919,-0.991020977497101,0.123457632958889,-0.051338903605938,-0.998670876026154,0.013531731441617,-0.0497341752052307,-0.00694324402138591,0.00359182269312441,-0.999969482421875,0.0411552749574184,-0.00220746221020818,0.999150395393372,0.963969349861145,0.265098482370377,0.0220428425818682,0.999584555625916,-0.0129167418926954,0.0257668606936932,0.0369750820100307,0.00617857463657856,0.999297142028809,0.991679131984711,0.106726959347725,-0.0719859823584557,0.0478678606450558,-0.0185397639870644,-0.998681604862213,0.0495280399918556,-0.00168253236915916,-0.9987713098526,0.99743926525116,-0.0081343175843358,-0.0710556209087372,-0.699323892593384,-0.0195705145597458,0.714536964893341,-0.0319676138460636,0.265778183937073,0.963504076004028,-0.965891301631927,0.258867651224136,0.00646162312477827,-0.621284127235413,0.14402662217617,0.770235300064087,-0.991486251354218,0.123017072677612,0.0426834560930729,-0.0331144705414772,0.126263856887817,0.991443812847137,-0.593195855617523,0.223129346966743,-0.773519277572632,-0.991020977497101,0.123457632958889,-0.051338903605938,
  467. 0.00104830786585808,0.337573349475861,-0.94129866361618,-0.754497408866882,0.16456937789917,-0.635335028171539,-0.0418799258768559,0.0857344195246696,-0.995437502861023,-0.996575891971588,0.071282334625721,-0.0418966971337795,0.0397110916674137,0.351744383573532,0.935253381729126,0.583224177360535,0.238726928830147,0.776440024375916,0.963969349861145,0.265098482370377,0.0220428425818682,0.651756227016449,-0.064964585006237,0.755641102790833,0.0331342779099941,0.216783568263054,0.975657224655151,0.994660496711731,0.0813899412751198,0.0634533613920212,-0.935068607330322,-0.347576647996902,0.0695510804653168,-0.785281419754028,-0.467137485742569,0.406344354152679,-0.0462261438369751,-0.461623400449753,0.885870814323425,0.616110324859619,0.137600943446159,-0.775547683238983,0.98684549331665,0.160482183098793,-0.0195352099835873,0.0243712347000837,0.122473798692226,-0.992172479629517,-0.0326490998268127,0.00407514069229364,-0.999458611011505,0.0460102297365665,0.00405254540964961,-0.998932838439941,0.0495206378400326,-0.00262188725173473,-0.998769760131836,-0.0070046866312623,-0.00509761599823833,-0.999962568283081,0.0460063889622688,0.00213930453173816,-0.998938858509064,0.998377323150635,-0.0115484399721026,-0.0557626895606518,0.99743926525116,-0.0081343175843358,-0.0710556209087372,0.0495280399918556,-0.00168253236915916,-0.9987713098526,0.998377323150635,-0.0115484399721026,-0.0557626895606518,0.999117791652679,-0.00202338537201285,0.0419479534029961,0.999584555625916,-0.0129167418926954,0.0257668606936932,0.99743926525116,-0.0081343175843358,-0.0710556209087372,0.999117791652679,-0.00202338537201285,0.0419479534029961,0.0299409329891205,0.00617724098265171,0.999532580375671,0.0369750820100307,0.00617857463657856,0.999297142028809,0.999584555625916,-0.0129167418926954,0.0257668606936932,0.0298629347234964,-0.00480498094111681,0.999542415142059,-0.0404812730848789,-0.00759246340021491,0.999151468276978,-0.0372367948293686,0.0039046963211149,0.999298870563507,0.0368577875196934,-0.000951248861383647,0.999320149421692,
  468. -0.0404737368226051,-0.00588570022955537,0.999163269996643,-0.998852431774139,0.006045444868505,0.0475117340683937,-0.999767482280731,0.0135564403608441,0.0167697686702013,-0.0373673141002655,-0.00634497590363026,0.999281466007233,-0.998852431774139,0.006045444868505,0.0475117340683937,-0.998980760574341,-0.00131249811965972,-0.045120645314455,-0.998670876026154,0.013531731441617,-0.0497341752052307,-0.999767482280731,0.0135564403608441,0.0167697686702013,-0.998670876026154,0.013531731441617,-0.0497341752052307,-0.998980760574341,-0.00131249811965972,-0.045120645314455,-0.0326489806175232,0.00361526221968234,-0.999460339546204,-0.00694324402138591,0.00359182269312441,-0.999969482421875,0.98684549331665,0.160482183098793,-0.0195352099835873,0.997663378715515,-0.0252728909254074,0.0634760633111,0.998484194278717,0.00804576650261879,0.0544479787349701,0.999548256397247,0.00356470514088869,-0.0298430882394314,0.997663378715515,-0.0252728909254074,0.0634760633111,0.0338207110762596,-0.0092236939817667,0.999385416507721,0.031468853354454,-0.00791257806122303,0.999473452568054,0.998484194278717,0.00804576650261879,0.0544479787349701,0.0331342779099941,0.216783568263054,0.975657224655151,-0.0334119759500027,0.0189193189144135,0.999262571334839,-0.0360562540590763,-0.00207391451112926,0.999347686767578,0.0314672216773033,-0.0077290078625083,0.999474942684174,-0.0334255397319794,-0.00486257439479232,0.99942946434021,-0.991486251354218,0.123017072677612,0.0426834560930729,-0.998532056808472,-0.0069859940558672,0.0537128746509552,-0.036070704460144,-0.000478518661111593,0.999349176883698,-0.991486251354218,0.123017072677612,0.0426834560930729,-0.996565103530884,-0.0709495544433594,-0.0427101477980614,-0.999096989631653,-0.00459629856050015,-0.0422386825084686,-0.998532056808472,-0.0069859940558672,0.0537128746509552,-0.042981032282114,-0.00169564934913069,-0.999074459075928,-0.999096989631653,-0.00459629856050015,-0.0422386825084686,-0.996565103530884,-0.0709495544433594,-0.0427101477980614,-0.0417270362377167,-0.00468007195740938,-0.999118149280548,
  469. -0.0418799258768559,0.0857344195246696,-0.995437502861023,0.0247390251606703,-0.209874168038368,-0.977415382862091,0.0319873206317425,0.00699438061565161,-0.999463856220245,-0.0429831966757774,-0.000857002974953502,-0.999075472354889,0.0247630458325148,0.0259065944701433,-0.999357640743256,0.98684549331665,0.160482183098793,-0.0195352099835873,0.999548256397247,0.00356470514088869,-0.0298430882394314,0.0319609865546227,0.0191358830779791,-0.999305903911591,0.0314672216773033,-0.0077290078625083,0.999474942684174,-0.0360562540590763,-0.00207391451112926,0.999347686767578,-0.0404812730848789,-0.00759246340021491,0.999151468276978,0.0298629347234964,-0.00480498094111681,0.999542415142059,0.998484194278717,0.00804576650261879,0.0544479787349701,0.031468853354454,-0.00791257806122303,0.999473452568054,0.0299409329891205,0.00617724098265171,0.999532580375671,0.999117791652679,-0.00202338537201285,0.0419479534029961,0.999548256397247,0.00356470514088869,-0.0298430882394314,0.998484194278717,0.00804576650261879,0.0544479787349701,0.999117791652679,-0.00202338537201285,0.0419479534029961,0.998377323150635,-0.0115484399721026,-0.0557626895606518,0.0319609865546227,0.0191358830779791,-0.999305903911591,0.999548256397247,0.00356470514088869,-0.0298430882394314,0.998377323150635,-0.0115484399721026,-0.0557626895606518,0.0460063889622688,0.00213930453173816,-0.998938858509064,-0.0429831966757774,-0.000857002974953502,-0.999075472354889,0.0319873206317425,0.00699438061565161,-0.999463856220245,0.0460102297365665,0.00405254540964961,-0.998932838439941,-0.0326490998268127,0.00407514069229364,-0.999458611011505,-0.0326489806175232,0.00361526221968234,-0.999460339546204,-0.998980760574341,-0.00131249811965972,-0.045120645314455,-0.999096989631653,-0.00459629856050015,-0.0422386825084686,-0.042981032282114,-0.00169564934913069,-0.999074459075928,-0.998532056808472,-0.0069859940558672,0.0537128746509552,-0.999096989631653,-0.00459629856050015,-0.0422386825084686,-0.998980760574341,-0.00131249811965972,-0.045120645314455,-0.998852431774139,0.006045444868505,0.0475117340683937,
  470. -0.036070704460144,-0.000478518661111593,0.999349176883698,-0.998532056808472,-0.0069859940558672,0.0537128746509552,-0.998852431774139,0.006045444868505,0.0475117340683937,-0.0404737368226051,-0.00588570022955537,0.999163269996643,-0.814298212528229,-0.255896806716919,0.520994484424591,-0.988329708576202,0.150362193584442,0.0244043935090303,-0.994441509246826,-0.0964362248778343,-0.0422636792063713,-0.635332524776459,-0.164723068475723,-0.75446605682373,0.712795734405518,0.00749200582504272,-0.701331734657288,0.999074757099152,-0.0260762330144644,-0.0342031605541706,0.973751425743103,-0.225245445966721,0.0327532961964607,0.755723357200623,0.0648289769887924,0.651674270629883,-0.876585900783539,-7.46868636269937e-007,0.481245517730713,-0.897586166858673,-1.60651989489224e-008,0.440839260816574,-0.999990284442902,-2.37578949568995e-011,-0.00442989310249686,-0.899572312831879,2.0850206283729e-010,-0.436772048473358,-0.999998033046722,-6.19836057480505e-011,-0.00202130549587309,-0.778307795524597,-9.60940724326065e-007,-0.627882957458496,-0.876585900783539,-7.46868636269937e-007,0.481245517730713,-0.767019212245941,-9.94840320345247e-007,0.641624271869659,-0.897586166858673,-1.60651989489224e-008,0.440839260816574,-0.767019212245941,-9.94840320345247e-007,0.641624271869659,-0.999998033046722,-6.19836057480505e-011,-0.00202130549587309,-0.897586166858673,-1.60651989489224e-008,0.440839260816574,-0.899572312831879,2.0850206283729e-010,-0.436772048473358,-0.778307795524597,-9.60940724326065e-007,-0.627882957458496,-0.882124304771423,-7.6559524586628e-007,-0.471016854047775,-0.999990284442902,-2.37578949568995e-011,-0.00442989310249686,-0.899572312831879,2.0850206283729e-010,-0.436772048473358,-0.882124304771423,-7.6559524586628e-007,-0.471016854047775,-0.897586166858673,-1.60651989489224e-008,0.440839260816574,-0.999998033046722,-6.19836057480505e-011,-0.00202130549587309,-0.999990284442902,-2.37578949568995e-011,-0.00442989310249686,-0.999990284442902,-2.37578949568995e-011,-0.00442989310249686,-0.999998033046722,-6.19836057480505e-011,-0.00202130549587309,
  471. -0.899572312831879,2.0850206283729e-010,-0.436772048473358,-0.876575887203217,0,0.481263726949692,-0.999896645545959,0,0.0143809001892805,-0.897582411766052,0,0.440846890211105,-0.912127375602722,6.72797728640262e-009,-0.409907042980194,-0.791456937789917,7.86970755228822e-009,-0.611224949359894,-0.999998033046722,-0,-0.00202103029005229,-0.876575887203217,0,0.481263726949692,-0.897582411766052,0,0.440846890211105,-0.766986548900604,0,0.641663193702698,-0.766986548900604,0,0.641663193702698,-0.897582411766052,0,0.440846890211105,-0.999998033046722,-0,-0.00202103029005229,-0.912127375602722,6.72797728640262e-009,-0.409907042980194,-0.90840744972229,5.38060573873622e-009,-0.418086051940918,-0.791456937789917,7.86970755228822e-009,-0.611224949359894,-0.999896645545959,0,0.0143809001892805,-0.90840744972229,5.38060573873622e-009,-0.418086051940918,-0.912127375602722,6.72797728640262e-009,-0.409907042980194,-0.897582411766052,0,0.440846890211105,-0.999896645545959,0,0.0143809001892805,-0.999998033046722,-0,-0.00202103029005229,-0.999896645545959,0,0.0143809001892805,-0.912127375602722,6.72797728640262e-009,-0.409907042980194,-0.999998033046722,-0,-0.00202103029005229,0.00927518215030432,0.0565890520811081,-0.998354554176331,0.0162796787917614,-0.00715900678187609,-0.999841868877411,-0.0497632324695587,-0.00972977932542562,-0.998713731765747,-0.0513836964964867,-0.118101015686989,-0.9916712641716,-0.0722103118896484,-0.143645614385605,0.986991226673126,-0.0710435435175896,0.00299461046233773,0.997468829154968,0.0259666964411736,0.0119498241692781,0.999591469764709,0.0221033710986376,-0.23168358206749,0.972540140151978,-0.9999720454216,-0.00693006766960025,-0.00281115365214646,-0.999965190887451,0.00444155978038907,-0.00706310942769051,-0.998787522315979,0.00182991370093077,0.0491958744823933,-0.991541802883148,-0.121160075068474,0.0465323179960251,0.998947501182556,-0.0176908429712057,0.0423196628689766,0.999269247055054,0.00143501104321331,0.0381962545216084,0.999353468418121,-0.00273352139629424,-0.0358495935797691,0.963616728782654,-0.265219241380692,-0.0331903249025345,
  472. 0.695136666297913,-0.0278732627630234,-0.718337059020996,0.00927518215030432,0.0565890520811081,-0.998354554176331,-0.0513836964964867,-0.118101015686989,-0.9916712641716,-0.773517787456512,-0.223138689994812,-0.593194365501404,-0.0158920679241419,-0.0376616232097149,-0.999164223670959,0.0399691089987755,-0.151583909988403,-0.987636029720306,0.770278930664063,-0.143727704882622,-0.621299207210541,-9.11338865989819e-005,0.000192924286238849,-1,-0.705601751804352,-0.0356980748474598,-0.707708895206451,-0.0412459038197994,0.0720933675765991,-0.996544718742371,-0.70628559589386,0.00128775835037231,-0.707925796508789,-0.9999720454216,-0.00693006766960025,-0.00281115365214646,-0.991541802883148,-0.121160075068474,0.0465323179960251,-0.776665687561035,0.239349350333214,0.582668304443359,0.706337094306946,0.00171999633312225,0.707873582839966,0.998947501182556,-0.0176908429712057,0.0423196628689766,0.963616728782654,-0.265219241380692,-0.0331903249025345,0.71462094783783,0.0197535455226898,-0.699232935905457,-0.683117747306824,-0.0554391145706177,0.728201031684875,-0.0722103118896484,-0.143645614385605,0.986991226673126,0.0221033710986376,-0.23168358206749,0.972540140151978,0.776512145996094,-0.238788902759552,0.583102881908417,0.122840605676174,-0.290896475315094,0.948835849761963,-0.0224143154919147,-0.159494191408157,0.986944377422333,-0.775507092475891,-0.137890875339508,0.616096615791321,0.00309188850224018,-0.0581331476569176,0.998304128646851,0.704669952392578,-0.0351295210421085,0.708665132522583,0.0641036406159401,0.0235789623111486,0.9976646900177,0.00927518215030432,0.0565890520811081,-0.998354554176331,0.999426007270813,-0.00851674191653728,-0.0327909141778946,0.999331712722778,0.00685516325756907,-0.035906508564949,0.0162796787917614,-0.00715900678187609,-0.999841868877411,-0.999995648860931,0.000958062126301229,-0.00280699366703629,-0.0513836964964867,-0.118101015686989,-0.9916712641716,-0.0497632324695587,-0.00972977932542562,-0.998713731765747,-0.999968647956848,-0.00360774388536811,-0.00705549074336886,0.999098181724548,0.00165147136431187,0.0424281172454357,
  473. 0.0221033710986376,-0.23168358206749,0.972540140151978,0.0259666964411736,0.0119498241692781,0.999591469764709,0.999247550964355,-0.00623602420091629,0.0382818877696991,-0.0722103118896484,-0.143645614385605,0.986991226673126,-0.998762309551239,0.0161762218922377,0.0470338612794876,-0.998788595199585,0.000892676645889878,0.0491984374821186,-0.0710435435175896,0.00299461046233773,0.997468829154968,0.71462094783783,0.0197535455226898,-0.699232935905457,0.963616728782654,-0.265219241380692,-0.0331903249025345,0.00645512994378805,-0.258869200944901,-0.965890824794769,0.770278930664063,-0.143727704882622,-0.621299207210541,0.0399691089987755,-0.151583909988403,-0.987636029720306,0.991415619850159,-0.12626414000988,-0.0339484363794327,-0.773517787456512,-0.223138689994812,-0.593194365501404,-0.0513836964964867,-0.118101015686989,-0.9916712641716,-0.940805733203888,-0.338934540748596,-0.00282291602343321,-0.635332524776459,-0.164723068475723,-0.75446605682373,-0.994441509246826,-0.0964362248778343,-0.0422636792063713,-0.0426339358091354,-0.0716277062892914,-0.996519863605499,0.935554087162018,-0.351147562265396,0.0378685891628265,0.776512145996094,-0.238788902759552,0.583102881908417,0.0221033710986376,-0.23168358206749,0.972540140151978,0.755723357200623,0.0648289769887924,0.651674270629883,0.973751425743103,-0.225245445966721,0.0327532961964607,0.0623714737594128,-0.0812267884612083,0.994742214679718,0.0698103755712509,0.347693800926209,-0.935005605220795,0.406328529119492,0.467141419649124,-0.785287141799927,0.886755764484406,0.460398614406586,-0.041200403124094,-0.775507092475891,-0.137890875339508,0.616096615791321,-0.0224143154919147,-0.159494191408157,0.986944377422333,-0.992183268070221,-0.122526451945305,0.0236605536192656,-0.999458789825439,-0.00407390715554357,-0.03264319896698,-0.998932957649231,-0.00405172677710652,0.04600590467453,-0.998787522315979,0.00182991370093077,0.0491958744823933,-0.999965190887451,0.00444155978038907,-0.00706310942769051,-0.998939096927643,-0.00214487663470209,0.0460020825266838,-0.0557638704776764,0.0115422699600458,0.99837726354599,
  474. -0.0710435435175896,0.00299461046233773,0.997468829154968,-0.998788595199585,0.000892676645889878,0.0491984374821186,-0.0557638704776764,0.0115422699600458,0.99837726354599,0.0419236496090889,0.00202379282563925,0.999118804931641,0.0259666964411736,0.0119498241692781,0.999591469764709,-0.0710435435175896,0.00299461046233773,0.997468829154968,0.0419236496090889,0.00202379282563925,0.999118804931641,0.999532401561737,-0.00618030317127705,0.0299457870423794,0.999247550964355,-0.00623602420091629,0.0382818877696991,0.0259666964411736,0.0119498241692781,0.999591469764709,0.99954229593277,0.00480501214042306,0.0298677831888199,0.999151408672333,0.00759248714894056,-0.0404843501746655,0.999353468418121,-0.00273352139629424,-0.0358495935797691,0.999269247055054,0.00143501104321331,0.0381962545216084,0.999163150787354,0.0058854497037828,-0.040476817637682,0.0475179105997086,-0.00604633940383792,-0.998852074146271,0.0162796787917614,-0.00715900678187609,-0.999841868877411,0.999331712722778,0.00685516325756907,-0.035906508564949,0.0475179105997086,-0.00604633940383792,-0.998852074146271,-0.0451247245073318,0.00130891113076359,-0.998980522155762,-0.0497632324695587,-0.00972977932542562,-0.998713731765747,0.0162796787917614,-0.00715900678187609,-0.999841868877411,-0.0497632324695587,-0.00972977932542562,-0.998713731765747,-0.0451247245073318,0.00130891113076359,-0.998980522155762,-0.999460518360138,-0.00361375673674047,-0.0326430760324001,-0.999968647956848,-0.00360774388536811,-0.00705549074336886,-0.0224143154919147,-0.159494191408157,0.986944377422333,0.0641036406159401,0.0235789623111486,0.9976646900177,0.0535464100539684,-0.00976297073066235,0.998517692089081,-0.03046740218997,-0.00366227584891021,0.99952906370163,0.0641036406159401,0.0235789623111486,0.9976646900177,0.999427020549774,-0.00569811975583434,0.0333642289042473,0.999503374099731,0.00292695267125964,0.0313759408891201,0.0535464100539684,-0.00976297073066235,0.998517692089081,0.973751425743103,-0.225245445966721,0.0327532961964607,0.999074757099152,-0.0260762330144644,-0.0342031605541706,
  475. 0.999304831027985,-0.00935162976384163,-0.0360907167196274,0.999503970146179,0.00274189165793359,0.0313741602003574,0.999198496341705,-0.0207923073321581,-0.0342070013284683,0.0399691089987755,-0.151583909988403,-0.987636029720306,0.0549017377197742,0.00771592184901237,-0.998462021350861,0.999310493469238,-0.00874712318181992,-0.03608488291502,0.0399691089987755,-0.151583909988403,-0.987636029720306,-0.0412459038197994,0.0720933675765991,-0.996544718742371,-0.04224494099617,0.00451387139037251,-0.999097108840942,0.0549017377197742,0.00771592184901237,-0.998462021350861,-0.999050915241241,0.0076775997877121,-0.0428752228617668,-0.04224494099617,0.00451387139037251,-0.999097108840942,-0.0412459038197994,0.0720933675765991,-0.996544718742371,-0.998858988285065,0.0226768273860216,-0.042030718177557,-0.994441509246826,-0.0964362248778343,-0.0422636792063713,-0.988329708576202,0.150362193584442,0.0244043935090303,-0.999429941177368,-0.00734963873401284,0.0329532995820045,-0.999079525470734,0.000657287368085235,-0.0428935997188091,-0.999599754810333,-0.0147022064775229,0.0241710189729929,-0.0224143154919147,-0.159494191408157,0.986944377422333,-0.03046740218997,-0.00366227584891021,0.99952906370163,-0.999386310577393,-0.0119130713865161,0.0329424552619457,0.999503970146179,0.00274189165793359,0.0313741602003574,0.999304831027985,-0.00935162976384163,-0.0360907167196274,0.999151408672333,0.00759248714894056,-0.0404843501746655,0.99954229593277,0.00480501214042306,0.0298677831888199,0.0535464100539684,-0.00976297073066235,0.998517692089081,0.999503374099731,0.00292695267125964,0.0313759408891201,0.999532401561737,-0.00618030317127705,0.0299457870423794,0.0419236496090889,0.00202379282563925,0.999118804931641,-0.03046740218997,-0.00366227584891021,0.99952906370163,0.0535464100539684,-0.00976297073066235,0.998517692089081,0.0419236496090889,0.00202379282563925,0.999118804931641,-0.0557638704776764,0.0115422699600458,0.99837726354599,-0.999386310577393,-0.0119130713865161,0.0329424552619457,-0.03046740218997,-0.00366227584891021,0.99952906370163,
  476. -0.0557638704776764,0.0115422699600458,0.99837726354599,-0.998939096927643,-0.00214487663470209,0.0460020825266838,-0.999079525470734,0.000657287368085235,-0.0428935997188091,-0.999429941177368,-0.00734963873401284,0.0329532995820045,-0.998932957649231,-0.00405172677710652,0.04600590467453,-0.999458789825439,-0.00407390715554357,-0.03264319896698,-0.999460518360138,-0.00361375673674047,-0.0326430760324001,-0.0451247245073318,0.00130891113076359,-0.998980522155762,-0.04224494099617,0.00451387139037251,-0.999097108840942,-0.999050915241241,0.0076775997877121,-0.0428752228617668,0.0549017377197742,0.00771592184901237,-0.998462021350861,-0.04224494099617,0.00451387139037251,-0.999097108840942,-0.0451247245073318,0.00130891113076359,-0.998980522155762,0.0475179105997086,-0.00604633940383792,-0.998852074146271,0.999310493469238,-0.00874712318181992,-0.03608488291502,0.0549017377197742,0.00771592184901237,-0.998462021350861,0.0475179105997086,-0.00604633940383792,-0.998852074146271,0.999163150787354,0.0058854497037828,-0.040476817637682,-0.521261751651764,-0.255642682313919,-0.814206957817078,-0.0286937318742275,0.204924806952477,-0.978357017040253,0.0434597507119179,-0.0865350663661957,-0.99530041217804,0.754519820213318,-0.164472132921219,-0.63533353805542,0.701220393180847,0.00707515981048346,0.712909460067749,0.0334864035248756,-0.0197743028402328,0.999243497848511,-0.0293537154793739,-0.217860534787178,0.975538492202759,-0.651730835437775,0.064604863524437,0.755693852901459,-0.481284379959106,0,-0.876564562320709,-0.440859884023666,0,-0.897575914859772,0.0044231154024601,0,-0.999990284442902,0.436743766069412,-3.48856531218189e-007,-0.899586081504822,0.00200968328863382,-1.01431533039431e-006,-0.999998033046722,0.627849817276001,-1.57365411723731e-006,-0.778334617614746,-0.481284379959106,0,-0.876564562320709,-0.641664206981659,0,-0.766985774040222,-0.440859884023666,0,-0.897575914859772,-0.641664206981659,0,-0.766985774040222,0.00200968328863382,-1.01431533039431e-006,-0.999998033046722,-0.440859884023666,0,-0.897575914859772,
  477. 0.436743766069412,-3.48856531218189e-007,-0.899586081504822,0.627849817276001,-1.57365411723731e-006,-0.778334617614746,0.470984786748886,0,-0.882141351699829,0.0044231154024601,0,-0.999990284442902,0.436743766069412,-3.48856531218189e-007,-0.899586081504822,0.470984786748886,0,-0.882141351699829,-0.440859884023666,0,-0.897575914859772,0.00200968328863382,-1.01431533039431e-006,-0.999998033046722,0.0044231154024601,0,-0.999990284442902,0.0044231154024601,0,-0.999990284442902,0.00200968328863382,-1.01431533039431e-006,-0.999998033046722,0.436743766069412,-3.48856531218189e-007,-0.899586081504822,-0.481269061565399,-0,-0.876572966575623,-0.0143584571778774,-0,-0.999896943569183,-0.440828651189804,-0,-0.897591292858124,0.409922301769257,7.48555528673478e-009,-0.912120580673218,0.611254692077637,5.09425035488675e-009,-0.791433990001678,0.00204368145205081,0,-0.999997973442078,-0.481269061565399,-0,-0.876572966575623,-0.440828651189804,-0,-0.897591292858124,-0.641669094562531,-0,-0.766981601715088,-0.641669094562531,-0,-0.766981601715088,-0.440828651189804,-0,-0.897591292858124,0.00204368145205081,0,-0.999997973442078,0.409922301769257,7.48555528673478e-009,-0.912120580673218,0.418119698762894,5.84525849944839e-009,-0.908392012119293,0.611254692077637,5.09425035488675e-009,-0.791433990001678,-0.0143584571778774,-0,-0.999896943569183,0.418119698762894,5.84525849944839e-009,-0.908392012119293,0.409922301769257,7.48555528673478e-009,-0.912120580673218,-0.440828651189804,-0,-0.897591292858124,-0.0143584571778774,-0,-0.999896943569183,0.00204368145205081,0,-0.999997973442078,-0.0143584571778774,-0,-0.999896943569183,0.409922301769257,7.48555528673478e-009,-0.912120580673218,0.00204368145205081,0,-0.999997973442078,0.998362720012665,0.0564444288611412,0.00927344430238009,0.999841928482056,-0.0071553778834641,0.0162789709866047,0.998713612556458,-0.00972608383744955,-0.0497644767165184,0.991675496101379,-0.118063442409039,-0.0513885766267776,-0.986993014812469,-0.143622979521751,-0.0722303837537766,-0.997467815876007,0.00299417576752603,-0.0710570737719536,
  478. -0.999591529369354,0.0119466371834278,0.025966715067625,-0.972530364990234,-0.231724545359612,0.0221016760915518,0.0028016718570143,-0.00642961403355002,-0.999975383281708,0.0070655788294971,0.00443978933617473,-0.999965250492096,-0.0491885207593441,0.00182713428512216,-0.998787879943848,-0.0465156584978104,-0.120918393135071,-0.991572082042694,-0.0423391573131084,-0.0176905523985624,0.998946726322174,-0.0382078737020493,0.00143447495065629,0.999268770217896,0.0358502678573132,-0.00273371487855911,0.999353528022766,0.0331986583769321,-0.265473067760468,0.963546574115753,0.718547403812408,-0.0283850729465485,0.694898545742035,0.998362720012665,0.0564444288611412,0.00927344430238009,0.991675496101379,-0.118063442409039,-0.0513885766267776,0.593381345272064,-0.22254666686058,-0.773544907569885,0.999155044555664,-0.0378528609871864,-0.0160176195204258,0.992653667926788,-0.112808674573898,0.0437382012605667,0.621270418167114,-0.143913298845291,0.770267486572266,1,0.000255925406236202,-0.000120896627777256,0.707824468612671,-0.0356374494731426,-0.705488860607147,0.995783507823944,0.081411600112915,-0.0422782674431801,0.708161890506744,0.00240051769651473,-0.706046104431152,0.0028016718570143,-0.00642961403355002,-0.999975383281708,-0.0465156584978104,-0.120918393135071,-0.991572082042694,-0.58293354511261,0.239563032984734,-0.776400804519653,-0.707731187343597,0.00151792168617249,0.706480205059052,-0.0423391573131084,-0.0176905523985624,0.998946726322174,0.0331986583769321,-0.265473067760468,0.963546574115753,0.699206292629242,0.0197982359677553,0.714645743370056,-0.728381454944611,-0.0553227141499519,-0.682934701442719,-0.986993014812469,-0.143622979521751,-0.0722303837537766,-0.972530364990234,-0.231724545359612,0.0221016760915518,-0.583018064498901,-0.238703951239586,0.776601850986481,-0.94885379076004,-0.290838688611984,0.122838914394379,-0.984744846820831,-0.173025488853455,-0.0184386391192675,-0.61611396074295,-0.137922763824463,-0.775487542152405,-0.998296201229095,-0.0582730323076248,0.00299876183271408,-0.708701968193054,-0.0353551656007767,0.704621613025665,
  479. -0.997711360454559,0.0219301581382751,0.0639614462852478,0.998362720012665,0.0564444288611412,0.00927344430238009,0.0327983349561691,-0.00851213466376066,0.999425709247589,0.0359071716666222,0.00685492344200611,0.999331653118134,0.999841928482056,-0.0071553778834641,0.0162789709866047,0.00279773911461234,0.000952845148276538,-0.999995648860931,0.991675496101379,-0.118063442409039,-0.0513885766267776,0.998713612556458,-0.00972608383744955,-0.0497644767165184,0.00705793360248208,-0.00360736041329801,-0.999968588352203,-0.042447742074728,0.00165058474522084,0.999097287654877,-0.972530364990234,-0.231724545359612,0.0221016760915518,-0.999591529369354,0.0119466371834278,0.025966715067625,-0.0382935106754303,-0.00623580534011126,0.999247133731842,-0.986993014812469,-0.143622979521751,-0.0722303837537766,-0.0470156520605087,0.0161764565855265,-0.998763144016266,-0.0491910874843597,0.000889783957973123,-0.998788952827454,-0.997467815876007,0.00299417576752603,-0.0710570737719536,0.699206292629242,0.0197982359677553,0.714645743370056,0.0331986583769321,-0.265473067760468,0.963546574115753,0.965889394283295,-0.258874773979187,0.00645443750545383,0.621270418167114,-0.143913298845291,0.770267486572266,0.992653667926788,-0.112808674573898,0.0437382012605667,0.034966304898262,-0.12742592394352,0.991231620311737,0.593381345272064,-0.22254666686058,-0.773544907569885,0.991675496101379,-0.118063442409039,-0.0513885766267776,0.00281615625135601,-0.338123112916946,-0.941097676753998,0.754519820213318,-0.164472132921219,-0.63533353805542,0.0434597507119179,-0.0865350663661957,-0.99530041217804,0.996631383895874,-0.0709361135959625,-0.0411577150225639,-0.0378883369266987,-0.35097074508667,0.935619592666626,-0.583018064498901,-0.238703951239586,0.776601850986481,-0.972530364990234,-0.231724545359612,0.0221016760915518,-0.651730835437775,0.064604863524437,0.755693852901459,-0.0293537154793739,-0.217860534787178,0.975538492202759,-0.994540572166443,-0.0823783054947853,0.0640543326735497,0.935031354427338,0.347620606422424,0.0698314234614372,
  480. 0.78529417514801,0.467110335826874,0.40635085105896,0.0411818884313107,0.460457265377045,0.886726140975952,-0.61611396074295,-0.137922763824463,-0.775487542152405,-0.984744846820831,-0.173025488853455,-0.0184386391192675,-0.0227244235575199,-0.121939398348331,-0.992277383804321,0.0326453857123852,-0.0040745111182332,-0.999458730220795,-0.0460210405290127,-0.0040531768463552,-0.998932301998138,-0.0491885207593441,0.00182713428512216,-0.998787879943848,0.0070655788294971,0.00443978933617473,-0.999965250492096,-0.0460172146558762,-0.00214164354838431,-0.99893844127655,-0.998376607894897,0.011539245955646,-0.0557782016694546,-0.997467815876007,0.00299417576752603,-0.0710570737719536,-0.0491910874843597,0.000889783957973123,-0.998788952827454,-0.998376607894897,0.011539245955646,-0.0557782016694546,-0.99911892414093,0.00202160375192761,0.0419206209480762,-0.999591529369354,0.0119466371834278,0.025966715067625,-0.997467815876007,0.00299417576752603,-0.0710570737719536,-0.99911892414093,0.00202160375192761,0.0419206209480762,-0.0299405660480261,-0.00617711571976542,0.999532580375671,-0.0382935106754303,-0.00623580534011126,0.999247133731842,-0.999591529369354,0.0119466371834278,0.025966715067625,-0.0298625975847244,0.00480092456564307,0.999542474746704,0.0404809825122356,0.00758982263505459,0.999151527881622,0.0358502678573132,-0.00273371487855911,0.999353528022766,-0.0382078737020493,0.00143447495065629,0.999268770217896,0.0404734574258327,0.00588504690676928,0.999163269996643,0.998852074146271,-0.00604885024949908,0.0475182682275772,0.999841928482056,-0.0071553778834641,0.0162789709866047,0.0359071716666222,0.00685492344200611,0.999331653118134,0.998852074146271,-0.00604885024949908,0.0475182682275772,0.998980641365051,0.0013064038939774,-0.0451233871281147,0.998713612556458,-0.00972608383744955,-0.0497644767165184,0.999841928482056,-0.0071553778834641,0.0162789709866047,0.998713612556458,-0.00972608383744955,-0.0497644767165184,0.998980641365051,0.0013064038939774,-0.0451233871281147,0.0326452627778053,-0.00361377117224038,-0.999460518360138,
  481. 0.00705793360248208,-0.00360736041329801,-0.999968588352203,-0.984744846820831,-0.173025488853455,-0.0184386391192675,-0.997711360454559,0.0219301581382751,0.0639614462852478,-0.998375475406647,-0.0191719513386488,0.0536555796861649,-0.999476075172424,-0.00954620353877544,-0.0309259202331305,-0.997711360454559,0.0219301581382751,0.0639614462852478,-0.0338122919201851,0.0107035208493471,0.999370872974396,-0.0313859544694424,0.00840937253087759,0.99947202205658,-0.998375475406647,-0.0191719513386488,0.0536555796861649,-0.0293537154793739,-0.217860534787178,0.975538492202759,0.0334864035248756,-0.0197743028402328,0.999243497848511,0.0363733693957329,0.00238037388771772,0.999335467815399,-0.031382966786623,0.0082241939380765,0.999473631381989,0.0330663286149502,0.00651436904445291,0.999432027339935,0.992653667926788,-0.112808674573898,0.0437382012605667,0.998396754264832,0.0159762930124998,0.0543038137257099,0.0363955833017826,0.00101550074759871,0.999337017536163,0.992653667926788,-0.112808674573898,0.0437382012605667,0.995783507823944,0.081411600112915,-0.0422782674431801,0.999020874500275,0.012637123465538,-0.042400136590004,0.998396754264832,0.0159762930124998,0.0543038137257099,0.0429634340107441,0.00226605823263526,-0.999074101448059,0.999020874500275,0.012637123465538,-0.042400136590004,0.995783507823944,0.081411600112915,-0.0422782674431801,0.0416883565485477,0.00643093604594469,-0.999109983444214,0.0434597507119179,-0.0865350663661957,-0.99530041217804,-0.0286937318742275,0.204924806952477,-0.978357017040253,-0.0324959643185139,-0.00856593810021877,-0.999435245990753,0.0429684147238731,0.00171908549964428,-0.999074995517731,-0.024511830881238,-0.0382580794394016,-0.998967230319977,-0.984744846820831,-0.173025488853455,-0.0184386391192675,-0.999476075172424,-0.00954620353877544,-0.0309259202331305,-0.0324167236685753,-0.0176222249865532,-0.999319076538086,-0.031382966786623,0.0082241939380765,0.999473631381989,0.0363733693957329,0.00238037388771772,0.999335467815399,0.0404809825122356,0.00758982263505459,0.999151527881622,
  482. -0.0298625975847244,0.00480092456564307,0.999542474746704,-0.998375475406647,-0.0191719513386488,0.0536555796861649,-0.0313859544694424,0.00840937253087759,0.99947202205658,-0.0299405660480261,-0.00617711571976542,0.999532580375671,-0.99911892414093,0.00202160375192761,0.0419206209480762,-0.999476075172424,-0.00954620353877544,-0.0309259202331305,-0.998375475406647,-0.0191719513386488,0.0536555796861649,-0.99911892414093,0.00202160375192761,0.0419206209480762,-0.998376607894897,0.011539245955646,-0.0557782016694546,-0.0324167236685753,-0.0176222249865532,-0.999319076538086,-0.999476075172424,-0.00954620353877544,-0.0309259202331305,-0.998376607894897,0.011539245955646,-0.0557782016694546,-0.0460172146558762,-0.00214164354838431,-0.99893844127655,0.0429684147238731,0.00171908549964428,-0.999074995517731,-0.0324959643185139,-0.00856593810021877,-0.999435245990753,-0.0460210405290127,-0.0040531768463552,-0.998932301998138,0.0326453857123852,-0.0040745111182332,-0.999458730220795,0.0326452627778053,-0.00361377117224038,-0.999460518360138,0.998980641365051,0.0013064038939774,-0.0451233871281147,0.999020874500275,0.012637123465538,-0.042400136590004,0.0429634340107441,0.00226605823263526,-0.999074101448059,0.998396754264832,0.0159762930124998,0.0543038137257099,0.999020874500275,0.012637123465538,-0.042400136590004,0.998980641365051,0.0013064038939774,-0.0451233871281147,0.998852074146271,-0.00604885024949908,0.0475182682275772,0.0363955833017826,0.00101550074759871,0.999337017536163,0.998396754264832,0.0159762930124998,0.0543038137257099,0.998852074146271,-0.00604885024949908,0.0475182682275772,0.0404734574258327,0.00588504690676928,0.999163269996643,-0.814218759536743,0.255254000425339,-0.521433889865875,-0.977449476718903,-0.209713935852051,-0.0247512478381395,-0.995436131954193,0.0857587084174156,0.041861068457365,-0.635246932506561,0.164951622486115,0.754488110542297,0.712664484977722,-0.00726026296615601,0.701467514038086,0.9992635846138,0.0189225748181343,0.0333801172673702,0.975689291954041,0.216638311743736,-0.0331395827233791,
  483. 0.755484938621521,-0.0648641362786293,-0.651947140693665,-0.8765749335289,-0,-0.481265425682068,-0.897584199905396,-0,-0.440843164920807,-0.999990224838257,-2.79098931466049e-011,0.00444431230425835,-0.899583160877228,-1.76339368454514e-012,0.436749637126923,-0.999998033046722,-1.2152339030902e-011,0.00202779192477465,-0.778324842453003,7.50723838649492e-009,0.627861857414246,-0.8765749335289,-0,-0.481265425682068,-0.76698100566864,-0,-0.641669929027557,-0.897584199905396,-0,-0.440843164920807,-0.76698100566864,-0,-0.641669929027557,-0.999998033046722,-1.2152339030902e-011,0.00202779192477465,-0.897584199905396,-0,-0.440843164920807,-0.899583160877228,-1.76339368454514e-012,0.436749637126923,-0.778324842453003,7.50723838649492e-009,0.627861857414246,-0.882144093513489,5.98077454228019e-009,0.470979571342468,-0.999990224838257,-2.79098931466049e-011,0.00444431230425835,-0.899583160877228,-1.76339368454514e-012,0.436749637126923,-0.882144093513489,5.98077454228019e-009,0.470979571342468,-0.897584199905396,-0,-0.440843164920807,-0.999998033046722,-1.2152339030902e-011,0.00202779192477465,-0.999990224838257,-2.79098931466049e-011,0.00444431230425835,-0.999990224838257,-2.79098931466049e-011,0.00444431230425835,-0.999998033046722,-1.2152339030902e-011,0.00202779192477465,-0.899583160877228,-1.76339368454514e-012,0.436749637126923,-0.876590311527252,0,-0.481237471103668,-0.999897003173828,0,-0.014356816187501,-0.897581398487091,0,-0.440848886966705,-0.912107646465302,-8.61215426084527e-007,0.409950762987137,-0.79145872592926,-1.0073460998683e-006,0.611222624778748,-0.999998033046722,0,0.0020338692702353,-0.876590311527252,0,-0.481237471103668,-0.897581398487091,0,-0.440848886966705,-0.767015635967255,0,-0.641628503799438,-0.767015635967255,0,-0.641628503799438,-0.897581398487091,0,-0.440848886966705,-0.999998033046722,0,0.0020338692702353,-0.912107646465302,-8.61215426084527e-007,0.409950762987137,-0.908393204212189,-6.88711452312418e-007,0.418117016553879,-0.79145872592926,-1.0073460998683e-006,0.611222624778748,-0.999897003173828,0,-0.014356816187501,
  484. -0.908393204212189,-6.88711452312418e-007,0.418117016553879,-0.912107646465302,-8.61215426084527e-007,0.409950762987137,-0.897581398487091,0,-0.440848886966705,-0.999897003173828,0,-0.014356816187501,-0.999998033046722,0,0.0020338692702353,-0.999897003173828,0,-0.014356816187501,-0.912107646465302,-8.61215426084527e-007,0.409950762987137,-0.999998033046722,0,0.0020338692702353,0.0094469552859664,-0.056529588997364,0.998356342315674,0.0165283791720867,0.00722798379138112,0.999837279319763,-0.0498020760715008,0.00954910833388567,0.998713552951813,-0.0532659105956554,0.117586612701416,0.991633057594299,-0.0734219551086426,0.143705636262894,-0.986893057823181,-0.071009986102581,-0.00308449333533645,-0.997470855712891,0.0263271108269691,-0.011969287879765,-0.999581813812256,0.0195792242884636,0.232013940811157,-0.972515344619751,-0.99999064207077,0.00350787956267595,0.00253178062848747,-0.999905288219452,-0.0113411070778966,0.00780022330582142,-0.998788356781006,-0.00550113385543227,-0.0489041395485401,-0.992349028587341,0.114293240010738,-0.0466953329741955,0.998801946640015,0.0234288163483143,-0.0429634489119053,0.999308109283447,0.00219192029908299,-0.037127923220396,0.999289393424988,0.00993420463055372,0.0363591648638248,0.962679505348206,0.268625795841217,0.0329925902187824,0.695154547691345,0.0276614427566528,0.71832799911499,0.0094469552859664,-0.056529588997364,0.998356342315674,-0.0532659105956554,0.117586612701416,0.991633057594299,-0.773341417312622,0.22309884428978,0.593439042568207,-0.0158942081034184,0.037667453289032,0.99916398525238,0.0426921509206295,0.122945047914982,0.991494834423065,0.770135641098022,0.144086688756943,0.621393740177155,0.000137537470436655,0.000291151111014187,0.999999940395355,-0.705416202545166,0.0360617786645889,0.707875370979309,-0.0427083186805248,-0.0708440393209457,0.996572732925415,-0.706014454364777,-0.0017357615288347,0.708195328712463,-0.99999064207077,0.00350787956267595,0.00253178062848747,-0.992349028587341,0.114293240010738,-0.0466953329741955,-0.776464223861694,-0.238955497741699,-0.583098173141479,
  485. 0.706153273582459,-0.00183263444341719,-0.708056628704071,0.998801946640015,0.0234288163483143,-0.0429634489119053,0.962679505348206,0.268625795841217,0.0329925902187824,0.71450400352478,-0.0196658372879028,0.699354946613312,-0.683102607727051,0.0554428994655609,-0.728214919567108,-0.0734219551086426,0.143705636262894,-0.986893057823181,0.0195792242884636,0.232013940811157,-0.972515344619751,0.77636331319809,0.238879799842834,-0.583263576030731,0.122890561819077,0.291026532649994,-0.948789477348328,-0.0195459555834532,0.160224393010139,-0.986887097358704,-0.775430679321289,0.137289509177208,-0.616326868534088,0.00341284833848476,0.0576090440154076,-0.998333394527435,0.704614758491516,0.0347987860441208,-0.708736300468445,0.0634772256016731,-0.0252539962530136,-0.997663795948029,0.0094469552859664,-0.056529588997364,0.998356342315674,0.999288976192474,0.0193003807216883,0.0323914363980293,0.999330461025238,-0.00324697862379253,0.0364442951977253,0.0165283791720867,0.00722798379138112,0.999837279319763,-0.999940991401672,-0.0105721727013588,0.00252313888631761,-0.0532659105956554,0.117586612701416,0.991633057594299,-0.0498020760715008,0.00954910833388567,0.998713552951813,-0.999968945980072,-0.00118549563921988,0.00779007747769356,0.99904602766037,0.00725385639816523,-0.0430635623633862,0.0195792242884636,0.232013940811157,-0.972515344619751,0.0263271108269691,-0.011969287879765,-0.999581813812256,0.999228239059448,0.0124715622514486,-0.0372495129704475,-0.0734219551086426,0.143705636262894,-0.986893057823181,-0.998513340950012,-0.0272083543241024,-0.0472329929471016,-0.998792946338654,-0.00455864705145359,-0.0489067994058132,-0.071009986102581,-0.00308449333533645,-0.997470855712891,0.71450400352478,-0.0196658372879028,0.699354946613312,0.962679505348206,0.268625795841217,0.0329925902187824,0.00335452146828175,0.257428884506226,0.966291487216949,0.770135641098022,0.144086688756943,0.621393740177155,0.0426921509206295,0.122945047914982,0.991494834423065,0.991403102874756,0.126592144370079,0.0330812372267246,-0.773341417312622,0.22309884428978,0.593439042568207,
  486. -0.0532659105956554,0.117586612701416,0.991633057594299,-0.940839111804962,0.338844001293182,0.00258496962487698,-0.635246932506561,0.164951622486115,0.754488110542297,-0.995436131954193,0.0857587084174156,0.041861068457365,-0.041888352483511,0.072011262178421,0.996523916721344,0.935470640659332,0.351310342550278,-0.0384151339530945,0.77636331319809,0.238879799842834,-0.583263576030731,0.0195792242884636,0.232013940811157,-0.972515344619751,0.755484938621521,-0.0648641362786293,-0.651947140693665,0.975689291954041,0.216638311743736,-0.0331395827233791,0.0634549781680107,0.0813673734664917,-0.994662225246429,0.0730102136731148,-0.348960697650909,0.934289038181305,0.406590938568115,-0.467135936021805,0.785154700279236,0.886779606342316,-0.460361301898956,0.0411040335893631,-0.775430679321289,0.137289509177208,-0.616326868534088,-0.0195459555834532,0.160224393010139,-0.986887097358704,-0.992130160331726,0.122813738882542,-0.0243837535381317,-0.99945867061615,0.00407578004524112,0.0326481312513351,-0.998932600021362,0.00405188929289579,-0.0460142306983471,-0.998788356781006,-0.00550113385543227,-0.0489041395485401,-0.999905288219452,-0.0113411070778966,0.00780022330582142,-0.998938739299774,0.00213633244857192,-0.0460103936493397,-0.0557835698127747,-0.0115423072129488,-0.998376190662384,-0.071009986102581,-0.00308449333533645,-0.997470855712891,-0.998792946338654,-0.00455864705145359,-0.0489067994058132,-0.0557835698127747,-0.0115423072129488,-0.998376190662384,0.0419415757060051,-0.00202962383627892,-0.999118030071259,0.0263271108269691,-0.011969287879765,-0.999581813812256,-0.071009986102581,-0.00308449333533645,-0.997470855712891,0.0419415757060051,-0.00202962383627892,-0.999118030071259,0.999532639980316,0.00617319019511342,-0.0299411863088608,0.999228239059448,0.0124715622514486,-0.0372495129704475,0.0263271108269691,-0.011969287879765,-0.999581813812256,0.999542415142059,-0.00480493484064937,-0.0298632178455591,0.99915087223053,-0.00759236793965101,0.0404965467751026,0.999289393424988,0.00993420463055372,0.0363591648638248,
  487. 0.999308109283447,0.00219192029908299,-0.037127923220396,0.999162673950195,-0.0058898413553834,0.0404890291392803,0.0474983491003513,0.00604627840220928,0.998853027820587,0.0165283791720867,0.00722798379138112,0.999837279319763,0.999330461025238,-0.00324697862379253,0.0364442951977253,0.0474983491003513,0.00604627840220928,0.998853027820587,-0.045124314725399,-0.00130830449052155,0.998980522155762,-0.0498020760715008,0.00954910833388567,0.998713552951813,0.0165283791720867,0.00722798379138112,0.999837279319763,-0.0498020760715008,0.00954910833388567,0.998713552951813,-0.045124314725399,-0.00130830449052155,0.998980522155762,-0.999460339546204,0.00361777166835964,0.0326480083167553,-0.999968945980072,-0.00118549563921988,0.00779007747769356,-0.0195459555834532,0.160224393010139,-0.986887097358704,0.0634772256016731,-0.0252539962530136,-0.997663795948029,0.0544464960694313,0.00804561283439398,-0.998484313488007,-0.0298591684550047,0.00357010029256344,-0.999547839164734,0.0634772256016731,-0.0252539962530136,-0.997663795948029,0.999385297298431,-0.00922365207225084,-0.0338250026106834,0.99947327375412,-0.00791155733168125,-0.0314764901995659,0.0544464960694313,0.00804561283439398,-0.998484313488007,0.975689291954041,0.216638311743736,-0.0331395827233791,0.9992635846138,0.0189225748181343,0.0333801172673702,0.999347984790802,-0.0020776700694114,0.0360485427081585,0.99947464466095,-0.00772908981889486,-0.0314748659729958,0.999430358409882,-0.00488285068422556,0.0333937108516693,0.0426921509206295,0.122945047914982,0.991494834423065,0.053711973130703,-0.00698783434927464,0.998531997203827,0.999349474906921,-0.000485690252389759,0.0360629558563232,0.0426921509206295,0.122945047914982,0.991494834423065,-0.0427083186805248,-0.0708440393209457,0.996572732925415,-0.0422368794679642,-0.00460055004805326,0.999097049236298,0.053711973130703,-0.00698783434927464,0.998531997203827,-0.99907523393631,-0.00169737311080098,0.0429650880396366,-0.0422368794679642,-0.00460055004805326,0.999097049236298,-0.0427083186805248,-0.0708440393209457,0.996572732925415,
  488. -0.99911892414093,-0.00467486307024956,0.0417088158428669,-0.995436131954193,0.0857587084174156,0.041861068457365,-0.977449476718903,-0.209713935852051,-0.0247512478381395,-0.999463379383087,0.00699548795819283,-0.0320011824369431,-0.999076187610626,-0.00085435138316825,0.0429672598838806,-0.999357521533966,0.0258991662412882,-0.0247767791152,-0.0195459555834532,0.160224393010139,-0.986887097358704,-0.0298591684550047,0.00357010029256344,-0.999547839164734,-0.999305546283722,0.0191347561776638,-0.0319748148322105,0.99947464466095,-0.00772908981889486,-0.0314748659729958,0.999347984790802,-0.0020776700694114,0.0360485427081585,0.99915087223053,-0.00759236793965101,0.0404965467751026,0.999542415142059,-0.00480493484064937,-0.0298632178455591,0.0544464960694313,0.00804561283439398,-0.998484313488007,0.99947327375412,-0.00791155733168125,-0.0314764901995659,0.999532639980316,0.00617319019511342,-0.0299411863088608,0.0419415757060051,-0.00202962383627892,-0.999118030071259,-0.0298591684550047,0.00357010029256344,-0.999547839164734,0.0544464960694313,0.00804561283439398,-0.998484313488007,0.0419415757060051,-0.00202962383627892,-0.999118030071259,-0.0557835698127747,-0.0115423072129488,-0.998376190662384,-0.999305546283722,0.0191347561776638,-0.0319748148322105,-0.0298591684550047,0.00357010029256344,-0.999547839164734,-0.0557835698127747,-0.0115423072129488,-0.998376190662384,-0.998938739299774,0.00213633244857192,-0.0460103936493397,-0.999076187610626,-0.00085435138316825,0.0429672598838806,-0.999463379383087,0.00699548795819283,-0.0320011824369431,-0.998932600021362,0.00405188929289579,-0.0460142306983471,-0.99945867061615,0.00407578004524112,0.0326481312513351,-0.999460339546204,0.00361777166835964,0.0326480083167553,-0.045124314725399,-0.00130830449052155,0.998980522155762,-0.0422368794679642,-0.00460055004805326,0.999097049236298,-0.99907523393631,-0.00169737311080098,0.0429650880396366,0.053711973130703,-0.00698783434927464,0.998531997203827,-0.0422368794679642,-0.00460055004805326,0.999097049236298,-0.045124314725399,-0.00130830449052155,0.998980522155762,
  489. 0.0474983491003513,0.00604627840220928,0.998853027820587,0.999349474906921,-0.000485690252389759,0.0360629558563232,0.053711973130703,-0.00698783434927464,0.998531997203827,0.0474983491003513,0.00604627840220928,0.998853027820587,0.999162673950195,-0.0058898413553834,0.0404890291392803,0.237033277750015,0.958624958992004,0.157650008797646,0.641861975193024,0.764545381069183,0.0590235516428947,0.637508571147919,0.764288306236267,-0.0971921309828758,0.226567447185516,0.965540051460266,-0.128060787916183,-0.209158882498741,0.939602494239807,-0.270924210548401,-0.70623904466629,0.66440212726593,0.244532763957977,-0.707575857639313,0.653581261634827,-0.268640905618668,-0.21765148639679,0.974856376647949,0.0477800667285919,-0.21765148639679,0.974856376647949,0.0477800667285919,-0.707575857639313,0.653581261634827,-0.268640905618668,0.641861975193024,0.764545381069183,0.0590235516428947,0.237033277750015,0.958624958992004,0.157650008797646,-0.209158882498741,0.939602494239807,-0.270924210548401,-0.21765148639679,0.974856376647949,0.0477800667285919,0.237033277750015,0.958624958992004,0.157650008797646,0.226567447185516,0.965540051460266,-0.128060787916183,-0.0031723864376545,-0,-0.999995052814484,-0.00251542427577078,-0,-0.999996840953827,-0.000647133740130812,-0,-0.999999821186066,0.00122991227544844,0,-0.999999344348907,0.0024647768586874,1.16739387254206e-011,0.999996960163116,0.00311783538199961,1.47670244088349e-011,0.999995172023773,-0.00128463259898126,7.14246709776489e-007,0.999999165534973,0.000594731769524515,7.10745723608852e-007,0.99999988079071,0.00240947562269866,-0.999996542930603,0.00106602197047323,0.00240949029102921,-0.999996542930603,0.00106602185405791,0.00238630478270352,-0.999997019767761,0.000645903579425067,0.00239650649018586,-0.999996960163116,0.000645881984382868,0.637508571147919,0.764288306236267,-0.0971921309828758,-0.70623904466629,0.66440212726593,0.244532763957977,-0.209158882498741,0.939602494239807,-0.270924210548401,0.226567447185516,0.965540051460266,-0.128060787916183,-0.00234979996457696,0.999997138977051,-0.000524925999343395,
  490. -0.00235974276438355,0.999997079372406,-0.000524903589393944,-0.00237182527780533,0.999996900558472,-0.000896784302312881,-0.00237191584892571,0.999996840953827,-0.000896783778443933,-0.676121413707733,0.528626322746277,-0.513238787651062,-0.792485415935516,0.550095200538635,0.263366937637329,-0.2078947275877,0.977344989776611,0.0397055931389332,-0.219872862100601,0.935657918453217,0.276043832302094,0.67504757642746,0.527530908584595,-0.515773117542267,0.792624533176422,0.551086485385895,0.260864168405533,0.208200752735138,0.977240562438965,0.0406620800495148,0.219524294137955,0.935522675514221,0.276778668165207,-0.792485415935516,0.550095200538635,0.263366937637329,0.67504757642746,0.527530908584595,-0.515773117542267,0.219524294137955,0.935522675514221,0.276778668165207,-0.2078947275877,0.977344989776611,0.0397055931389332,-0.219872862100601,0.935657918453217,0.276043832302094,0.208200752735138,0.977240562438965,0.0406620800495148,0.792624533176422,0.551086485385895,0.260864168405533,-0.676121413707733,0.528626322746277,-0.513238787651062,-0.219872862100601,0.935657918453217,0.276043832302094,-0.2078947275877,0.977344989776611,0.0397055931389332,0.219524294137955,0.935522675514221,0.276778668165207,0.208200752735138,0.977240562438965,0.0406620800495148,0.000594731769524515,7.10745723608852e-007,0.99999988079071,-0.00128463259898126,7.14246709776489e-007,0.999999165534973,-0.0031732798088342,1.32734010094282e-006,0.999994993209839,-0.00381238386034966,1.32730554014415e-006,0.999992787837982,0.00239650649018586,-0.999996960163116,0.000645881984382868,0.00238630478270352,-0.999997019767761,0.000645903579425067,0.00237687514163554,-0.999997198581696,0.000284039648249745,0.00237635709345341,-0.999997198581696,0.000284039007965475,0.00122991227544844,0,-0.999999344348907,-0.000647133740130812,-0,-0.999999821186066,0.00375953037291765,0,-0.999992966651917,0.00311567657627165,0,-0.999995172023773,-0.00234002387151122,0.999997317790985,-0.000204619864234701,-0.0023401165381074,0.999997317790985,-0.000204619966098107,-0.00235974276438355,0.999997079372406,-0.000524903589393944,
  491. -0.00234979996457696,0.999997138977051,-0.000524925999343395,0.355790257453918,0.923376142978668,0.144187346100807,0.760727345943451,0.638059556484222,0.119055032730103,0.682861745357513,0.631887853145599,-0.366630166769028,0.325826317071915,0.943726718425751,0.0567193403840065,-0.275440156459808,0.948497772216797,0.156475782394409,-0.844028532505035,0.502376437187195,0.187706559896469,-0.777602195739746,0.487281084060669,-0.397356420755386,-0.29905641078949,0.954125344753265,-0.0144959511235356,-0.29905641078949,0.954125344753265,-0.0144959511235356,-0.777602195739746,0.487281084060669,-0.397356420755386,0.760727345943451,0.638059556484222,0.119055032730103,0.355790257453918,0.923376142978668,0.144187346100807,-0.275440156459808,0.948497772216797,0.156475782394409,-0.29905641078949,0.954125344753265,-0.0144959511235356,0.355790257453918,0.923376142978668,0.144187346100807,0.325826317071915,0.943726718425751,0.0567193403840065,-0.000397252035327256,-7.00813052390004e-006,-1,0.000134966176119633,-7.57698398956563e-006,-1,0.0019043586216867,-9.51196216192329e-006,-0.999998211860657,0.00080829905346036,-9.52488426264608e-006,-0.999999761581421,-0.000969411572441459,-7.64322521717986e-006,0.999999582767487,-0.00278600747697055,-9.58476812229492e-006,0.999996185302734,-0.000129877618746832,-9.00554914551321e-006,1,0.0015190978301689,-8.99739188753301e-006,0.999998867511749,0.00319907627999783,-0.999994277954102,0.00115519925020635,0.00330249918624759,-0.999993920326233,0.00115479785017669,0.00164590287022293,-0.999998331069946,0.000808031414635479,0.00233554211445153,-0.999997019767761,0.000806401076260954,0.682861745357513,0.631887853145599,-0.366630166769028,-0.844028532505035,0.502376437187195,0.187706559896469,-0.275440156459808,0.948497772216797,0.156475782394409,0.325826317071915,0.943726718425751,0.0567193403840065,-0.00226633041165769,0.999997198581696,-0.000649630732368678,-0.00244871457107365,0.999996781349182,-0.000649441324640065,-0.00250684353522956,0.999996423721313,-0.000936344498768449,-0.00231881206855178,0.999996960163116,-0.000938791141379625,
  492. -0.574676692485809,0.46600079536438,-0.672748148441315,-0.784288585186005,0.531503677368164,0.319992989301682,-0.207970470190048,0.969849050045013,0.127047672867775,-0.223223686218262,0.961880683898926,0.15797720849514,0.691382586956024,0.501469075679779,-0.520114302635193,0.705278754234314,0.517584323883057,0.48444652557373,0.208908408880234,0.971945405006409,0.108071692287922,0.214279741048813,0.950256705284119,0.226045474410057,-0.784288585186005,0.531503677368164,0.319992989301682,0.691382586956024,0.501469075679779,-0.520114302635193,0.214279741048813,0.950256705284119,0.226045474410057,-0.207970470190048,0.969849050045013,0.127047672867775,-0.223223686218262,0.961880683898926,0.15797720849514,0.208908408880234,0.971945405006409,0.108071692287922,0.705278754234314,0.517584323883057,0.48444652557373,-0.574676692485809,0.46600079536438,-0.672748148441315,-0.223223686218262,0.961880683898926,0.15797720849514,-0.207970470190048,0.969849050045013,0.127047672867775,0.214279741048813,0.950256705284119,0.226045474410057,0.208908408880234,0.971945405006409,0.108071692287922,0.0015190978301689,-8.99739188753301e-006,0.999998867511749,-0.000129877618746832,-9.00554914551321e-006,1,-0.000771701685152948,-1.17651352411485e-005,0.999999761581421,0.000709643878508359,-1.46089387271786e-005,0.999999761581421,0.00233554211445153,-0.999997019767761,0.000806401076260954,0.00164590287022293,-0.999998331069946,0.000808031414635479,0.00112887611612678,-0.999999344348907,0.000175246721482836,0.000766655371990055,-0.999999701976776,0.000175200650119223,0.00080829905346036,-9.52488426264608e-006,-0.999999761581421,0.0019043586216867,-9.51196216192329e-006,-0.999998211860657,0.00148163619451225,-1.04017581179505e-005,-0.999998986721039,-0.000178258531377651,-1.35885893541854e-005,-1,-0.00196679052896798,0.999998092651367,-0.000122053803352173,-0.002346659777686,0.99999725818634,-0.000129845924675465,-0.00244871457107365,0.999996781349182,-0.000649441324640065,-0.00226633041165769,0.999997198581696,-0.000649630732368678,0.350729465484619,0.924700081348419,0.148050174117088,
  493. 0.740867137908936,0.660486996173859,0.121954679489136,0.657342374324799,0.666859567165375,-0.350997775793076,0.322552561759949,0.944732964038849,0.0586469955742359,-0.269354909658432,0.949501097202301,0.160921469330788,-0.827883303165436,0.530121445655823,0.183250024914742,-0.759341239929199,0.515548050403595,-0.397002875804901,-0.295197695493698,0.955329477787018,-0.0142885046079755,-0.295197695493698,0.955329477787018,-0.0142885046079755,-0.759341239929199,0.515548050403595,-0.397002875804901,0.740867137908936,0.660486996173859,0.121954679489136,0.350729465484619,0.924700081348419,0.148050174117088,-0.269354909658432,0.949501097202301,0.160921469330788,-0.295197695493698,0.955329477787018,-0.0142885046079755,0.350729465484619,0.924700081348419,0.148050174117088,0.322552561759949,0.944732964038849,0.0586469955742359,0.00364456651732326,0,-0.99999338388443,0.00364459864795208,0,-0.999993443489075,0.00364736886695027,0,-0.999993324279785,0.00364724826067686,0,-0.999993324279785,0.000595190795138478,1.28145347844111e-006,0.999999821186066,0.000594847311731428,1.28145347844111e-006,0.999999821186066,0.000575599784497172,9.85037331702188e-007,0.999999821186066,0.000576118880417198,9.79374249254761e-007,0.999999821186066,0.00220507546328008,-0.999996781349182,0.00123632827308029,0.00220473227091134,-0.999996781349182,0.00123632664326578,0.00240598153322935,-0.999996840953827,0.00077819952275604,0.00230640545487404,-0.999997019767761,0.000778292305767536,0.657342374324799,0.666859567165375,-0.350997775793076,-0.827883303165436,0.530121445655823,0.183250024914742,-0.269354909658432,0.949501097202301,0.160921469330788,0.322552561759949,0.944732964038849,0.0586469955742359,-0.0022457018494606,0.999997317790985,-0.000636620912700891,-0.00232560513541102,0.999997079372406,-0.000636542390566319,-0.00256462697871029,0.999996244907379,-0.00104666408151388,-0.00232203328050673,0.999996781349182,-0.00104555767029524,-0.55696702003479,0.499612927436829,-0.663456678390503,-0.781168460845947,0.542560279369354,0.30887559056282,-0.205926433205605,0.970848560333252,0.122668348252773,
  494. -0.228548631072044,0.963309109210968,0.140716522932053,0.68603378534317,0.51577764749527,-0.513158082962036,0.690708756446838,0.543535649776459,0.476959526538849,0.204846918582916,0.972003936767578,0.115092426538467,0.208253607153893,0.949424862861633,0.234995752573013,-0.781168460845947,0.542560279369354,0.30887559056282,0.68603378534317,0.51577764749527,-0.513158082962036,0.208253607153893,0.949424862861633,0.234995752573013,-0.205926433205605,0.970848560333252,0.122668348252773,-0.228548631072044,0.963309109210968,0.140716522932053,0.204846918582916,0.972003936767578,0.115092426538467,0.690708756446838,0.543535649776459,0.476959526538849,-0.55696702003479,0.499612927436829,-0.663456678390503,-0.228548631072044,0.963309109210968,0.140716522932053,-0.205926433205605,0.970848560333252,0.122668348252773,0.208253607153893,0.949424862861633,0.234995752573013,0.204846918582916,0.972003936767578,0.115092426538467,-0.248086497187614,0.954254925251007,-0.166885510087013,-0.589702665805817,0.800277888774872,-0.108656592667103,0.679974257946014,0.717602491378784,0.150604769587517,0.234283745288849,0.969127357006073,-0.0768336728215218,0.234283745288849,0.969127357006073,-0.0768336728215218,0.679974257946014,0.717602491378784,0.150604769587517,0.591574490070343,0.724538445472717,-0.353671699762344,0.226227328181267,0.974073767662048,-0.00127058289945126,0.226227328181267,0.974073767662048,-0.00127058289945126,-0.244515612721443,0.967816472053528,0.0595265254378319,-0.248086497187614,0.954254925251007,-0.166885510087013,0.234283745288849,0.969127357006073,-0.0768336728215218,0.236819714307785,0.964675784111023,-0.115399427711964,0.844215989112854,0.516009747982025,-0.145028978586197,-0.788056194782257,0.526875436306,0.318386435508728,-0.239227458834648,0.966125845909119,-0.0968055054545403,0.239004015922546,0.966586351394653,0.092670850455761,0.824531972408295,0.466576099395752,0.3200843334198,0.844215989112854,0.516009747982025,-0.145028978586197,0.236819714307785,0.964675784111023,-0.115399427711964,-0.239227458834648,0.966125845909119,-0.0968055054545403,
  495. -0.788056194782257,0.526875436306,0.318386435508728,-0.739413797855377,0.447626084089279,-0.502889752388,-0.246023327112198,0.963546812534332,0.105120420455933,0.239004015922546,0.966586351394653,0.092670850455761,0.236819714307785,0.964675784111023,-0.115399427711964,-0.239227458834648,0.966125845909119,-0.0968055054545403,-0.246023327112198,0.963546812534332,0.105120420455933,0.732882678508759,0.646670997142792,0.211422950029373,0.836643278598785,0.513936936855316,0.189464464783669,0.806753158569336,0.508316159248352,-0.301270663738251,0.612066686153412,0.788643479347229,-0.058444831520319,0.513849020004272,0.857693672180176,-0.0179158914834261,0.533774018287659,0.844646990299225,-0.0407056510448456,0.513849020004272,0.857693672180176,-0.0179158914834261,0.612066686153412,0.788643479347229,-0.058444831520319,-0.531329989433289,0.761483907699585,0.371255576610565,-0.54360556602478,0.839165568351746,0.0171550270169973,-0.531329989433289,0.761483907699585,0.371255576610565,-0.843296647071838,0.508052885532379,0.175308659672737,-0.783667862415314,0.494616985321045,-0.375791013240814,-0.690309643745422,0.711368083953857,-0.132015332579613,-0.593526124954224,0.803215622901917,-0.0507109984755516,-0.54360556602478,0.839165568351746,0.0171550270169973,-0.690309643745422,0.711368083953857,-0.132015332579613,-0.783667862415314,0.494616985321045,-0.375791013240814,0.836643278598785,0.513936936855316,0.189464464783669,0.732882678508759,0.646670997142792,0.211422950029373,0.533774018287659,0.844646990299225,-0.0407056510448456,-0.593526124954224,0.803215622901917,-0.0507109984755516,-0.690309643745422,0.711368083953857,-0.132015332579613,0.732882678508759,0.646670997142792,0.211422950029373,-0.54360556602478,0.839165568351746,0.0171550270169973,-0.593526124954224,0.803215622901917,-0.0507109984755516,0.533774018287659,0.844646990299225,-0.0407056510448456,0.513849020004272,0.857693672180176,-0.0179158914834261,0.00181654084008187,0.999998092651367,0.000792700739111751,0.00186130369547755,0.999998033046722,0.000792266277130693,
  496. -0.000301373627735302,0.999999701976776,-0.000688168220221996,0.000756085442844778,0.999999523162842,-0.000694819202180952,-0.00734429992735386,-1.29940253827954e-005,-0.999973118305206,-0.00741041358560324,-1.30276484924252e-005,-0.999972581863403,-0.00412726774811745,-6.96539382261108e-006,-0.999991476535797,-0.00409469567239285,-7.02018496667733e-006,-0.999991655349731,0.00013792970275972,-9.32394777919399e-006,1,8.9119721451425e-006,-9.25830863707233e-006,1,0.000401117751607671,-7.00483769833227e-006,1,0.000482961040688679,-6.97379846315016e-006,0.99999988079071,-0.739413797855377,0.447626084089279,-0.502889752388,0.824531972408295,0.466576099395752,0.3200843334198,0.239004015922546,0.966586351394653,0.092670850455761,-0.739413797855377,0.447626084089279,-0.502889752388,0.239004015922546,0.966586351394653,0.092670850455761,-0.246023327112198,0.963546812534332,0.105120420455933,-0.00410081539303064,-0.999989449977875,-0.00207288633100688,-0.00156083086039871,-0.999996721744537,-0.00205720262601972,-0.000640563957858831,-0.999998986721039,-0.00132506899535656,-0.00233807531185448,-0.999996483325958,-0.00132539472542703,0.00879774987697601,0.00911294389516115,-0.999919772148132,0.00912712793797255,0.00911280233412981,-0.999916851520538,0.00183636415749788,0.00646238401532173,-0.999977469444275,0.00149334128946066,0.00644901068881154,-0.999978125095367,-0.589266538619995,0.798630833625793,0.122285939753056,-0.589702665805817,0.800277888774872,-0.108656592667103,-0.248086497187614,0.954254925251007,-0.166885510087013,-0.244515612721443,0.967816472053528,0.0595265254378319,0.591574490070343,0.724538445472717,-0.353671699762344,-0.589266538619995,0.798630833625793,0.122285939753056,-0.244515612721443,0.967816472053528,0.0595265254378319,0.226227328181267,0.974073767662048,-0.00127058289945126,0.00370877608656883,7.02578461186931e-007,-0.999993205070496,0.00350021221674979,7.02578972777701e-007,-0.999993860721588,0.00268825166858733,8.00979023551918e-007,-0.999996423721313,0.00180562713649124,8.02420004220039e-007,-0.999998450279236,
  497. 0.00291072996333241,7.02611316683033e-007,0.999995768070221,-0.00279170437715948,7.02606428149011e-007,0.999996185302734,-0.00605280324816704,8.02263969035266e-007,0.999981760978699,-0.00343401334248483,8.00909219833557e-007,0.999994099140167,0.00244137365370989,-0.999996244907379,0.00127980147954077,0.00239998777396977,-0.999996304512024,0.00127984629943967,0.0025537651963532,-0.999996542930603,0.000732311222236604,0.00248839939013124,-0.999996721744537,0.000732272281311452,0.806753158569336,0.508316159248352,-0.301270663738251,-0.843296647071838,0.508052885532379,0.175308659672737,-0.531329989433289,0.761483907699585,0.371255576610565,0.612066686153412,0.788643479347229,-0.058444831520319,0.00219971896149218,-0.999996840953827,-0.00122382363770157,0.0022229237947613,-0.999996840953827,-0.00122411851771176,0.00223899423144758,-0.999994218349457,-0.00259607401676476,0.00222692079842091,-0.999994158744812,-0.00259591429494321,0.829449236392975,0.522622227668762,0.1971804946661,-0.715194046497345,0.523643255233765,-0.462920486927032,-0.242711216211319,0.963624000549316,0.111893333494663,0.23685909807682,0.967865347862244,0.0844658464193344,-0.715194046497345,0.523643255233765,-0.462920486927032,-0.745447754859924,0.540557622909546,0.390006631612778,-0.232808724045753,0.965507805347443,0.11659699678421,-0.242711216211319,0.963624000549316,0.111893333494663,0.598890006542206,0.520482242107391,-0.608628809452057,0.829449236392975,0.522622227668762,0.1971804946661,0.23685909807682,0.967865347862244,0.0844658464193344,0.250826150178909,0.966403543949127,0.0561300590634346,0.250826150178909,0.966403543949127,0.0561300590634346,-0.232808724045753,0.965507805347443,0.11659699678421,-0.745447754859924,0.540557622909546,0.390006631612778,0.598890006542206,0.520482242107391,-0.608628809452057,-0.00222694524563849,0.00650023156777024,0.999976396560669,-0.0022315583191812,0.00651387730613351,0.999976277351379,-0.00916653126478195,0.00914563145488501,0.999916195869446,-0.00917525216937065,0.00914562866091728,0.999916136264801,0.00139066891279072,0.999998390674591,0.00115269445814192,
  498. -0.0001148543015006,0.999999344348907,0.00115257746074349,-0.00172486889641732,0.999997019767761,0.00173237454146147,0.000599994498770684,0.999998390674591,0.00174687209073454,-0.69363534450531,0.69549560546875,0.187498971819878,0.65842992067337,0.693704843521118,-0.291965186595917,0.225998073816299,0.9725062251091,-0.056184433400631,-0.222897291183472,0.967799723148346,0.116963922977448,-0.602293968200684,0.689389526844025,-0.402472615242004,-0.69363534450531,0.69549560546875,0.187498971819878,-0.222897291183472,0.967799723148346,0.116963922977448,-0.226661950349808,0.972598254680634,-0.0517405420541763,0.222474157810211,0.970027029514313,0.0977390259504318,0.225998073816299,0.9725062251091,-0.056184433400631,0.65842992067337,0.693704843521118,-0.291965186595917,0.64645779132843,0.69840407371521,0.30712217092514,-0.226661950349808,0.972598254680634,-0.0517405420541763,0.222474157810211,0.970027029514313,0.0977390259504318,0.64645779132843,0.69840407371521,0.30712217092514,-0.602293968200684,0.689389526844025,-0.402472615242004,-0.00217076856642962,0.999997556209564,-0.000594994984567165,-0.00233024032786489,0.999997198581696,-0.000594961864408106,-0.00281137530691922,0.999995529651642,-0.00108589150477201,-0.00234742159955204,0.999996721744537,-0.00108677137177438,-0.694904744625092,0.502543389797211,-0.514351546764374,-0.690620243549347,0.515857517719269,0.506887316703796,-0.205861136317253,0.971760451793671,0.115337997674942,-0.210527583956718,0.945328712463379,0.249061718583107,0.555773675441742,0.463591486215591,-0.690071523189545,0.788993656635284,0.532570660114288,0.306361824274063,0.207290232181549,0.971005499362946,0.119076862931252,0.223293676972389,0.96367084980011,0.146555215120316,-0.690620243549347,0.515857517719269,0.506887316703796,0.555773675441742,0.463591486215591,-0.690071523189545,0.223293676972389,0.96367084980011,0.146555215120316,-0.205861136317253,0.971760451793671,0.115337997674942,-0.210527583956718,0.945328712463379,0.249061718583107,0.207290232181549,0.971005499362946,0.119076862931252,
  499. 0.788993656635284,0.532570660114288,0.306361824274063,-0.694904744625092,0.502543389797211,-0.514351546764374,-0.210527583956718,0.945328712463379,0.249061718583107,-0.205861136317253,0.971760451793671,0.115337997674942,0.223293676972389,0.96367084980011,0.146555215120316,0.207290232181549,0.971005499362946,0.119076862931252,0.222474157810211,0.970027029514313,0.0977390259504318,-0.226661950349808,0.972598254680634,-0.0517405420541763,-0.222897291183472,0.967799723148346,0.116963922977448,0.225998073816299,0.9725062251091,-0.056184433400631,0.250826150178909,0.966403543949127,0.0561300590634346,0.23685909807682,0.967865347862244,0.0844658464193344,-0.242711216211319,0.963624000549316,0.111893333494663,-0.232808724045753,0.965507805347443,0.11659699678421,0.0021883537992835,-0.999997615814209,-0.000157353759277612,0.00218397495336831,-0.999997675418854,-0.000157350295921788,0.0022229237947613,-0.999996840953827,-0.00122411851771176,0.00219971896149218,-0.999996840953827,-0.00122382363770157,-0.00409469567239285,-7.02018496667733e-006,-0.999991655349731,-0.00412726774811745,-6.96539382261108e-006,-0.999991476535797,-0.000778929330408573,-4.92545268571121e-006,-0.999999701976776,-0.000779900175984949,-4.92506842419971e-006,-0.999999701976776,0.000756085442844778,0.999999523162842,-0.000694819202180952,-0.000301373627735302,0.999999701976776,-0.000688168220221996,-0.0013742953306064,0.999997317790985,-0.00185221072752029,-0.00140178261790425,0.99999737739563,-0.0018521174788475,0.000482961040688679,-6.97379846315016e-006,0.99999988079071,0.000401117751607671,-7.00483769833227e-006,1,0.000629634887445718,-4.98131430504145e-006,0.99999988079071,0.000664303719531745,-4.96760094392812e-006,0.999999821186066,0.00471286894753575,0.00306866993196309,0.999984264373779,0.00469526462256908,0.00306866224855185,0.999984264373779,-0.0022315583191812,0.00651387730613351,0.999976277351379,-0.00222694524563849,0.00650023156777024,0.999976396560669,-0.00233807531185448,-0.999996483325958,-0.00132539472542703,-0.000640563957858831,-0.999998986721039,-0.00132506899535656,
  500. 0.000994714791886508,-0.999999463558197,-0.000349464186001569,-0.0014404138782993,-0.999998927116394,-0.000330402486724779,0.00149334128946066,0.00644901068881154,-0.999978125095367,0.00183636415749788,0.00646238401532173,-0.999977469444275,-0.00476943608373404,0.00299315410666168,-0.99998414516449,-0.00512573774904013,0.00299330940470099,-0.999982416629791,0.00278910552151501,0.999996066093445,0.000361014797817916,0.000615620578173548,0.999999821186066,0.00037803131272085,-0.0001148543015006,0.999999344348907,0.00115257746074349,0.00139066891279072,0.999998390674591,0.00115269445814192,-0.00343401334248483,8.00909219833557e-007,0.999994099140167,-0.00605280324816704,8.02263969035266e-007,0.999981760978699,-0.00494572706520557,8.6237690766211e-007,0.999987840652466,-0.00483216671273112,8.62382080413227e-007,0.999988317489624,0.00248839939013124,-0.999996721744537,0.000732272281311452,0.0025537651963532,-0.999996542930603,0.000732311222236604,0.00263742660172284,-0.999996423721313,0.000397967145545408,0.00265219435095787,-0.999996483325958,0.000397991243517026,0.00180562713649124,8.02420004220039e-007,-0.999998450279236,0.00268825166858733,8.00979023551918e-007,-0.999996423721313,0.000749767990782857,8.62581600813428e-007,-0.999999701976776,0.000852341763675213,8.6258148712659e-007,-0.999999642372131,-0.00233227433636785,0.99999725818634,-0.000294410740025342,-0.00231512892059982,0.999997317790985,-0.00029439662466757,-0.00233024032786489,0.999997198581696,-0.000594961864408106,-0.00217076856642962,0.999997556209564,-0.000594994984567165,-0.237030193209648,0.958623290061951,-0.157665014266968,-0.641854584217072,0.764547407627106,-0.0590767413377762,-0.637503743171692,0.7642942070961,0.0971771851181984,-0.226566180586815,0.965539395809174,0.128068536520004,0.209166020154953,0.93959379196167,0.270948499441147,0.706241250038147,0.664418756961823,-0.244481101632118,0.707570910453796,0.653622388839722,0.268554091453552,0.217657580971718,0.974855780601501,-0.0477646514773369,0.217657580971718,0.974855780601501,-0.0477646514773369,
  501. 0.707570910453796,0.653622388839722,0.268554091453552,-0.641854584217072,0.764547407627106,-0.0590767413377762,-0.237030193209648,0.958623290061951,-0.157665014266968,0.209166020154953,0.93959379196167,0.270948499441147,0.217657580971718,0.974855780601501,-0.0477646514773369,-0.237030193209648,0.958623290061951,-0.157665014266968,-0.226566180586815,0.965539395809174,0.128068536520004,0.00317217805422843,-3.84554141419358e-007,0.999994993209839,0.00251449993811548,-3.84554851962093e-007,0.999996840953827,0.000647579377982765,-1.78674937956202e-007,0.99999988079071,-0.00122961984016001,-1.77638071363617e-007,0.999999344348907,-0.00246384995989501,7.69150688029185e-007,-0.999996960163116,-0.00311674387194216,7.69152507018589e-007,-0.999995231628418,0.00128396321088076,7.1239247745325e-007,-0.999999165534973,-0.000594745564740151,7.12728933649487e-007,-0.99999988079071,-0.00241078622639179,-0.999996542930603,-0.00106601894367486,-0.00241034105420113,-0.999996542930603,-0.00106602162122726,-0.00238620419986546,-0.999997019767761,-0.000639859586954117,-0.00239694071933627,-0.999996960163116,-0.000639836769551039,-0.637503743171692,0.7642942070961,0.0971771851181984,0.706241250038147,0.664418756961823,-0.244481101632118,0.209166020154953,0.93959379196167,0.270948499441147,-0.226566180586815,0.965539395809174,0.128068536520004,0.00235013430938125,0.999997138977051,0.000552630284801126,0.00235995976254344,0.999997138977051,0.000552608107682318,0.00237219198606908,0.999996840953827,0.000930531125050038,0.00237238639965653,0.999996840953827,0.000930529902689159,0.676193177700043,0.528696715831757,0.513071715831757,0.792478024959564,0.550116956233978,-0.263343721628189,0.207901403307915,0.977344393730164,-0.0396885983645916,0.219891384243965,0.93566358089447,-0.276009768247604,-0.675107479095459,0.527592778205872,0.515631556510925,-0.792633950710297,0.551121592521667,-0.260761201381683,-0.2082200050354,0.977234542369843,-0.0407093465328217,-0.219550102949142,0.935536861419678,-0.276710093021393,0.792478024959564,0.550116956233978,-0.263343721628189,
  502. -0.675107479095459,0.527592778205872,0.515631556510925,-0.219550102949142,0.935536861419678,-0.276710093021393,0.207901403307915,0.977344393730164,-0.0396885983645916,0.219891384243965,0.93566358089447,-0.276009768247604,-0.2082200050354,0.977234542369843,-0.0407093465328217,-0.792633950710297,0.551121592521667,-0.260761201381683,0.676193177700043,0.528696715831757,0.513071715831757,0.219891384243965,0.93566358089447,-0.276009768247604,0.207901403307915,0.977344393730164,-0.0396885983645916,-0.219550102949142,0.935536861419678,-0.276710093021393,-0.2082200050354,0.977234542369843,-0.0407093465328217,-0.000594745564740151,7.12728933649487e-007,-0.99999988079071,0.00128396321088076,7.1239247745325e-007,-0.999999165534973,0.00317223975434899,6.63583591631323e-007,-0.999994993209839,0.00381075125187635,6.63550679291802e-007,-0.999992787837982,-0.00239694071933627,-0.999996960163116,-0.000639836769551039,-0.00238620419986546,-0.999997019767761,-0.000639859586954117,-0.00237655197270215,-0.999997138977051,-0.00027278476045467,-0.0023760343901813,-0.999997198581696,-0.00027278414927423,-0.00122961984016001,-1.77638071363617e-007,0.999999344348907,0.000647579377982765,-1.78674937956202e-007,0.99999988079071,-0.00375934597104788,0,0.999992966651917,-0.00311706052161753,0,0.999995112419128,0.00234071048907936,0.999997317790985,0.000227121054194868,0.00234035449102521,0.999997317790985,0.000227120763156563,0.00235995976254344,0.999997138977051,0.000552608107682318,0.00235013430938125,0.999997138977051,0.000552630284801126,-0.343792527914047,0.925927817821503,-0.156410932540894,-0.770377159118652,0.618800163269043,-0.153640687465668,-0.671650886535645,0.634513318538666,0.38246300816536,-0.318366676568985,0.945472121238709,-0.068740539252758,0.265393197536469,0.95262622833252,-0.148558840155602,0.846131980419159,0.500451982021332,-0.183326855301857,0.751014113426209,0.476375162601471,0.457213997840881,0.287226051092148,0.95769214630127,0.0180825162678957,0.287226051092148,0.95769214630127,0.0180825162678957,0.751014113426209,0.476375162601471,0.457213997840881,
  503. -0.770377159118652,0.618800163269043,-0.153640687465668,-0.343792527914047,0.925927817821503,-0.156410932540894,0.265393197536469,0.95262622833252,-0.148558840155602,0.287226051092148,0.95769214630127,0.0180825162678957,-0.343792527914047,0.925927817821503,-0.156410932540894,-0.318366676568985,0.945472121238709,-0.068740539252758,-0.0124876061454415,-7.39310462449794e-006,0.999922096729279,-0.0129306120797992,-7.86664440965978e-006,0.999916434288025,-0.0137353232130408,-1.05716680991463e-005,0.999905705451965,-0.0127638690173626,-1.05969847936649e-005,0.999918580055237,0.0120429797098041,-6.42072836853913e-006,-0.999927580356598,0.0137777738273144,-8.27502481115516e-006,-0.999905169010162,0.0133227622136474,-1.01142368293949e-005,-0.999911308288574,0.0128500517457724,-1.00983743323013e-005,-0.999917507171631,-0.00318421563133597,-0.999994397163391,-0.00104575930163264,-0.00328825227916241,-0.999994099140167,-0.0010467569809407,-0.00163678184617311,-0.999998390674591,-0.000723119825124741,-0.00232624262571335,-0.999997019767761,-0.000730607425794005,-0.671650886535645,0.634513318538666,0.38246300816536,0.846131980419159,0.500451982021332,-0.183326855301857,0.265393197536469,0.95262622833252,-0.148558840155602,-0.318366676568985,0.945472121238709,-0.068740539252758,0.00226219114847481,0.999997317790985,0.000547341129276901,0.00244197226129472,0.999996840953827,0.000549489399418235,0.00249301991425455,0.999996602535248,0.00077547540422529,0.00230485573410988,0.999997079372406,0.000775100488681346,0.540582895278931,0.47022557258606,0.697608888149261,0.782318115234375,0.534770250320435,-0.319373309612274,0.20485420525074,0.971693277359009,-0.117673262953758,0.224061205983162,0.959857225418091,-0.168732479214668,-0.683914542198181,0.505019068717957,0.526513695716858,-0.684216618537903,0.522800922393799,-0.508455336093903,-0.202745333313942,0.973317623138428,-0.107457965612412,-0.207885980606079,0.945163786411285,-0.251890957355499,0.782318115234375,0.534770250320435,-0.319373309612274,-0.683914542198181,0.505019068717957,0.526513695716858,
  504. -0.207885980606079,0.945163786411285,-0.251890957355499,0.20485420525074,0.971693277359009,-0.117673262953758,0.224061205983162,0.959857225418091,-0.168732479214668,-0.202745333313942,0.973317623138428,-0.107457965612412,-0.684216618537903,0.522800922393799,-0.508455336093903,0.540582895278931,0.47022557258606,0.697608888149261,0.224061205983162,0.959857225418091,-0.168732479214668,0.20485420525074,0.971693277359009,-0.117673262953758,-0.207885980606079,0.945163786411285,-0.251890957355499,-0.202745333313942,0.973317623138428,-0.107457965612412,0.0128500517457724,-1.00983743323013e-005,-0.999917507171631,0.0133227622136474,-1.01142368293949e-005,-0.999911308288574,0.0134611185640097,-1.39566145662684e-005,-0.999909400939941,0.0122278649359941,-1.63243366841925e-005,-0.999925255775452,-0.00232624262571335,-0.999997019767761,-0.000730607425794005,-0.00163678184617311,-0.999998390674591,-0.000723119825124741,-0.00112590508069843,-0.999999403953552,-0.000165097939316183,-0.000764714030083269,-0.999999761581421,-0.000160429073730484,-0.0127638690173626,-1.05969847936649e-005,0.999918580055237,-0.0137353232130408,-1.05716680991463e-005,0.999905705451965,-0.0154019333422184,-1.06693751149578e-005,0.999881386756897,-0.0139161851257086,-1.35221998789348e-005,0.999903202056885,0.0019665309228003,0.999998092651367,0.000128766347188503,0.00234691030345857,0.99999725818634,0.000140137824928388,0.00244197226129472,0.999996840953827,0.000549489399418235,0.00226219114847481,0.999997317790985,0.000547341129276901,-0.345722675323486,0.925954580307007,-0.151934280991554,-0.747656226158142,0.650477468967438,-0.133750632405281,-0.650138318538666,0.668519616127014,0.361111909151077,-0.319443047046661,0.945554375648499,-0.062315184623003,0.263428747653961,0.9514080286026,-0.159462258219719,0.827920258045197,0.529088973999023,-0.186045616865158,0.750226974487305,0.510438859462738,0.420252114534378,0.289706617593765,0.957008957862854,0.0142808314412832,0.289706617593765,0.957008957862854,0.0142808314412832,0.750226974487305,0.510438859462738,0.420252114534378,
  505. -0.747656226158142,0.650477468967438,-0.133750632405281,-0.345722675323486,0.925954580307007,-0.151934280991554,0.263428747653961,0.9514080286026,-0.159462258219719,0.289706617593765,0.957008957862854,0.0142808314412832,-0.345722675323486,0.925954580307007,-0.151934280991554,-0.319443047046661,0.945554375648499,-0.062315184623003,-0.00334353093057871,-9.40241898206295e-006,0.999994397163391,-0.00334364688023925,-9.40191512199817e-006,0.999994456768036,-0.00334441801533103,8.10872443253174e-005,0.999994397163391,-0.0033437623642385,7.75055304984562e-005,0.999994456768036,-0.000527505471836776,2.78767201962182e-005,-0.99999988079071,-0.000526745337992907,2.7873424187419e-005,-0.99999988079071,-0.00052753381896764,-7.60808761697263e-005,-0.99999988079071,-0.000528044067323208,-8.03708535386249e-005,-0.99999988079071,-0.00668614218011498,-0.999977231025696,-0.00100674538407475,-0.00668619433417916,-0.999977171421051,-0.0010067451512441,0.00138325185980648,-0.999998867511749,-0.000707164581399411,-0.00265170144848526,-0.999996244907379,-0.000704576901625842,-0.650138318538666,0.668519616127014,0.361111909151077,0.827920258045197,0.529088973999023,-0.186045616865158,0.263428747653961,0.9514080286026,-0.159462258219719,-0.319443047046661,0.945554375648499,-0.062315184623003,0.000484931777464226,0.999999761581421,0.000589128816500306,0.000603953201789409,0.999999701976776,0.00058827199973166,0.00681336876004934,0.999976456165314,0.000848829397000372,0.0066867507994175,0.999977290630341,0.000848944007884711,0.544823825359344,0.504165232181549,0.670063018798828,0.778688907623291,0.544187784194946,-0.312254965305328,0.203681841492653,0.971835494041443,-0.118531443178654,0.228591591119766,0.962608814239502,-0.145362794399261,-0.679681181907654,0.517749726772308,0.519585251808167,-0.683469951152802,0.547620415687561,-0.48268073797226,-0.202301636338234,0.972588717937469,-0.11465248465538,-0.206115126609802,0.94677597284317,-0.247248724102974,0.778688907623291,0.544187784194946,-0.312254965305328,-0.679681181907654,0.517749726772308,0.519585251808167,
  506. -0.206115126609802,0.94677597284317,-0.247248724102974,0.203681841492653,0.971835494041443,-0.118531443178654,0.228591591119766,0.962608814239502,-0.145362794399261,-0.202301636338234,0.972588717937469,-0.11465248465538,-0.683469951152802,0.547620415687561,-0.48268073797226,0.544823825359344,0.504165232181549,0.670063018798828,0.228591591119766,0.962608814239502,-0.145362794399261,0.203681841492653,0.971835494041443,-0.118531443178654,-0.206115126609802,0.94677597284317,-0.247248724102974,-0.202301636338234,0.972588717937469,-0.11465248465538,0.239222511649132,0.952543795108795,0.188236400485039,0.608397305011749,0.782804369926453,0.130652293562889,-0.691860616207123,0.700078964233398,-0.176687151193619,-0.226632758975029,0.969600677490234,0.0922619476914406,-0.226632758975029,0.969600677490234,0.0922619476914406,-0.691860616207123,0.700078964233398,-0.176687151193619,-0.575389385223389,0.716318428516388,0.394734054803848,-0.218269571661949,0.97588849067688,-0.000407392159104347,-0.218269571661949,0.97588849067688,-0.000407392159104347,0.237201765179634,0.969495117664337,-0.061762161552906,0.239222511649132,0.952543795108795,0.188236400485039,-0.226632758975029,0.969600677490234,0.0922619476914406,-0.2471694201231,0.962850689888,0.108746580779552,-0.835232675075531,0.536148607730865,0.122192926704884,0.792481780052185,0.541447281837463,-0.280726820230484,0.247093915939331,0.965488314628601,0.0823231488466263,-0.247179090976715,0.964681208133698,-0.0910646095871925,-0.831319451332092,0.473543733358383,-0.290971666574478,-0.835232675075531,0.536148607730865,0.122192926704884,-0.2471694201231,0.962850689888,0.108746580779552,0.247093915939331,0.965488314628601,0.0823231488466263,0.792481780052185,0.541447281837463,-0.280726820230484,0.76205837726593,0.452596843242645,0.463058471679688,0.25379890203476,0.963172554969788,-0.0887975320219994,-0.247179090976715,0.964681208133698,-0.0910646095871925,-0.2471694201231,0.962850689888,0.108746580779552,0.247093915939331,0.965488314628601,0.0823231488466263,0.25379890203476,0.963172554969788,-0.0887975320219994,
  507. -0.733063995838165,0.649224996566772,-0.202790826559067,-0.84145325422287,0.508643865585327,-0.182312473654747,-0.79830014705658,0.50867110490799,0.322444498538971,-0.607405602931976,0.79131418466568,0.0698605328798294,-0.512727081775665,0.85807877779007,0.0284899584949017,-0.531851947307587,0.845183908939362,0.052895400673151,-0.512727081775665,0.85807877779007,0.0284899584949017,-0.607405602931976,0.79131418466568,0.0698605328798294,0.517251253128052,0.763514995574951,-0.386647403240204,0.542649328708649,0.839483141899109,-0.0282828062772751,0.517251253128052,0.763514995574951,-0.386647403240204,0.839110851287842,0.507709562778473,-0.195253938436508,0.786768138408661,0.491972386837006,0.37277215719223,0.689431369304657,0.71419894695282,0.120848409831524,0.593242883682251,0.803944408893585,0.0416694469749928,0.542649328708649,0.839483141899109,-0.0282828062772751,0.689431369304657,0.71419894695282,0.120848409831524,0.786768138408661,0.491972386837006,0.37277215719223,-0.84145325422287,0.508643865585327,-0.182312473654747,-0.733063995838165,0.649224996566772,-0.202790826559067,-0.531851947307587,0.845183908939362,0.052895400673151,0.593242883682251,0.803944408893585,0.0416694469749928,0.689431369304657,0.71419894695282,0.120848409831524,-0.733063995838165,0.649224996566772,-0.202790826559067,0.542649328708649,0.839483141899109,-0.0282828062772751,0.593242883682251,0.803944408893585,0.0416694469749928,-0.531851947307587,0.845183908939362,0.052895400673151,-0.512727081775665,0.85807877779007,0.0284899584949017,-0.00180999014992267,0.999997913837433,-0.000940855708904564,-0.00185440178029239,0.999997913837433,-0.000940760073717684,0.00029506505234167,0.999999642372131,0.000831704004667699,-0.000760767434258014,0.999999403953552,0.00082966813351959,-0.000668743799906224,-1.09154989331728e-005,0.999999761581421,-0.00058988860109821,-1.09556021925528e-005,0.999999821186066,-0.004518813919276,-5.98422502662288e-006,0.999989867210388,-0.00455837370827794,-6.01391957388842e-006,0.999989628791809,0.0092901224270463,-6.52350081509212e-006,-0.999956846237183,
  508. 0.00944581627845764,-6.44428700979915e-006,-0.999955475330353,0.00897684972733259,-6.15303270024015e-006,-0.999959766864777,0.00887862406671047,-6.14746386418119e-006,-0.999960660934448,0.76205837726593,0.452596843242645,0.463058471679688,-0.831319451332092,0.473543733358383,-0.290971666574478,-0.247179090976715,0.964681208133698,-0.0910646095871925,0.76205837726593,0.452596843242645,0.463058471679688,-0.247179090976715,0.964681208133698,-0.0910646095871925,0.25379890203476,0.963172554969788,-0.0887975320219994,0.0041025928221643,-0.999990046024323,0.00176264578476548,0.00156351097393781,-0.999997317790985,0.0017494234489277,0.000639698526356369,-0.999999165534973,0.00111599580850452,0.00233832746744156,-0.999996721744537,0.0011161882430315,-0.00742005370557308,0.0108079724013805,0.999914050102234,-0.00769924279302359,0.0108078522607684,0.999911963939667,-0.00154911412391812,0.00766640761867166,0.999969482421875,-0.00125945918262005,0.00764635298401117,0.999970018863678,0.59753555059433,0.789235711097717,-0.141627550125122,0.608397305011749,0.782804369926453,0.130652293562889,0.239222511649132,0.952543795108795,0.188236400485039,0.237201765179634,0.969495117664337,-0.061762161552906,-0.575389385223389,0.716318428516388,0.394734054803848,0.59753555059433,0.789235711097717,-0.141627550125122,0.237201765179634,0.969495117664337,-0.061762161552906,-0.218269571661949,0.97588849067688,-0.000407392159104347,0.0153239155188203,0,0.999882578849792,0.015520878136158,0,0.999879539012909,0.0162937436252832,0,0.99986732006073,0.0171324722468853,0,0.999853312969208,-0.0216131005436182,3.69894252116865e-007,-0.999766409397125,-0.016194012016058,3.69863442983842e-007,-0.999868869781494,-0.0130972731858492,4.22680926703833e-007,-0.999914288520813,-0.0155846253037453,4.21951909856944e-007,-0.999878644943237,-0.00246366206556559,-0.999996364116669,-0.00115562870632857,-0.00242205173708498,-0.999996423721313,-0.00115645607002079,-0.00256602326408029,-0.999996542930603,-0.000620411825366318,-0.00250072684139013,-0.999996721744537,-0.000621643615886569,
  509. -0.79830014705658,0.50867110490799,0.322444498538971,0.839110851287842,0.507709562778473,-0.195253938436508,0.517251253128052,0.763514995574951,-0.386647403240204,-0.607405602931976,0.79131418466568,0.0698605328798294,-0.00221117096953094,-0.999996542930603,0.00143903587013483,-0.0022323364391923,-0.999996483325958,0.00143930921331048,-0.0022537992335856,-0.999992847442627,0.00307035865262151,-0.00224186712875962,-0.999992787837982,0.00307028228417039,-0.829479217529297,0.522731304168701,-0.196764722466469,0.728488326072693,0.520901322364807,0.444934487342834,0.249505698680878,0.963596105575562,-0.0960706546902657,-0.243495747447014,0.965253412723541,-0.0948453396558762,0.728488326072693,0.520901322364807,0.444934487342834,0.761300444602966,0.536322772502899,-0.364389538764954,0.241667434573174,0.963352739810944,-0.116397880017757,0.249505698680878,0.963596105575562,-0.0960706546902657,-0.634929835796356,0.516383230686188,0.574641227722168,-0.829479217529297,0.522731304168701,-0.196764722466469,-0.243495747447014,0.965253412723541,-0.0948453396558762,-0.255418330430985,0.96541166305542,-0.0523626953363419,-0.255418330430985,0.96541166305542,-0.0523626953363419,0.241667434573174,0.963352739810944,-0.116397880017757,0.761300444602966,0.536322772502899,-0.364389538764954,-0.634929835796356,0.516383230686188,0.574641227722168,0.00187796039972454,0.00770710362121463,-0.999968588352203,0.00188308185897768,0.00772749399766326,-0.999968409538269,0.00773366307839751,0.0108462674543262,-0.999911248683929,0.00773813342675567,0.010846265591681,-0.999911308288574,-0.00138933374546468,0.999998688697815,-0.000946641259361058,0.000114242218842264,0.999999642372131,-0.000946542189922184,0.00172139320056885,0.999997496604919,-0.00143042905256152,-0.000603394932113588,0.999998807907104,-0.00144265254493803,0.696403205394745,0.687198579311371,-0.206834957003593,-0.653006434440613,0.684701085090637,0.323677569627762,-0.218070104718208,0.973893225193024,0.0630680471658707,0.213945746421814,0.967970490455627,-0.131379067897797,0.583224415779114,0.680463552474976,0.443642467260361,
  510. 0.696403205394745,0.687198579311371,-0.206834957003593,0.213945746421814,0.967970490455627,-0.131379067897797,0.218835651874542,0.974063575267792,0.0575426295399666,-0.213329926133156,0.970923006534576,-0.108622990548611,-0.218070104718208,0.973893225193024,0.0630680471658707,-0.653006434440613,0.684701085090637,0.323677569627762,-0.637330234050751,0.691764175891876,-0.339518249034882,0.218835651874542,0.974063575267792,0.0575426295399666,-0.213329926133156,0.970923006534576,-0.108622990548611,-0.637330234050751,0.691764175891876,-0.339518249034882,0.583224415779114,0.680463552474976,0.443642467260361,0.00218038354068995,0.999997496604919,0.000507195712998509,0.00233997986651957,0.999997198581696,0.000504162278957665,0.00282994518056512,0.999995529651642,0.000966193561907858,0.00236582895740867,0.999996781349182,0.000975779606960714,0.700943648815155,0.503506064414978,0.505133271217346,0.676272809505463,0.517433345317841,-0.524326205253601,0.202218189835548,0.972127199172974,-0.118644580245018,0.204480648040771,0.943569898605347,-0.260506331920624,-0.535278975963593,0.464832603931427,0.705270946025848,-0.793387234210968,0.533371210098267,-0.29334619641304,-0.208155617117882,0.971556305885315,-0.112914703786373,-0.225740864872932,0.96328192949295,-0.145358502864838,0.676272809505463,0.517433345317841,-0.524326205253601,-0.535278975963593,0.464832603931427,0.705270946025848,-0.225740864872932,0.96328192949295,-0.145358502864838,0.202218189835548,0.972127199172974,-0.118644580245018,0.204480648040771,0.943569898605347,-0.260506331920624,-0.208155617117882,0.971556305885315,-0.112914703786373,-0.793387234210968,0.533371210098267,-0.29334619641304,0.700943648815155,0.503506064414978,0.505133271217346,0.204480648040771,0.943569898605347,-0.260506331920624,0.202218189835548,0.972127199172974,-0.118644580245018,-0.225740864872932,0.96328192949295,-0.145358502864838,-0.208155617117882,0.971556305885315,-0.112914703786373,-0.213329926133156,0.970923006534576,-0.108622990548611,0.218835651874542,0.974063575267792,0.0575426295399666,
  511. 0.213945746421814,0.967970490455627,-0.131379067897797,-0.218070104718208,0.973893225193024,0.0630680471658707,-0.255418330430985,0.96541166305542,-0.0523626953363419,-0.243495747447014,0.965253412723541,-0.0948453396558762,0.249505698680878,0.963596105575562,-0.0960706546902657,0.241667434573174,0.963352739810944,-0.116397880017757,-0.00218988163396716,-0.999997675418854,0.000171136663993821,-0.00218587019480765,-0.999997675418854,0.000171170788235031,-0.0022323364391923,-0.999996483325958,0.00143930921331048,-0.00221117096953094,-0.999996542930603,0.00143903587013483,-0.00455837370827794,-6.01391957388842e-006,0.999989628791809,-0.004518813919276,-5.98422502662288e-006,0.999989867210388,-0.00852678902447224,-5.2857753871649e-006,0.999963700771332,-0.00852705538272858,-5.28588043380296e-006,0.999963641166687,-0.000760767434258014,0.999999403953552,0.00082966813351959,0.00029506505234167,0.999999642372131,0.000831704004667699,0.00135381473228335,0.999996662139893,0.00221956637687981,0.00138256687205285,0.999996662139893,0.00221972167491913,0.00887862406671047,-6.14746386418119e-006,-0.999960660934448,0.00897684972733259,-6.15303270024015e-006,-0.999959766864777,0.00870433542877436,-5.62889317734516e-006,-0.999962151050568,0.00866357702761889,-5.61277056476683e-006,-0.999962568283081,-0.00397277809679508,0.00363992643542588,-0.99998551607132,-0.00395847298204899,0.0036399201489985,-0.999985575675964,0.00188308185897768,0.00772749399766326,-0.999968409538269,0.00187796039972454,0.00770710362121463,-0.999968588352203,0.00233832746744156,-0.999996721744537,0.0011161882430315,0.000639698526356369,-0.999999165534973,0.00111599580850452,-0.00099547952413559,-0.999999523162842,0.000271408993285149,0.00144003052264452,-0.999998986721039,0.000255331106018275,-0.00125945918262005,0.00764635298401117,0.999970018863678,-0.00154911412391812,0.00766640761867166,0.999969482421875,0.00402292981743813,0.00354988314211369,0.999985635280609,0.00432262476533651,0.00355001376010478,0.999984443187714,-0.00278750248253345,0.99999612569809,-0.000285648653516546,
  512. -0.000614310090895742,0.999999761581421,-0.000299993262160569,0.000114242218842264,0.999999642372131,-0.000946542189922184,-0.00138933374546468,0.999998688697815,-0.000946641259361058,-0.0155846253037453,4.21951909856944e-007,-0.999878644943237,-0.0130972731858492,4.22680926703833e-007,-0.999914288520813,-0.0141514716669917,4.54533534366419e-007,-0.999899923801422,-0.0142586585134268,4.54538053418219e-007,-0.999898374080658,-0.00250072684139013,-0.999996721744537,-0.000621643615886569,-0.00256602326408029,-0.999996542930603,-0.000620411825366318,-0.00264332559891045,-0.999996483325958,-0.000293309043627232,-0.00265848799608648,-0.999996423721313,-0.000293046759907156,0.0171324722468853,0,0.999853312969208,0.0162937436252832,0,0.99986732006073,0.018135204911232,0,0.999835550785065,0.0180370584130287,0,0.999837338924408,0.00233621429651976,0.99999725818634,0.000215717736864462,0.00231938599608839,0.999997317790985,0.000216021842788905,0.00233997986651957,0.999997198581696,0.000504162278957665,0.00218038354068995,0.999997496604919,0.000507195712998509,-0.000528044067323208,-8.03708535386249e-005,-0.99999988079071,-0.00052753381896764,-7.60808761697263e-005,-0.99999988079071,-0.000526233634445816,-0.000268557632807642,-0.99999988079071,-0.00052728079026565,-0.00026856578188017,-0.99999988079071,-0.00265170144848526,-0.999996244907379,-0.000704576901625842,0.00138325185980648,-0.999998867511749,-0.000707164581399411,0.00541925616562366,-0.999985337257385,-0.000162140597240068,0.00541830575093627,-0.999985337257385,-0.00016213979688473,-0.0033437623642385,7.75055304984562e-005,0.999994456768036,-0.00334441801533103,8.10872443253174e-005,0.999994397163391,-0.00334633234888315,0.000238400447415188,0.999994456768036,-0.00334616750478745,0.000238401786191389,0.999994456768036,-0.00547905778512359,0.999985039234161,0.000117443451017607,-0.00536763994023204,0.999985635280609,0.000117342839075718,0.000603953201789409,0.999999701976776,0.00058827199973166,0.000484931777464226,0.999999761581421,0.000589128816500306,0.0370084904134274,0.999311804771423,0.00252747349441051,
  513. 0.036803875118494,0.999319612979889,0.00243006367236376,0.0933564305305481,0.995630979537964,-0.00191300245933235,0.093360148370266,0.995629072189331,-0.00258099311031401,-0.999677240848541,0.0106647405773401,-0.0230590142309666,-0.999675571918488,0.0107373613864183,-0.0230982396751642,-0.999131381511688,0.0270746424794197,-0.0316804684698582,-0.999141752719879,0.0270801726728678,-0.0313443951308727,-0.0367212556302547,-0.99910044670105,0.021212125197053,-0.0374277867376804,-0.998904049396515,0.0281078107655048,-0.0934680476784706,-0.994978547096252,0.0357978940010071,-0.093466654419899,-0.995006084442139,0.0350279398262501,0.999468982219696,-0.0272927936166525,0.0178041532635689,0.999915480613709,-0.0107402661815286,0.00734111806377769,0.99987530708313,-0.0109290983527899,0.0114071890711784,0.99945729970932,-0.0272818505764008,0.0184666942805052,-0.999886214733124,-3.19121063512284e-005,-0.0150884846225381,-0.999891817569733,-3.11241383315064e-005,-0.0147159229964018,-0.999675571918488,0.0107373613864183,-0.0230982396751642,-0.999677240848541,0.0106647405773401,-0.0230590142309666,3.84275654141675e-006,0.999973654747009,0.00725795608013868,3.8748712540837e-006,0.999973237514496,0.00731861218810081,0.036803875118494,0.999319612979889,0.00243006367236376,0.0370084904134274,0.999311804771423,0.00252747349441051,0.99987530708313,-0.0109290983527899,0.0114071890711784,0.999915480613709,-0.0107402661815286,0.00734111806377769,0.999982595443726,-2.01603470486589e-005,0.00591026758775115,0.999996840953827,-8.68293045641622e-006,0.00254551414400339,-0.000124467551358975,-0.999892771244049,0.0146447326987982,-0.000122252618893981,-0.999896585941315,0.0143841272220016,-0.0374277867376804,-0.998904049396515,0.0281078107655048,-0.0367212556302547,-0.99910044670105,0.021212125197053,0,1,-0,0,1,-0,0,1,-0,0,1,-0,6.31295620223682e-007,1,0,1.10636869976588e-006,1,0,1.58144166562124e-006,1,0,1.10636869976588e-006,1,0,0.0430513769388199,0.998934209346771,-0.016643337905407,0.0434250272810459,0.999002397060394,-0.010415107011795,0.0214960463345051,0.998822569847107,-0.043492816388607,
  514. 0.0215093288570642,0.99861615896225,-0.0479926094412804,-0.998615384101868,0.0427404679358006,-0.0306709948927164,-0.998789012432098,0.0430845394730568,-0.0237551014870405,-0.998632073402405,0.0202266313135624,-0.0482171624898911,-0.99830424785614,0.0200729388743639,-0.0546435974538326,-0.043355718255043,-0.998936712741852,0.0156770162284374,-0.0432774722576141,-0.998889803886414,0.0186066571623087,-0.021427208557725,-0.999590754508972,0.0189534164965153,-0.0214129071682692,-0.99966961145401,0.014216922223568,0.99936306476593,-0.0220012087374926,-0.0280974488705397,0.999051034450531,-0.0432198569178581,-0.0054005584679544,0.999062955379486,-0.0432415418326855,0.001850749948062,0.999515295028687,-0.0218652877956629,-0.0221624374389648,-0.998139619827271,0.0573509708046913,-0.0206972770392895,-0.998271882534027,0.0573819577693939,-0.0126727605238557,-0.998789012432098,0.0430845394730568,-0.0237551014870405,-0.998615384101868,0.0427404679358006,-0.0306709948927164,0.0574342310428619,0.998348236083984,0.00151305156759918,0.057435505092144,0.998297989368439,0.0101128472015262,0.0434250272810459,0.999002397060394,-0.010415107011795,0.0430513769388199,0.998934209346771,-0.016643337905407,0.999062955379486,-0.0432415418326855,0.001850749948062,0.999051034450531,-0.0432198569178581,-0.0054005584679544,0.998348116874695,-0.0574317686259747,0.0016433036653325,0.998288810253143,-0.0574755258858204,0.0107775647193193,-0.0574930049479008,-0.998302578926086,0.00930275954306126,-0.0575466714799404,-0.998172223567963,0.0184572171419859,-0.0432774722576141,-0.998889803886414,0.0186066571623087,-0.043355718255043,-0.998936712741852,0.0156770162284374,0.0201266072690487,0.99978768825531,-0.00442118430510163,0.0199545752257109,0.999799013137817,0.00193845573812723,0.0508358739316463,0.998651146888733,-0.010570908896625,0.0508537665009499,0.998591959476471,-0.0151023883372545,-0.99950385093689,0.0197152029722929,-0.024564852938056,-0.999660551548004,0.0199089348316193,-0.0168097633868456,-0.998696327209473,0.0506572686135769,-0.00628782622516155,
  515. -0.998654246330261,0.0505328103899956,-0.0116682890802622,-0.0198978818953037,-0.999577105045319,0.0212088152766228,-0.0205076318234205,-0.999071657657623,0.0378861129283905,-0.050952285528183,-0.99736362695694,0.0516698732972145,-0.0509449653327465,-0.99759840965271,0.0469279959797859,0.998602271080017,-0.0504251010715961,0.0158371590077877,0.999793529510498,-0.019862400367856,0.00429047271609306,0.999704599380493,-0.020103907212615,0.0136658195406199,0.9984992146492,-0.0502828881144524,0.0217014718800783,-0.999745011329651,-6.96037968737073e-005,-0.022584080696106,-0.999926626682281,-3.73459151887801e-005,-0.012117488309741,-0.999660551548004,0.0199089348316193,-0.0168097633868456,-0.99950385093689,0.0197152029722929,-0.024564852938056,-2.81506322608038e-006,0.99997740983963,-0.00673476001247764,7.80168988967489e-007,0.999998331069946,0.00186647695954889,0.0199545752257109,0.999799013137817,0.00193845573812723,0.0201266072690487,0.99978768825531,-0.00442118430510163,0.999704599380493,-0.020103907212615,0.0136658195406199,0.999793529510498,-0.019862400367856,0.00429047271609306,0.999972581863403,3.6799545341637e-005,-0.00740320421755314,0.999998569488525,-8.62113120092545e-006,0.00173436896875501,-9.60956094786525e-006,-0.999998986721039,0.00142942531965673,-7.11781249265186e-005,-0.999943971633911,0.0105877695605159,-0.0205076318234205,-0.999071657657623,0.0378861129283905,-0.0198978818953037,-0.999577105045319,0.0212088152766228,-1,-1.53482978930697e-005,1.2692908057943e-007,-1,-7.0592586780549e-006,1.26929066368575e-007,-1,1.22978053695988e-006,1.26929066368575e-007,-1,-7.05925913280225e-006,1.2692908057943e-007,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,5.87254817219218e-006,1.5866220337557e-007,-1,-9.36687229113886e-007,1.58662217586425e-007,-1,-7.74592263041995e-006,1.58662217586425e-007,-1,-9.36687229113886e-007,1.5866223179728e-007,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.0370084829628468,0.999311804771423,-0.00252718944102526,-0.0368038676679134,0.999319612979889,-0.00242992374114692,-0.0933564230799675,0.995630979537964,0.00191345310304314,
  516. -0.093360148370266,0.995629131793976,0.00258190813474357,0.999677240848541,0.0106647331267595,0.0230598542839289,0.999675571918488,0.0107373623177409,0.0230980906635523,0.999131321907043,0.0270746666938066,0.0316790789365768,0.999141812324524,0.0270801838487387,0.0313439890742302,0.0367213115096092,-0.99910044670105,-0.0212116949260235,0.0374278463423252,-0.998904049396515,-0.0281077772378922,0.0934682115912437,-0.994978547096252,-0.0357980206608772,0.0934668332338333,-0.995006084442139,-0.0350275598466396,-0.999468982219696,-0.0272928364574909,-0.0178018622100353,-0.999915480613709,-0.0107402661815286,-0.00734190735965967,-0.99987530708313,-0.0109291058033705,-0.0114063955843449,-0.99945729970932,-0.0272819045931101,-0.0184638239443302,0.999886214733124,-3.19141290674452e-005,0.0150885907933116,0.999891817569733,-3.11240110022482e-005,0.0147150326520205,0.999675571918488,0.0107373623177409,0.0230980906635523,0.999677240848541,0.0106647331267595,0.0230598542839289,-3.84278837373131e-006,0.999973714351654,-0.00725800916552544,-3.87481122743338e-006,0.999973237514496,-0.00731849204748869,-0.0368038676679134,0.999319612979889,-0.00242992374114692,-0.0370084829628468,0.999311804771423,-0.00252718944102526,-0.99987530708313,-0.0109291058033705,-0.0114063955843449,-0.999915480613709,-0.0107402661815286,-0.00734190735965967,-0.999982595443726,-2.01659568119794e-005,-0.00591213442385197,-0.999996840953827,-8.68955612531863e-006,-0.00254755187779665,0.000124458660138771,-0.999892771244049,-0.0146436654031277,0.000122251134598628,-0.999896585941315,-0.0143839297816157,0.0374278463423252,-0.998904049396515,-0.0281077772378922,0.0367213115096092,-0.99910044670105,-0.0212116949260235,0,1,0,0,1,0,0,1,0,0,1,0,-2.37380527323694e-006,1,3.4710119977896e-013,-3.32394824908988e-006,1,4.86032384044294e-013,-4.27409122494282e-006,1,6.24963730939954e-013,-3.32394824908988e-006,1,4.86032384044294e-013,-0.0430506393313408,0.998934328556061,0.0166433360427618,-0.0434242822229862,0.999002516269684,0.0104150157421827,-0.0214960463345051,0.998822510242462,0.0434922873973846,
  517. -0.0215093269944191,0.99861603975296,0.0479933321475983,0.998615384101868,0.0427404791116714,0.030670927837491,0.998789012432098,0.0430845506489277,0.0237547289580107,0.99863213300705,0.0202266238629818,0.0482176467776299,0.998304188251495,0.0200729239732027,0.0546443536877632,0.0433546118438244,-0.998936712741852,-0.0156772192567587,0.0432763732969761,-0.998889923095703,-0.0186071339994669,0.0214262660592794,-0.999590814113617,-0.0189530309289694,0.0214119609445333,-0.9996697306633,-0.0142164714634418,-0.99936306476593,-0.0220012478530407,0.0280983410775661,-0.999051094055176,-0.0432198792695999,0.00540074845775962,-0.999062955379486,-0.0432415567338467,-0.00185086915735155,-0.999515295028687,-0.0218653194606304,0.0221630297601223,0.998139500617981,0.0573509745299816,0.0206970125436783,0.998271882534027,0.0573819689452648,0.0126721598207951,0.998789012432098,0.0430845506489277,0.0237547289580107,0.998615384101868,0.0427404791116714,0.030670927837491,-0.0574329979717731,0.998348236083984,-0.00151362991891801,-0.0574342794716358,0.998298048973084,-0.0101123275235295,-0.0434242822229862,0.999002516269684,0.0104150157421827,-0.0430506393313408,0.998934328556061,0.0166433360427618,-0.999062955379486,-0.0432415567338467,-0.00185086915735155,-0.999051094055176,-0.0432198792695999,0.00540074845775962,-0.998348116874695,-0.0574317611753941,-0.00164319260511547,-0.998288810253143,-0.0574755258858204,-0.0107777742668986,0.0574917830526829,-0.998302638530731,-0.00930157210677862,0.0575454495847225,-0.998172342777252,-0.0184577908366919,0.0432763732969761,-0.998889923095703,-0.0186071339994669,0.0433546118438244,-0.998936712741852,-0.0156772192567587,-0.0201266054064035,0.99978768825531,0.00442176917567849,-0.0199545789510012,0.999799072742462,-0.00193800986744463,-0.0508358776569366,0.998651146888733,0.0105707794427872,-0.0508537627756596,0.998591899871826,0.0151026928797364,0.99950385093689,0.0197152178734541,0.0245647747069597,0.999660491943359,0.0199089497327805,0.0168097298592329,0.998696327209473,0.0506572611629963,0.00628766743466258,
  518. 0.998654246330261,0.0505328066647053,0.0116681950166821,0.0198978800326586,-0.999577105045319,-0.0212087035179138,0.0205076262354851,-0.999071657657623,-0.0378850735723972,0.0509522780776024,-0.99736362695694,-0.051668107509613,0.0509449616074562,-0.997598469257355,-0.0469262637197971,-0.998602271080017,-0.0504250787198544,-0.0158376134932041,-0.999793589115143,-0.0198624189943075,-0.00429042335599661,-0.999704539775848,-0.0201039202511311,-0.0136661231517792,-0.998499274253845,-0.0502828657627106,-0.0217023827135563,0.999745011329651,-6.96051647537388e-005,0.0225840993225574,0.999926626682281,-3.73471302737016e-005,0.0121176540851593,0.999660491943359,0.0199089497327805,0.0168097298592329,0.99950385093689,0.0197152178734541,0.0245647747069597,2.81554252978822e-006,0.99997740983963,0.0067359022796154,-7.79626475377881e-007,0.999998331069946,-0.00186517788097262,-0.0199545789510012,0.999799072742462,-0.00193800986744463,-0.0201266054064035,0.99978768825531,0.00442176917567849,-0.999704539775848,-0.0201039202511311,-0.0136661231517792,-0.999793589115143,-0.0198624189943075,-0.00429042335599661,-0.999972641468048,3.67992288374808e-005,0.00740335555747151,-0.999998509883881,-8.62050546857063e-006,-0.00173429364804178,9.61633577389875e-006,-0.999999046325684,-0.00143043091520667,7.11828397470526e-005,-0.999944031238556,-0.0105884540826082,0.0205076262354851,-0.999071657657623,-0.0378850735723972,0.0198978800326586,-0.999577105045319,-0.0212087035179138,1,-1.49227089423221e-005,-9.51968956997007e-008,1,-1.34416204673471e-005,-9.51968956997007e-008,1,-1.19605329018668e-005,-9.5196902805128e-008,1,-1.34416204673471e-005,-9.51968956997007e-008,1,0,0,1,0,0,1,0,0,1,0,0,1,1.37182632897748e-005,3.17323944898362e-008,1,1.8559458112577e-006,3.17323980425499e-008,1,-1.00063716672594e-005,3.17323980425499e-008,1,1.85594592494454e-006,3.17324015952636e-008,1,0,0,1,0,0,1,0,0,1,0,0,-0.953183948993683,0.182811185717583,-0.240874528884888,-0.812969207763672,0.12565441429615,-0.568587779998779,-0.732256948947906,-0.145311176776886,0.665345311164856,
  519. -0.966809153556824,0.0948939472436905,0.23722431063652,-0.966809153556824,0.0948939472436905,0.23722431063652,-0.732256948947906,-0.145311176776886,0.665345311164856,-0.743615686893463,0.323161214590073,0.585322618484497,-0.973909020423889,-0.0149115715175867,0.226448699831963,-0.973909020423889,-0.0149115715175867,0.226448699831963,-0.968350768089294,-0.0420193299651146,-0.246030941605568,-0.953183948993683,0.182811185717583,-0.240874528884888,-0.966809153556824,0.0948939472436905,0.23722431063652,0.999666333198547,0.00277279457077384,-0.0256819520145655,0.999973893165588,0.00224341452121735,-0.00688493438065052,0.999996781349182,0.00138667528517544,0.002162677468732,0.999959409236908,0.00172999268397689,-0.00884533580392599,-0.00998701807111502,0.99961531162262,0.0258764419704676,-0.00998699851334095,0.999614417552948,0.0259101092815399,-0.00760022271424532,0.999074697494507,0.0423341430723667,-0.00757592590525746,0.999074697494507,0.0423372052609921,-0.80738377571106,-0.0676224306225777,-0.586138725280762,-0.812969207763672,0.12565441429615,-0.568587779998779,-0.953183948993683,0.182811185717583,-0.240874528884888,-0.968350768089294,-0.0420193299651146,-0.246030941605568,-0.743615686893463,0.323161214590073,0.585322618484497,-0.80738377571106,-0.0676224306225777,-0.586138725280762,-0.968350768089294,-0.0420193299651146,-0.246030941605568,-0.973909020423889,-0.0149115715175867,0.226448699831963,-0.00763512635603547,-0.998543739318848,-0.0534059405326843,-0.00765962200239301,-0.998544692993164,-0.0533848479390144,-0.0100330337882042,-0.999273777008057,-0.0367596112191677,-0.0100329853594303,-0.999271273612976,-0.0368273444473743,-0.999645829200745,-0.00210036034695804,0.0265297926962376,-0.999740779399872,-0.00197998038493097,0.0226818919181824,-0.999813795089722,-0.00229434296488762,0.0191644988954067,-0.999861717224121,-0.00221878243610263,0.0164844375103712,-0.702037155628204,-0.0777372568845749,-0.707884728908539,-0.707758247852325,0.246155604720116,0.662182629108429,-0.970974743366241,-0.074134573340416,0.227403372526169,
  520. -0.970016837120056,-0.0887439176440239,-0.226256057620049,-0.708392202854156,0.381619364023209,-0.593756914138794,-0.702037155628204,-0.0777372568845749,-0.707884728908539,-0.970016837120056,-0.0887439176440239,-0.226256057620049,-0.971659123897552,-0.0290561132133007,-0.234594151377678,-0.969378590583801,-0.114623382687569,0.217178702354431,-0.970974743366241,-0.074134573340416,0.227403372526169,-0.707758247852325,0.246155604720116,0.662182629108429,-0.713247954845428,-0.241781309247017,0.657890021800995,-0.971659123897552,-0.0290561132133007,-0.234594151377678,-0.969378590583801,-0.114623382687569,0.217178702354431,-0.713247954845428,-0.241781309247017,0.657890021800995,-0.708392202854156,0.381619364023209,-0.593756914138794,-0.969378590583801,-0.114623382687569,0.217178702354431,-0.971659123897552,-0.0290561132133007,-0.234594151377678,-0.970016837120056,-0.0887439176440239,-0.226256057620049,-0.970974743366241,-0.074134573340416,0.227403372526169,-0.00334016280248761,-0.9975466132164,-0.0699258670210838,-0.00334013882093132,-0.997544944286346,-0.0699494183063507,-0.00765962200239301,-0.998544692993164,-0.0533848479390144,-0.00763512635603547,-0.998543739318848,-0.0534059405326843,0.999959409236908,0.00172999268397689,-0.00884533580392599,0.999996781349182,0.00138667528517544,0.002162677468732,0.999973475933075,6.19551792624407e-005,0.0072809592820704,0.999996185302734,0.000431522319559008,-0.00274546816945076,-0.00757592590525746,0.999074697494507,0.0423372052609921,-0.00760022271424532,0.999074697494507,0.0423341430723667,-0.0032548219896853,0.998268306255341,0.0587364919483662,-0.0032547798473388,0.998265743255615,0.0587783940136433,-0.999526083469391,-0.00152876297943294,0.030745567753911,-0.999457001686096,-0.00160877802409232,0.0329102911055088,-0.999740779399872,-0.00197998038493097,0.0226818919181824,-0.999645829200745,-0.00210036034695804,0.0265297926962376,-0.917576611042023,0.175511658191681,-0.356719523668289,-0.768816769123077,0.107080593705177,-0.630439937114716,-0.671570956707001,-0.136512622237206,0.728255927562714,
  521. -0.941860496997833,0.0450735092163086,0.332967430353165,-0.941860496997833,0.0450735092163086,0.332967430353165,-0.671570956707001,-0.136512622237206,0.728255927562714,-0.697618782520294,0.396905869245529,0.596484482288361,-0.944388210773468,0.07667176425457,0.319769382476807,-0.944388210773468,0.07667176425457,0.319769382476807,-0.934609413146973,-0.0917345955967903,-0.343642592430115,-0.917576611042023,0.175511658191681,-0.356719523668289,-0.941860496997833,0.0450735092163086,0.332967430353165,0.999789655208588,0.003333073342219,-0.0202403292059898,0.99979156255722,0.00333550618961453,-0.0201406963169575,0.999962091445923,0.00294135045260191,-0.00819437950849533,0.999961316585541,0.00294535793364048,-0.00829508434981108,0.000844979425892234,0.999563574790955,-0.0295323710888624,0.000286019407212734,0.998346328735352,-0.0574852302670479,0.00232272082939744,0.999408066272736,-0.0343262068927288,0.00254516000859439,0.999967515468597,-0.00765602290630341,-0.772552013397217,-0.156062304973602,-0.615473866462708,-0.768816769123077,0.107080593705177,-0.630439937114716,-0.917576611042023,0.175511658191681,-0.356719523668289,-0.934609413146973,-0.0917345955967903,-0.343642592430115,-0.697618782520294,0.396905869245529,0.596484482288361,-0.772552013397217,-0.156062304973602,-0.615473866462708,-0.934609413146973,-0.0917345955967903,-0.343642592430115,-0.944388210773468,0.07667176425457,0.319769382476807,-0.00921188574284315,-0.999922871589661,0.0083349347114563,-0.00929834134876728,-0.999901413917542,0.010527016595006,-0.0117304781451821,-0.999851942062378,0.0125971250236034,-0.0116173662245274,-0.99975848197937,0.0186550579965115,-0.999800622463226,-0.00223685428500175,0.0198412965983152,-0.999768137931824,-0.00221179286018014,0.0214216932654381,-0.999497830867767,-0.00236316281370819,0.0315994247794151,-0.999551653862,-0.0024060329888016,0.0298449024558067,-0.628673374652863,-0.283094793558121,-0.724311590194702,-0.630825102329254,0.339808523654938,0.697559952735901,-0.945657730102539,0.0180113296955824,0.324664741754532,
  522. -0.935492873191834,-0.20042684674263,-0.291002094745636,-0.644722819328308,0.33434009552002,-0.687422156333923,-0.628673374652863,-0.283094793558121,-0.724311590194702,-0.935492873191834,-0.20042684674263,-0.291002094745636,-0.943363845348358,-0.0345671325922012,-0.329954206943512,-0.938297271728516,-0.122665755450726,0.323344200849533,-0.945657730102539,0.0180113296955824,0.324664741754532,-0.630825102329254,0.339808523654938,0.697559952735901,-0.646846890449524,-0.249032124876976,0.720813512802124,-0.943363845348358,-0.0345671325922012,-0.329954206943512,-0.938297271728516,-0.122665755450726,0.323344200849533,-0.646846890449524,-0.249032124876976,0.720813512802124,-0.644722819328308,0.33434009552002,-0.687422156333923,-0.938297271728516,-0.122665755450726,0.323344200849533,-0.943363845348358,-0.0345671325922012,-0.329954206943512,-0.935492873191834,-0.20042684674263,-0.291002094745636,-0.945657730102539,0.0180113296955824,0.324664741754532,-0.00322970096021891,-0.99984210729599,0.0174735262989998,-0.00330351502634585,-0.999990403652191,0.00288460147567093,-0.00469992775470018,-0.999981820583344,-0.00377249158918858,-0.00466225715354085,-0.99998140335083,0.00392741151154041,0.999998331069946,0.0011823505628854,-0.00144572311546654,0.999998509883881,0.00118350319098681,-0.00131941202562302,0.999981760978699,0.000440052332123742,-0.00602552108466625,0.999980866909027,0.000437446986325085,-0.00617658067494631,0.00692277494817972,0.999970555305481,0.00334271602332592,0.00684851501137018,0.999889731407166,-0.0131777664646506,0.00864651799201965,0.999943196773529,-0.00623987149447203,0.00871491804718971,0.999945759773254,0.00570346834138036,-0.999775528907776,2.77232611551881e-005,0.0211881697177887,-0.99974000453949,7.17774964869022e-005,0.0228023454546928,-0.999908149242401,-0.00076806650031358,0.0135308597236872,-0.999847769737244,-0.000689256470650434,0.0174381583929062,-0.00466225715354085,-0.99998140335083,0.00392741151154041,-0.00469992775470018,-0.999981820583344,-0.00377249158918858,-0.00929834134876728,-0.999901413917542,0.010527016595006,
  523. -0.00921188574284315,-0.999922871589661,0.0083349347114563,0.999961316585541,0.00294535793364048,-0.00829508434981108,0.999962091445923,0.00294135045260191,-0.00819437950849533,0.999998509883881,0.00118350319098681,-0.00131941202562302,0.999998331069946,0.0011823505628854,-0.00144572311546654,0.00254516000859439,0.999967515468597,-0.00765602290630341,0.00232272082939744,0.999408066272736,-0.0343262068927288,0.00684851501137018,0.999889731407166,-0.0131777664646506,0.00692277494817972,0.999970555305481,0.00334271602332592,-0.999847769737244,-0.000689256470650434,0.0174381583929062,-0.999908149242401,-0.00076806650031358,0.0135308597236872,-0.999768137931824,-0.00221179286018014,0.0214216932654381,-0.999800622463226,-0.00223685428500175,0.0198412965983152,0.953355193138123,0.178348883986473,0.243527621030808,0.805639207363129,0.100553587079048,0.583810269832611,0.711520552635193,-0.101199485361576,-0.695339739322662,0.963705539703369,0.111294165253639,-0.242662891745567,0.963705539703369,0.111294165253639,-0.242662891745567,0.711520552635193,-0.101199485361576,-0.695339739322662,0.707625150680542,0.398552030324936,-0.583457887172699,0.970554411411285,0.0357371270656586,-0.238216564059258,0.970554411411285,0.0357371270656586,-0.238216564059258,0.972249984741211,-0.0471420921385288,0.229145601391792,0.953355193138123,0.178348883986473,0.243527621030808,0.963705539703369,0.111294165253639,-0.242662891745567,-0.999703824520111,-0.0208921432495117,-0.0124856336042285,-0.999660849571228,-0.0206848494708538,-0.0158271547406912,-0.999744474887848,-0.0226088520139456,-7.98681357991882e-005,-0.999736249446869,-0.0227827895432711,0.00289690122008324,-0.0143570946529508,0.998210966587067,0.0580418854951859,-0.0143504133448005,0.998241603374481,0.057514775544405,-0.0176040250808001,0.99864262342453,0.0490227080881596,-0.0175992548465729,0.998620867729187,0.0494648739695549,0.80944037437439,-0.130028367042542,0.572624623775482,0.805639207363129,0.100553587079048,0.583810269832611,0.953355193138123,0.178348883986473,0.243527621030808,
  524. 0.972249984741211,-0.0471420921385288,0.229145601391792,0.707625150680542,0.398552030324936,-0.583457887172699,0.80944037437439,-0.130028367042542,0.572624623775482,0.972249984741211,-0.0471420921385288,0.229145601391792,0.970554411411285,0.0357371270656586,-0.238216564059258,0.0296998061239719,-0.998380303382874,-0.0485254377126694,0.0296966657042503,-0.998381197452545,-0.04850834608078,0.0326206274330616,-0.997830092906952,-0.0571943186223507,0.0326212085783482,-0.997827649116516,-0.0572358556091785,0.99972677230835,0.0229998026043177,-0.00418119737878442,0.99972939491272,0.0224456805735826,0.00612459052354097,0.999636352062225,0.0209079030901194,0.0170329939574003,0.999683082103729,0.0211142785847187,0.0137096252292395,0.709449529647827,-0.202478855848312,0.67504346370697,0.677368700504303,0.339332669973373,-0.652705848217011,0.967678666114807,0.0906183272600174,-0.235343277454376,0.973313927650452,-0.103334113955498,0.204895555973053,0.687929272651672,0.390699118375778,0.611643373966217,0.709449529647827,-0.202478855848312,0.67504346370697,0.973313927650452,-0.103334113955498,0.204895555973053,0.974124670028687,0.0649321377277374,0.216483324766159,0.968932092189789,-0.0634006410837173,-0.239062801003456,0.967678666114807,0.0906183272600174,-0.235343277454376,0.677368700504303,0.339332669973373,-0.652705848217011,0.696558117866516,-0.2594373524189,-0.668953776359558,0.974124670028687,0.0649321377277374,0.216483324766159,0.968932092189789,-0.0634006410837173,-0.239062801003456,0.696558117866516,-0.2594373524189,-0.668953776359558,0.687929272651672,0.390699118375778,0.611643373966217,0.968932092189789,-0.0634006410837173,-0.239062801003456,0.974124670028687,0.0649321377277374,0.216483324766159,0.973313927650452,-0.103334113955498,0.204895555973053,0.967678666114807,0.0906183272600174,-0.235343277454376,0.0270607378333807,-0.998845040798187,-0.0397047623991966,0.0270606596022844,-0.998844742774963,-0.0397118143737316,0.0296966657042503,-0.998381197452545,-0.04850834608078,0.0296998061239719,-0.998380303382874,-0.0485254377126694,
  525. -0.999736249446869,-0.0227827895432711,0.00289690122008324,-0.999744474887848,-0.0226088520139456,-7.98681357991882e-005,-0.999664127826691,-0.0240171831101179,0.00974133983254433,-0.999632596969604,-0.0241290107369423,0.0123539688065648,-0.0175992548465729,0.998620867729187,0.0494648739695549,-0.0176040250808001,0.99864262342453,0.0490227080881596,-0.0210000555962324,0.998989939689636,0.03972477465868,-0.0209956839680672,0.99897575378418,0.0400824062526226,0.999613046646118,0.0241569522768259,-0.0137965884059668,0.999644875526428,0.0240572970360518,-0.0114636775106192,0.99972939491272,0.0224456805735826,0.00612459052354097,0.99972677230835,0.0229998026043177,-0.00418119737878442,-0.0327367298305035,0.699041128158569,-0.714331805706024,-0.0331086665391922,0.694906890392303,-0.718337118625641,-0.0162085872143507,0.694657206535339,-0.719158291816711,-0.0162366610020399,0.699481666088104,-0.714466094970703,0.998242974281311,0.0529543645679951,-0.0265856254845858,0.998194754123688,0.0542400106787682,-0.0257921181619167,0.999527335166931,0.0290771350264549,-0.00997861288487911,0.99954217672348,0.0282333642244339,-0.0108754020184278,0.0330674014985561,-0.713243246078491,0.700136184692383,0.0329843573272228,-0.715224742889404,0.698115706443787,0.0163660664111376,-0.719350695610046,0.694454252719879,0.0163368284702301,-0.712900698184967,0.701074779033661,-0.999203681945801,-0.000933106988668442,0.0398892425000668,-0.998374462127686,-0.0360965579748154,0.0441088192164898,-0.998371005058289,-0.0361603610217571,0.0441344641149044,-0.999231219291687,-0.00160709978081286,0.0391733236610889,0.996922433376312,0.0688741207122803,-0.0374447777867317,0.996904969215393,0.0694266259670258,-0.03688595443964,0.998194754123688,0.0542400106787682,-0.0257921181619167,0.998242974281311,0.0529543645679951,-0.0265856254845858,-0.0437816828489304,0.707110106945038,-0.70574676990509,-0.0437838360667229,0.703435659408569,-0.709409117698669,-0.0331086665391922,0.694906890392303,-0.718337118625641,-0.0327367298305035,0.699041128158569,-0.714331805706024,
  526. -0.998371005058289,-0.0361603610217571,0.0441344641149044,-0.998374462127686,-0.0360965579748154,0.0441088192164898,-0.997055470943451,-0.0633018091320992,0.0432842038571835,-0.9970543384552,-0.0633515790104866,0.0432349666953087,0.0438690260052681,-0.712390244007111,0.700411081314087,0.0439038500189781,-0.71632707118988,0.696382164955139,0.0329843573272228,-0.715224742889404,0.698115706443787,0.0330674014985561,-0.713243246078491,0.700136184692383,0.999863147735596,0.0117033571004868,-0.0117001151666045,0.999862849712372,0.0117148598656058,-0.0117116114124656,0.999862551689148,0.0117263589054346,-0.0117231095209718,0.999862849712372,0.0117148598656058,-0.0117116114124656,1,0,0,1,0,0,1,0,0,1,0,0,-0.0327365472912788,0.74204432964325,0.669551074504852,-0.0331080853939056,0.745879530906677,0.665257513523102,-0.0162078067660332,0.746689975261688,0.664974868297577,-0.0162358898669481,0.742194712162018,0.669987618923187,0.998243451118469,0.0287012904882431,0.0518291369080544,0.998195230960846,0.0279609616845846,0.0531457811594009,0.99952757358551,0.0111422929912806,0.028645059093833,0.999542355537415,0.0120036322623491,0.0277662537992001,0.0330677591264248,-0.72843599319458,-0.68431544303894,0.0329846739768982,-0.726496338844299,-0.686378240585327,0.0163668468594551,-0.723002135753632,-0.690651893615723,0.0163375902920961,-0.729357838630676,-0.68393737077713,-0.999203503131866,-0.0398987308144569,0.000674467533826828,-0.998374104499817,-0.0455381162464619,-0.0342853292822838,-0.99837064743042,-0.0455674864351749,-0.0343479178845882,-0.999230980873108,-0.0392120555043221,-2.65631824731827e-005,0.996923089027405,0.0401958338916302,0.0672954544425011,0.996905565261841,0.0396597348153591,0.067870244383812,0.998195230960846,0.0279609616845846,0.0531457811594009,0.998243451118469,0.0287012904882431,0.0518291369080544,-0.0437815971672535,0.733793258666992,0.677960634231567,-0.0437837541103363,0.737302899360657,0.674142003059387,-0.0331080853939056,0.745879530906677,0.665257513523102,-0.0327365472912788,0.74204432964325,0.669551074504852,
  527. -0.99837064743042,-0.0455674864351749,-0.0343479178845882,-0.998374104499817,-0.0455381162464619,-0.0342853292822838,-0.997055053710938,-0.0458150915801525,-0.0615001134574413,-0.997054040431976,-0.0457678213715553,-0.0615519285202026,0.0438691154122353,-0.728675842285156,-0.683452308177948,0.0439039245247841,-0.724810183048248,-0.687548279762268,0.0329846739768982,-0.726496338844299,-0.686378240585327,0.0330677591264248,-0.72843599319458,-0.68431544303894,0.999862909317017,0.0121621554717422,0.0112359570339322,0.999862670898438,0.012172763235867,0.011245739646256,0.999862551689148,0.0121833691373467,0.0112555231899023,0.999862670898438,0.012172763235867,0.011245739646256,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-0.0327048376202583,0.742045104503632,0.6695516705513,-0.0330763831734657,0.745880722999573,0.66525787115097,-0.0161768086254597,0.74668949842453,0.664976060390472,-0.0162048023194075,0.742194414138794,0.669988751411438,0.998243570327759,0.0287039838731289,0.0518263876438141,0.998195290565491,0.0279632061719894,0.0531433299183846,0.999527812004089,0.011157188564539,0.0286298282444477,0.999542593955994,0.0120192738249898,0.0277502723038197,0.0330477096140385,-0.72843599319458,-0.684316396713257,0.0329647436738014,-0.726496517658234,-0.686379075050354,0.0163658242672682,-0.723002552986145,-0.690651476383209,0.0163365583866835,-0.729358196258545,-0.683937072753906,-0.999203503131866,-0.0398992411792278,0.00067676039179787,-0.998374223709106,-0.0455338954925537,-0.0342883802950382,-0.998370766639709,-0.0455587096512318,-0.0343556217849255,-0.999231278896332,-0.0392039716243744,-3.30377370119095e-005,0.996922731399536,0.0401865877211094,0.0673053711652756,0.996905326843262,0.0396504886448383,0.0678801685571671,0.998195290565491,0.0279632061719894,0.0531433299183846,0.998243570327759,0.0287039838731289,0.0518263876438141,-0.0437495931982994,0.733794927597046,0.677960872650146,-0.0437517091631889,0.737305164337158,0.674141705036163,-0.0330763831734657,0.745880722999573,0.66525787115097,-0.0327048376202583,0.742045104503632,0.6695516705513,
  528. -0.998370766639709,-0.0455587096512318,-0.0343556217849255,-0.998374223709106,-0.0455338954925537,-0.0342883802950382,-0.997055053710938,-0.0458156354725361,-0.061499509960413,-0.997053980827332,-0.0457678511738777,-0.06155189499259,0.0438368022441864,-0.728676080703735,-0.683454155921936,0.0438716597855091,-0.724810063838959,-0.687550485134125,0.0329647436738014,-0.726496517658234,-0.686379075050354,0.0330477096140385,-0.72843599319458,-0.684316396713257,0.999861717224121,0.0122171249240637,0.011286661028862,0.99986207485199,0.0122025301679969,0.0112731978297234,0.999862372875214,0.0121879354119301,0.0112597346305847,0.99986207485199,0.0122025301679969,0.0112731987610459,1,0,0,1,0,0,1,0,0,1,0,0,-0.0327047556638718,0.699041604995728,-0.714332818984985,-0.033076710999012,0.694906294345856,-0.718339204788208,-0.0161761436611414,0.694656193256378,-0.71916002035141,-0.016204135492444,0.699482858181,-0.71446567773819,0.998243153095245,0.0529511161148548,-0.0265890602022409,0.998194932937622,0.0542366057634354,-0.0257955528795719,0.9995276927948,0.0290618669241667,-0.00999485608190298,0.999542474746704,0.0282188076525927,-0.0108908908441663,0.0330481268465519,-0.713243961334229,0.700136303901672,0.0329652018845081,-0.715225219726563,0.698116183280945,0.0163670796900988,-0.719350039958954,0.694455027580261,0.0163378342986107,-0.712900578975677,0.701074838638306,-0.999203681945801,-0.00093158520758152,0.0398889482021332,-0.998374581336975,-0.036099411547184,0.0441043712198734,-0.998371124267578,-0.0361672900617123,0.0441256798803806,-0.999231457710266,-0.00161399296484888,0.03916409984231,0.996922135353088,0.0688825324177742,-0.0374362356960773,0.996904671192169,0.0694356262683868,-0.0368768349289894,0.998194932937622,0.0542366057634354,-0.0257955528795719,0.998243153095245,0.0529511161148548,-0.0265890602022409,-0.0437501929700375,0.707111835479736,-0.705746948719025,-0.0437523126602173,0.703437447547913,-0.709409296512604,-0.033076710999012,0.694906294345856,-0.718339204788208,-0.0327047556638718,0.699041604995728,-0.714332818984985,
  529. -0.998371124267578,-0.0361672900617123,0.0441256798803806,-0.998374581336975,-0.036099411547184,0.0441043712198734,-0.997055470943451,-0.063301220536232,0.0432846732437611,-0.9970543384552,-0.0633507594466209,0.0432356633245945,0.0438366755843163,-0.712392091751099,0.700411200523376,0.043871533125639,-0.716328501701355,0.696382641792297,0.0329652018845081,-0.715225219726563,0.698116183280945,0.0330481268465519,-0.713243961334229,0.700136303901672,0.999861896038055,0.0117555307224393,-0.011752269230783,0.999862194061279,0.0117440605536103,-0.0117408027872443,0.999862432479858,0.0117325913161039,-0.0117293372750282,0.999862194061279,0.0117440596222878,-0.0117408037185669,1,0,0,1,0,0,1,0,0,1,0,0,-0.0360496379435062,0.999333560466766,0.00575003400444984,-0.0361412614583969,0.999329328536987,0.00588804623112082,-0.0213572531938553,0.999758124351501,0.005250358954072,-0.0213567055761814,0.999760329723358,0.00482949614524841,0.999057233333588,0.0359156206250191,0.024388212710619,0.999049484729767,0.0359795391559601,0.0246075391769409,0.999497652053833,0.0211460683494806,0.0236073285341263,0.999509155750275,0.0211504809558392,0.0231147725135088,0.0361933410167694,-0.999102234840393,-0.0220206379890442,0.0361280217766762,-0.999112725257874,-0.0216475240886211,0.0213722866028547,-0.999556303024292,-0.0207503288984299,0.0213727261871099,-0.999544143676758,-0.0213269721716642,-0.999750792980194,-0.0212921928614378,-0.00671728700399399,-0.999124467372894,-0.0360384210944176,-0.0212509706616402,-0.999126374721527,-0.0360039472579956,-0.0212216731160879,-0.999750077724457,-0.0212913099676371,-0.00681729149073362,0.99803102016449,0.0573569610714912,0.0253841485828161,0.998038172721863,0.0573579370975494,0.0250965114682913,0.999049484729767,0.0359795391559601,0.0246075391769409,0.999057233333588,0.0359156206250191,0.024388212710619,-0.057405773550272,0.998328626155853,0.00667825015261769,-0.0574060901999474,0.998331189155579,0.006283740978688,-0.0361412614583969,0.999329328536987,0.00588804623112082,-0.0360496379435062,0.999333560466766,0.00575003400444984,
  530. -0.999126374721527,-0.0360039472579956,-0.0212216731160879,-0.999124467372894,-0.0360384210944176,-0.0212509706616402,-0.997716724872589,-0.0575454570353031,-0.035354632884264,-0.997712969779968,-0.0575457103550434,-0.0354597643017769,0.0575432553887367,-0.998113512992859,-0.0214078109711409,0.057545255869627,-0.998102724552155,-0.021899638697505,0.0361280217766762,-0.999112725257874,-0.0216475240886211,0.0361933410167694,-0.999102234840393,-0.0220206379890442,1,-3.78311706299428e-005,2.85465375782223e-007,1,4.92077924718615e-006,2.85465347360514e-007,1,4.76727327622939e-005,2.85465404203933e-007,1,4.92077924718615e-006,2.85465347360514e-007,1,0,0,1,0,0,1,0,0,1,0,0,-0.0356149673461914,0.999365210533142,0.000825556053314358,-0.0356427915394306,0.999341905117035,0.00674542458727956,-0.017664086073637,0.999531328678131,0.025004955008626,-0.0176570508629084,0.999700665473938,0.0169322770088911,0.998784065246582,0.043025579303503,0.0240682326257229,0.998637437820435,0.0431042797863483,0.0294160861521959,0.999348163604736,0.0222743023186922,0.0284120216965675,0.999532103538513,0.0220418944954872,0.0212060213088989,0.0356584899127483,-0.999102294445038,-0.0228716228157282,0.0357515439391136,-0.999196708202362,-0.0181091912090778,0.0176645386964083,-0.999237537384033,-0.0348175652325153,0.0176665559411049,-0.999028205871582,-0.0403818525373936,-0.999582231044769,-0.0206929929554462,0.0201792232692242,-0.998997867107391,-0.0431602336466312,-0.0118537247180939,-0.998993873596191,-0.0432143062353134,-0.0119928130879998,-0.999593138694763,-0.020711624994874,0.0196123030036688,0.998224794864655,0.0568835139274597,0.0176489241421223,0.998169362545013,0.0567841827869415,0.0208222810178995,0.998637437820435,0.0431042797863483,0.0294160861521959,0.998784065246582,0.043025579303503,0.0240682326257229,-0.0472614765167236,0.998876810073853,-0.00342225469648838,-0.0472658090293407,0.998882353305817,0.000122442317660898,-0.0356427915394306,0.999341905117035,0.00674542458727956,-0.0356149673461914,0.999365210533142,0.000825556053314358,
  531. -0.998993873596191,-0.0432143062353134,-0.0119928130879998,-0.998997867107391,-0.0431602336466312,-0.0118537247180939,-0.997434735298157,-0.0562221743166447,-0.0443070642650127,-0.997431695461273,-0.0562202036380768,-0.0443760119378567,0.0473599582910538,-0.99877005815506,-0.0146813355386257,0.0473435632884502,-0.998819231987,-0.0108939511701465,0.0357515439391136,-0.999196708202362,-0.0181091912090778,0.0356584899127483,-0.999102294445038,-0.0228716228157282,1,-3.8145764847286e-005,2.36041159951128e-007,1,8.99906626727898e-006,2.36041174161983e-007,1,5.61439010198228e-005,2.36041188372838e-007,1,8.99906626727898e-006,2.36041188372838e-007,1,0,0,1,2.13563976103615e-006,0,1,4.27127952207229e-006,0,1,2.13563976103615e-006,0,-0.0313092134892941,0.999491631984711,0.00602582609280944,-0.031395897269249,0.99948650598526,0.00641287583857775,-0.0182134732604027,0.999828815460205,0.00328018167056143,-0.018213015049696,0.999829828739166,0.00294362963177264,0.999033689498901,0.0366145558655262,0.0243119653314352,0.999025940895081,0.0366857163608074,0.0245259646326303,0.99950236082077,0.0211320519447327,0.0234231352806091,0.999511063098907,0.0211357101798058,0.0230438783764839,0.0314527601003647,-0.999187171459198,-0.0252168290317059,0.0313982255756855,-0.999200999736786,-0.0247303936630487,0.0182598493993282,-0.999538123607636,-0.0242950022220612,0.0182602256536484,-0.999526798725128,-0.0247533917427063,-0.999754428863525,-0.0212929211556911,-0.00614553689956665,-0.999110579490662,-0.0367390923202038,-0.0206997394561768,-0.999112188816071,-0.0367116928100586,-0.0206719897687435,-0.999753713607788,-0.0212918501347303,-0.00625825207680464,0.998032689094543,0.0573730729520321,0.0252825822681189,0.998037338256836,0.057373583316803,0.0250969752669334,0.999025940895081,0.0366857163608074,0.0245259646326303,0.999033689498901,0.0366145558655262,0.0243119653314352,-0.0488381795585155,0.998769998550415,0.00857249554246664,-0.0488380007445812,0.998768031597137,0.00880005210638046,-0.031395897269249,0.99948650598526,0.00641287583857775,
  532. -0.0313092134892941,0.999491631984711,0.00602582609280944,-0.999112188816071,-0.0367116928100586,-0.0206719897687435,-0.999110579490662,-0.0367390923202038,-0.0206997394561768,-0.997735440731049,-0.0575577802956104,-0.0348023772239685,-0.997732102870941,-0.0575580261647701,-0.0348951406776905,0.0489549823105335,-0.998478770256042,-0.0253691878169775,0.0489538535475731,-0.998486340045929,-0.0250715408474207,0.0313982255756855,-0.999200999736786,-0.0247303936630487,0.0314527601003647,-0.999187171459198,-0.0252168290317059,1,2.54549413511995e-005,-3.65436449101253e-007,1,7.82361894380301e-006,-3.65436449101253e-007,1,-9.8077034635935e-006,-3.65436477522962e-007,1,7.82361894380301e-006,-3.65436449101253e-007,1,0,0,1,0,0,1,0,0,1,0,0,-0.113608010113239,0.993520677089691,0.00315666478127241,-0.113484241068363,0.993534982204437,0.0030915760435164,-0.161815285682678,0.986811280250549,-0.00439865980297327,-0.161815628409386,0.9868124127388,-0.00412451894953847,0.994727671146393,0.100590236485004,0.019960667937994,0.994790732860565,0.100773222744465,0.0153711978346109,0.987817883491516,0.155292332172394,0.0100107314065099,0.987813830375671,0.15529391169548,0.0103813214227557,0.113235622644424,-0.993167877197266,-0.0282026119530201,0.113976247608662,-0.992941379547119,-0.0328178890049458,0.161756113171577,-0.986106872558594,-0.0377935320138931,0.161758437752724,-0.986122131347656,-0.0373828411102295,-0.987710177898407,-0.155313909053802,-0.0175015907734632,-0.994898855686188,-0.100566990673542,-0.00791466794908047,-0.994804501533508,-0.100990235805511,-0.0128436703234911,-0.987708926200867,-0.155314087867737,-0.0175682678818703,0.998559772968292,0.0484397411346436,0.0230681169778109,0.998552441596985,0.0484319031238556,0.023397795855999,0.994790732860565,0.100773222744465,0.0153711978346109,0.994727671146393,0.100590236485004,0.019960667937994,-0.0673505291342735,0.997675716876984,0.0103481970727444,-0.0673506408929825,0.997672975063324,0.0106073264032602,-0.113484241068363,0.993534982204437,0.0030915760435164,-0.113608010113239,0.993520677089691,0.00315666478127241,
  533. -0.994804501533508,-0.100990235805511,-0.0128436703234911,-0.994898855686188,-0.100566990673542,-0.00791466794908047,-0.998799860477448,-0.0489394590258598,-0.00195624143816531,-0.998799920082092,-0.0489407815039158,-0.00188415078446269,0.0674602463841438,-0.997426629066467,-0.0242760628461838,0.0674592256546021,-0.997432827949524,-0.0240198392421007,0.113976247608662,-0.992941379547119,-0.0328178890049458,0.113235622644424,-0.993167877197266,-0.0282026119530201,0.962289214134216,0.27202832698822,1.61136725296274e-007,0.962284207344055,0.272046208381653,1.61135886855845e-007,0.962289214134216,0.27202832698822,1.61136739507128e-007,0.962294340133667,0.272010445594788,1.61137592158411e-007,1,0,0,1,0,0,1,0,0,1,0,0,0.00230640545487404,-0.999997019767761,0.000778292305767536,0.00240598153322935,-0.999996840953827,0.00077819952275604,0.00250268843956292,-0.999996900558472,0.00029820716008544,0.0025025128852576,-0.999996840953827,0.000298208324238658,0.00364724826067686,0,-0.999993324279785,0.00364736886695027,0,-0.999993324279785,0.00365038053132594,0,-0.999993324279785,0.00365017121657729,0,-0.999993324279785,-0.00232389220036566,0.99999725818634,-0.000209243589779362,-0.00232500187121332,0.99999725818634,-0.000209236051887274,-0.00232560513541102,0.999997079372406,-0.000636542390566319,-0.0022457018494606,0.999997317790985,-0.000636620912700891,0.000576118880417198,9.79374249254761e-007,0.999999821186066,0.000575599784497172,9.85037331702188e-007,0.999999821186066,0.000557390390895307,6.69476378334366e-007,0.999999821186066,0.000558085099328309,6.69476378334366e-007,0.999999821186066
  534. }
  535. BinormalsW: *2980 {
  536. 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,
  537. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  538. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  539. }
  540. }
  541. LayerElementTangent: 0 {
  542. Version: 102
  543. Name: "map1"
  544. MappingInformationType: "ByPolygonVertex"
  545. ReferenceInformationType: "Direct"
  546. Tangents: *8940 {
  547. a: 0.99982351064682,-0.0164230410009623,-0.00912387575954199,0.999924123287201,-0.00896584987640381,0.00844368431717157,0.999641299247742,-0.00739502720534801,0.0257429629564285,0.999829053878784,-0.0164216086268425,-0.00850057601928711,0.999983072280884,1.70351682982073e-007,0.00582333654165268,0.999876916408539,-4.39706673205365e-006,0.0156883895397186,0.999923646450043,-7.72005932958564e-006,0.012358414940536,0.999983072280884,8.59440092426667e-007,0.00582333793863654,0.999918162822723,-1.12019470179803e-005,0.0127904610708356,0.999888360500336,-3.1213394322549e-006,0.0149445189163089,0.999983131885529,-6.23304731561802e-006,0.00580840976908803,0.999983131885529,-5.71434475205024e-006,0.00580841023474932,0.211696833372116,0.0834834352135658,-0.973763346672058,0.239472448825836,0.0460213385522366,-0.969811797142029,-0.248836115002632,-0.0911268815398216,-0.964249193668365,-0.213777810335159,-0.0786478295922279,-0.97371119260788,-0.0596295744180679,-0.996439695358276,-0.0595998615026474,-0.0410704277455807,-0.990687966346741,-0.129809647798538,0.145668998360634,-0.986461341381073,0.0753296166658401,0.173292458057404,-0.982888042926788,0.0624566003680229,0.999788880348206,-0.0174859166145325,-0.0107915736734867,0.99979442358017,-0.0174855906516314,-0.0102623859420419,0.999914169311523,-0.008149110712111,-0.0102658728137612,0.9999098777771,-0.0084023829549551,-0.010481053031981,-0.248836115002632,-0.0911268815398216,-0.964249193668365,0.239472448825836,0.0460213385522366,-0.969811797142029,0.548347771167755,-0.171080082654953,-0.818563580513,-0.507130265235901,0.232475697994232,-0.829924046993256,0.548347771167755,-0.171080082654953,-0.818563580513,0.239472448825836,0.0460213385522366,-0.969811797142029,0.211696833372116,0.0834834352135658,-0.973763346672058,0.622481822967529,0.0437309890985489,-0.781411468982697,-0.582790732383728,-0.117235772311687,-0.804121077060699,0.622481822967529,0.0437309890985489,-0.781411468982697,0.211696833372116,0.0834834352135658,-0.973763346672058,-0.213777810335159,-0.0786478295922279,-0.97371119260788,
  548. -0.213777810335159,-0.0786478295922279,-0.97371119260788,-0.248836115002632,-0.0911268815398216,-0.964249193668365,-0.507130265235901,0.232475697994232,-0.829924046993256,-0.582790732383728,-0.117235772311687,-0.804121077060699,0.999082267284393,-0.00268071354366839,0.0427483879029751,0.999641299247742,-0.00739502720534801,0.0257429629564285,0.999924123287201,-0.00896584987640381,0.00844368431717157,0.999091148376465,-0.00268077570945024,0.0425417236983776,0.999923646450043,-7.72005932958564e-006,0.012358414940536,0.999876916408539,-4.39706673205365e-006,0.0156883895397186,0.99999213218689,-1.47923856275156e-007,-0.00396092375740409,0.999999642372131,1.34567153509124e-005,0.000858985353261232,0.999987304210663,0.00234093726612628,-0.00445247115567327,0.9999098777771,-0.0084023829549551,-0.010481053031981,0.999914169311523,-0.008149110712111,-0.0102658728137612,0.999969303607941,0.00190037372522056,-0.00759798381477594,0.999993979930878,6.7492203470465e-007,-0.0034531697165221,0.999888360500336,-3.1213394322549e-006,0.0149445189163089,0.999918162822723,-1.12019470179803e-005,0.0127904610708356,0.999999940395355,9.04270473256474e-006,0.000312893011141568,-0.201023608446121,-0.978032290935516,-0.0551580600440502,-0.199492573738098,-0.979530870914459,0.0268673952668905,0.195115759968758,-0.980364680290222,-0.0285458248108625,0.204152196645737,-0.977486491203308,0.0533108823001385,0.255852043628693,-0.960058271884918,-0.113260321319103,-0.248947039246559,-0.967235624790192,0.0498074628412724,-0.211241692304611,-0.972432017326355,0.098757229745388,0.201932102441788,-0.973931014537811,-0.103353038430214,0.201932102441788,-0.973931014537811,-0.103353038430214,0.597931623458862,-0.784971952438354,-0.162163004279137,0.500304579734802,-0.818877100944519,0.281310796737671,0.255852043628693,-0.960058271884918,-0.113260321319103,-0.675377130508423,-0.733893632888794,0.0725648030638695,0.597931623458862,-0.784971952438354,-0.162163004279137,0.201932102441788,-0.973931014537811,-0.103353038430214,-0.211241692304611,-0.972432017326355,0.098757229745388,
  549. -0.569306254386902,-0.790030002593994,-0.227470546960831,-0.675377130508423,-0.733893632888794,0.0725648030638695,-0.211241692304611,-0.972432017326355,0.098757229745388,-0.248947039246559,-0.967235624790192,0.0498074628412724,0.500304579734802,-0.818877100944519,0.281310796737671,-0.569306254386902,-0.790030002593994,-0.227470546960831,-0.248947039246559,-0.967235624790192,0.0498074628412724,0.255852043628693,-0.960058271884918,-0.113260321319103,0.999991953372955,0.00401499448344111,0.00013083934027236,0.999989867210388,0.00450177863240242,2.89717190753436e-005,0.999986052513123,0.00428619561716914,-0.00309052993543446,0.999990344047546,0.00315145147033036,-0.00309058628045022,0.99903815984726,-0.00159102573525161,0.0438226237893105,0.998805701732636,-0.00152165303006768,0.0488359816372395,0.998507678508759,0.0030720648355782,0.0545268580317497,0.998461663722992,0.0030648319516331,0.0553616061806679,0.999986052513123,-0.00526455976068974,4.38510568301353e-007,0.999972999095917,-0.00735215237364173,0.000166678422829136,0.999976813793182,-0.00608094688504934,-0.00309336604550481,0.999986231327057,-0.00423665065318346,-0.00309329340234399,0.999994099140167,-0.00340282241813838,0.000509564764797688,0.999978005886078,-0.00566090829670429,0.00348011357709765,0.99997466802597,-0.00566669460386038,0.0042935092933476,0.999993801116943,-0.00338964886032045,-0.00104079989250749,0.999977171421051,-0.00592431053519249,0.00323170959018171,0.999974548816681,-0.00675617903470993,0.00225047930143774,0.999972999095917,-0.00735215237364173,0.000166678422829136,0.999986052513123,-0.00526455976068974,4.38510568301353e-007,0.999246537685394,0.00021535721316468,0.0388101600110531,0.999287128448486,-0.000487007113406435,0.0377495661377907,0.998805701732636,-0.00152165303006768,0.0488359816372395,0.99903815984726,-0.00159102573525161,0.0438226237893105,0.999992251396179,0.00321235368028283,0.00227984716184437,0.99998414516449,0.00462939869612455,0.0031941079068929,0.999989867210388,0.00450177863240242,2.89717190753436e-005,0.999991953372955,0.00401499448344111,0.00013083934027236,
  550. 0.999978005886078,-0.00566090829670429,0.00348011357709765,0.999828457832336,-0.000379652919946238,0.0185199994593859,0.999632656574249,0.000111686029413249,0.0271053202450275,0.99997466802597,-0.00566669460386038,0.0042935092933476,0.173292458057404,-0.982888042926788,0.0624566003680229,0.542814075946808,-0.818704307079315,-0.187286525964737,-0.349034368991852,-0.911572992801666,0.217277616262436,-0.0596295744180679,-0.996439695358276,-0.0595998615026474,0.145668998360634,-0.986461341381073,0.0753296166658401,0.702975153923035,-0.709658801555634,0.047014944255352,0.542814075946808,-0.818704307079315,-0.187286525964737,0.173292458057404,-0.982888042926788,0.0624566003680229,-0.577423870563507,-0.808789551258087,-0.111540101468563,0.702975153923035,-0.709658801555634,0.047014944255352,0.145668998360634,-0.986461341381073,0.0753296166658401,-0.0410704277455807,-0.990687966346741,-0.129809647798538,-0.0596295744180679,-0.996439695358276,-0.0595998615026474,-0.349034368991852,-0.911572992801666,0.217277616262436,-0.577423870563507,-0.808789551258087,-0.111540101468563,-0.0410704277455807,-0.990687966346741,-0.129809647798538,0.509464025497437,-0.832273602485657,0.218557104468346,0.673371553421021,-0.739261209964752,0.00797154195606709,0.204152196645737,-0.977486491203308,0.0533108823001385,0.195115759968758,-0.980364680290222,-0.0285458248108625,-0.573885142803192,-0.807498097419739,-0.136391744017601,0.509464025497437,-0.832273602485657,0.218557104468346,0.195115759968758,-0.980364680290222,-0.0285458248108625,-0.199492573738098,-0.979530870914459,0.0268673952668905,-0.201023608446121,-0.978032290935516,-0.0551580600440502,-0.614166438579559,-0.783302783966064,0.096106119453907,-0.573885142803192,-0.807498097419739,-0.136391744017601,-0.199492573738098,-0.979530870914459,0.0268673952668905,0.673371553421021,-0.739261209964752,0.00797154195606709,-0.614166438579559,-0.783302783966064,0.096106119453907,-0.201023608446121,-0.978032290935516,-0.0551580600440502,0.204152196645737,-0.977486491203308,0.0533108823001385,0.999287128448486,-0.000487007113406435,0.0377495661377907,
  551. 0.999246537685394,0.00021535721316468,0.0388101600110531,0.999206840991974,0.00821856874972582,0.0389630757272244,0.999224662780762,0.00821859017014503,0.0385041274130344,0.99998414516449,0.00462939869612455,0.0031941079068929,0.999992251396179,0.00321235368028283,0.00227984716184437,0.999995648860931,0.00294980476610363,-2.70755116105192e-008,0.999994218349457,0.00340426969341934,-2.70754725306688e-008,0.999195098876953,0.00856647547334433,0.0391908511519432,0.99923050403595,0.00856659654527903,0.0382758490741253,0.999632656574249,0.000111686029413249,0.0271053202450275,0.999828457832336,-0.000379652919946238,0.0185199994593859,0.999974548816681,-0.00675617903470993,0.00225047930143774,0.999977171421051,-0.00592431053519249,0.00323170959018171,0.99998813867569,-0.00488597899675369,2.0145654033854e-008,0.999981224536896,-0.00612865760922432,2.01455154780206e-008,0.99999213218689,-1.47923856275156e-007,-0.00396092375740409,0.999879121780396,3.20329661462893e-007,-0.0155493030324578,0.999879121780396,-2.67089262706577e-007,-0.0155493021011353,0.999999642372131,1.34567153509124e-005,0.000858985353261232,0.999966263771057,0.00543220480903983,-0.0061637251637876,0.999966502189636,0.00543221086263657,-0.00612199353054166,0.999966859817505,0.0054322169162333,-0.00608026282861829,0.999966502189636,0.00543221086263657,-0.00612199353054166,0.999877750873566,9.47038643062115e-007,-0.0156418103724718,0.999877750873566,1.37114761855628e-006,-0.015641812235117,0.999993979930878,6.7492203470465e-007,-0.0034531697165221,0.999999940395355,9.04270473256474e-006,0.000312893011141568,0.999969303607941,0.00190037372522056,-0.00759798381477594,0.999984860420227,0.00532708317041397,-0.00137889850884676,0.999984979629517,0.00532708829268813,-0.00136142282281071,0.999987304210663,0.00234093726612628,-0.00445247115567327,-0.99982351064682,-0.0164230484515429,0.00912485551089048,-0.99976909160614,-0.010583458468318,-0.0186994168907404,-0.998863816261292,-0.00896180886775255,-0.0468057990074158,-0.999829053878784,-0.0164216123521328,0.00850104913115501,
  552. -0.999983072280884,4.32605190781032e-007,-0.00582333747297525,-0.999555468559265,3.31838032252563e-006,-0.0298169516026974,-0.999790489673615,-1.67906364367809e-005,-0.020475372672081,-0.999983072280884,9.72432872003992e-007,-0.00582333793863654,-0.999764204025269,-2.38466000155313e-005,-0.0217139385640621,-0.999614715576172,7.63034768169746e-006,-0.0277576297521591,-0.999983131885529,-6.0855786614411e-006,-0.00580836180597544,-0.999983131885529,-5.56333725398872e-006,-0.00580836180597544,-0.134309038519859,-0.988151907920837,0.0742763504385948,0.126479759812355,-0.991059482097626,-0.0424723066389561,0.110001936554909,-0.99123352766037,-0.0731821358203888,-0.113695107400417,-0.990675270557404,0.0750728771090508,0.162331402301788,-0.986383378505707,0.0263856146484613,0.113750532269478,-0.968750417232513,0.22041654586792,-0.238635912537575,-0.971029937267303,-0.012395991012454,-0.271506935358047,-0.962102591991425,-0.0253486037254334,-0.999788880348206,-0.0174859240651131,0.0107913548126817,-0.99979442358017,-0.017485598102212,0.0102623766288161,-0.999947965145111,-0.00976479705423117,0.00294624385423958,-0.999926447868347,-0.010112002491951,0.00669396808370948,0.110001936554909,-0.99123352766037,-0.0731821358203888,0.126479759812355,-0.991059482097626,-0.0424723066389561,0.494333207607269,-0.855369329452515,0.154848471283913,0.588573932647705,-0.807873547077179,-0.0303473956882954,0.494333207607269,-0.855369329452515,0.154848471283913,0.126479759812355,-0.991059482097626,-0.0424723066389561,-0.134309038519859,-0.988151907920837,0.0742763504385948,-0.473109930753708,-0.855341017246246,-0.211089387536049,-0.561082303524017,-0.820603847503662,0.108609780669212,-0.473109930753708,-0.855341017246246,-0.211089387536049,-0.134309038519859,-0.988151907920837,0.0742763504385948,-0.113695107400417,-0.990675270557404,0.0750728771090508,-0.113695107400417,-0.990675270557404,0.0750728771090508,0.110001936554909,-0.99123352766037,-0.0731821358203888,0.588573932647705,-0.807873547077179,-0.0303473956882954,-0.561082303524017,-0.820603847503662,0.108609780669212,
  553. -0.997167646884918,-0.00369260902516544,-0.0751200765371323,-0.998863816261292,-0.00896180886775255,-0.0468057990074158,-0.99976909160614,-0.010583458468318,-0.0186994168907404,-0.997244596481323,-0.00369315617717803,-0.0740921795368195,-0.999790489673615,-1.67906364367809e-005,-0.020475372672081,-0.999555468559265,3.31838032252563e-006,-0.0298169516026974,-0.999987125396729,8.94854110811139e-006,0.0050733545795083,-0.99999737739563,6.49114736006595e-005,-0.0022721120622009,-0.999991357326508,0.00229330686852336,0.0034987183753401,-0.999926447868347,-0.010112002491951,0.00669396808370948,-0.999947965145111,-0.00976479705423117,0.00294624385423958,-0.9999920129776,0.00194491527508944,0.0034966254606843,-0.999990582466125,6.10412598689436e-006,0.00434855557978153,-0.999614715576172,7.63034768169746e-006,-0.0277576297521591,-0.999764204025269,-2.38466000155313e-005,-0.0217139385640621,-0.999999046325684,3.97419062210247e-005,-0.0013880911283195,0.16698132455349,-0.9815673828125,-0.0929659008979797,0.209882870316505,-0.974766373634338,-0.0760244429111481,-0.205199047923088,-0.975786983966827,0.0757180377840996,-0.17121684551239,-0.981006026268005,0.0911705419421196,-0.242361307144165,-0.968629062175751,0.0549424774944782,0.24061881005764,-0.970497846603394,-0.0153795257210732,0.248998537659645,-0.967229664325714,0.0496644824743271,-0.241596207022667,-0.969015836715698,-0.0513761639595032,-0.241596207022667,-0.969015836715698,-0.0513761639595032,-0.634707093238831,-0.765007197856903,0.109136208891869,-0.528434097766876,-0.811757564544678,-0.248610302805901,-0.242361307144165,-0.968629062175751,0.0549424774944782,0.713000595569611,-0.701153635978699,-0.00370094366371632,-0.634707093238831,-0.765007197856903,0.109136208891869,-0.241596207022667,-0.969015836715698,-0.0513761639595032,0.248998537659645,-0.967229664325714,0.0496644824743271,0.613180875778198,-0.771936178207397,0.167701691389084,0.713000595569611,-0.701153635978699,-0.00370094366371632,0.248998537659645,-0.967229664325714,0.0496644824743271,0.24061881005764,-0.970497846603394,-0.0153795257210732,
  554. -0.528434097766876,-0.811757564544678,-0.248610302805901,0.613180875778198,-0.771936178207397,0.167701691389084,0.24061881005764,-0.970497846603394,-0.0153795257210732,-0.242361307144165,-0.968629062175751,0.0549424774944782,-0.999978125095367,0.00660677719861269,0.000149737767060287,-0.999957203865051,0.00923127867281437,0.000556954124476761,-0.99989116191864,0.00436606677249074,0.0140946563333273,-0.999882459640503,0.0060470481403172,0.0140942484140396,-0.998948574066162,0.00264963367953897,-0.0457681491971016,-0.998673021793365,0.0026296079158783,-0.0514315813779831,-0.998352646827698,0.00286142621189356,-0.0573042370378971,-0.998292922973633,0.00285247387364507,-0.0583374463021755,-0.999998807907104,-0.00139882531948388,0.000659703451674432,-0.99999338388443,-0.00364966318011284,2.88852570520248e-005,-0.999884128570557,-0.00571346003562212,0.014110341668129,-0.999881327152252,-0.00619909167289734,0.0141104208305478,-0.999953508377075,0.000671634916216135,0.00962152611464262,-0.999983251094818,-0.00567675102502108,0.00101375323720276,-0.999962627887726,-0.0057203620672226,-0.00647499365732074,-0.999933242797852,0.000687915307935327,0.0115399863570929,-0.999934256076813,-0.00618882570415735,-0.00965379737317562,-0.999919295310974,-0.0106353797018528,-0.00696030771359801,-0.99999338388443,-0.00364966318011284,2.88852570520248e-005,-0.999998807907104,-0.00139882531948388,0.000659703451674432,-0.999234914779663,0.000352352595655248,-0.0391083806753159,-0.999252438545227,0.000498659501317889,-0.0386577844619751,-0.998673021793365,0.0026296079158783,-0.0514315813779831,-0.998948574066162,0.00264963367953897,-0.0457681491971016,-0.999972879886627,-0.00214004213921726,-0.00704526389017701,-0.99995219707489,0.0020695710554719,-0.00955601502209902,-0.999957203865051,0.00923127867281437,0.000556954124476761,-0.999978125095367,0.00660677719861269,0.000149737767060287,-0.999983251094818,-0.00567675102502108,0.00101375323720276,-0.999699056148529,-0.003165750997141,-0.024323919788003,-0.999534428119659,-0.00266620703041554,-0.0303945429623127,
  555. -0.999962627887726,-0.0057203620672226,-0.00647499365732074,-0.271506935358047,-0.962102591991425,-0.0253486037254334,-0.580379545688629,-0.774655878543854,0.251133322715759,0.336854368448257,-0.872192025184631,-0.354697287082672,0.162331402301788,-0.986383378505707,0.0263856146484613,-0.238635912537575,-0.971029937267303,-0.012395991012454,-0.78906261920929,-0.614005327224731,-0.0194356590509415,-0.580379545688629,-0.774655878543854,0.251133322715759,-0.271506935358047,-0.962102591991425,-0.0253486037254334,0.608732283115387,-0.760885953903198,0.224716648459435,-0.78906261920929,-0.614005327224731,-0.0194356590509415,-0.238635912537575,-0.971029937267303,-0.012395991012454,0.113750532269478,-0.968750417232513,0.22041654586792,0.162331402301788,-0.986383378505707,0.0263856146484613,0.336854368448257,-0.872192025184631,-0.354697287082672,0.608732283115387,-0.760885953903198,0.224716648459435,0.113750532269478,-0.968750417232513,0.22041654586792,-0.480587273836136,-0.839223444461823,-0.254440456628799,-0.63747763633728,-0.768369317054749,0.0568426921963692,-0.17121684551239,-0.981006026268005,0.0911705419421196,-0.205199047923088,-0.975786983966827,0.0757180377840996,0.536256909370422,-0.822396099567413,0.189982011914253,-0.480587273836136,-0.839223444461823,-0.254440456628799,-0.205199047923088,-0.975786983966827,0.0757180377840996,0.209882870316505,-0.974766373634338,-0.0760244429111481,0.16698132455349,-0.9815673828125,-0.0929659008979797,0.579869627952576,-0.801283538341522,-0.147295668721199,0.536256909370422,-0.822396099567413,0.189982011914253,0.209882870316505,-0.974766373634338,-0.0760244429111481,-0.63747763633728,-0.768369317054749,0.0568426921963692,0.579869627952576,-0.801283538341522,-0.147295668721199,0.16698132455349,-0.9815673828125,-0.0929659008979797,-0.17121684551239,-0.981006026268005,0.0911705419421196,-0.999252438545227,0.000498659501317889,-0.0386577844619751,-0.999234914779663,0.000352352595655248,-0.0391083806753159,-0.999239027500153,-0.0017584313172847,-0.0389649271965027,-0.99925684928894,-0.00175843574106693,-0.0385054238140583,
  556. -0.99995219707489,0.0020695710554719,-0.00955601502209902,-0.999972879886627,-0.00214004213921726,-0.00704526389017701,-0.999995648860931,0.00294959126040339,-1.74572767352998e-009,-0.999998927116394,-0.00147244380787015,-1.7457331136228e-009,-0.999195039272308,0.00856647547334433,-0.039191372692585,-0.999230563640594,0.0085665974766016,-0.0382762961089611,-0.999534428119659,-0.00266620703041554,-0.0303945429623127,-0.999699056148529,-0.003165750997141,-0.024323919788003,-0.999919295310974,-0.0106353797018528,-0.00696030771359801,-0.999934256076813,-0.00618882570415735,-0.00965379737317562,-0.999954998493195,-0.00949412398040295,2.42446880349689e-008,-0.999981224536896,-0.00612838659435511,2.42453257470743e-008,-0.999987125396729,8.94854110811139e-006,0.0050733545795083,-0.999810814857483,2.57513931956055e-007,0.0194511171430349,-0.999810814857483,-3.54409735336958e-007,0.0194511152803898,-0.99999737739563,6.49114736006595e-005,-0.0022721120622009,-0.999922454357147,0.00458231847733259,0.0115878842771053,-0.999922871589661,0.00458232406526804,0.0115453545004129,-0.999923348426819,0.00458233011886477,0.0115028265863657,-0.999922871589661,0.00458232359960675,0.0115453545004129,-0.99980890750885,9.18718910725147e-007,0.0195491388440132,-0.99980890750885,1.1997447018075e-006,0.0195491407066584,-0.999990582466125,6.10412598689436e-006,0.00434855557978153,-0.999999046325684,3.97419062210247e-005,-0.0013880911283195,-0.9999920129776,0.00194491527508944,0.0034966254606843,-0.999962210655212,0.00450740056112409,0.00744380010291934,-0.999962210655212,0.00450739916414022,0.00744715239852667,-0.999991357326508,0.00229330686852336,0.0034987183753401,0.650488555431366,-0.73664003610611,0.185003206133842,-0.00305199576541781,-0.977725923061371,0.209863603115082,-0.000205507181817666,-0.996312320232391,-0.0858011171221733,0.245910912752151,-0.826640009880066,-0.506156265735626,-0.381794035434723,-0.840576410293579,-0.384271919727325,-0.000967474305070937,-0.99982100725174,0.0188975427299738,0.00682970136404037,-0.976219594478607,0.216676577925682,
  557. -0.494806528091431,-0.791502952575684,0.358733236789703,-0.876573383808136,0,-0.481268376111984,-0.897585391998291,0,-0.440840542316437,-0.999990046024323,0,0.0044521545059979,-0.899576604366302,0,0.43676295876503,-0.999997854232788,0,0.00203354889526963,-0.778317332267761,0,0.627871155738831,-0.876573383808136,0,-0.481268376111984,-0.766985654830933,0,-0.641664266586304,-0.897585391998291,0,-0.440840542316437,-0.766985654830933,0,-0.641664266586304,-0.999997854232788,0,0.00203354889526963,-0.897585391998291,0,-0.440840542316437,-0.899576604366302,0,0.43676295876503,-0.778317332267761,0,0.627871155738831,-0.882131993770599,0,0.47100231051445,-0.999990046024323,0,0.0044521545059979,-0.899576604366302,0,0.43676295876503,-0.882131993770599,0,0.47100231051445,-0.897585391998291,0,-0.440840542316437,-0.999997854232788,0,0.00203354889526963,-0.999990046024323,0,0.0044521545059979,-0.999990046024323,0,0.0044521545059979,-0.999997854232788,0,0.00203354889526963,-0.899576604366302,0,0.43676295876503,0.876560389995575,-1.06662503185362e-006,0.481292009353638,0.999897181987762,-3.05619742846375e-008,0.0143350511789322,0.897582530975342,-1.86031186899527e-007,0.440846413373947,0.912112295627594,1.68774974440566e-007,-0.409940361976624,0.791439831256866,0,-0.61124724149704,0.999997913837433,0,-0.00205739610828459,0.876560389995575,-1.06662503185362e-006,0.481292009353638,0.897582530975342,-1.86031186899527e-007,0.440846413373947,0.766957521438599,0,0.641697943210602,0.766957521438599,0,0.641697943210602,0.897582530975342,-1.86031186899527e-007,0.440846413373947,0.999997913837433,0,-0.00205739610828459,0.912112295627594,1.68774974440566e-007,-0.409940361976624,0.908391237258911,8.44594637783302e-007,-0.418121099472046,0.791439831256866,0,-0.61124724149704,0.999897181987762,-3.05619742846375e-008,0.0143350511789322,0.908391237258911,8.44594637783302e-007,-0.418121099472046,0.912112295627594,1.68774974440566e-007,-0.409940361976624,0.897582530975342,-1.86031186899527e-007,0.440846413373947,0.999897181987762,-3.05619742846375e-008,0.0143350511789322,
  558. 0.999997913837433,0,-0.00205739610828459,0.999897181987762,-3.05619742846375e-008,0.0143350511789322,0.912112295627594,1.68774974440566e-007,-0.409940361976624,0.999997913837433,0,-0.00205739610828459,0.0518823303282261,-0.998617112636566,0.00848605576902628,-0.0135452346876264,-0.999908030033112,0.00078162649879232,-0.0135400788858533,-0.999908328056335,-0.000169085542438552,-0.123768977820873,-0.992306709289551,0.00291816308163106,0.106936864554882,-0.99426531791687,-0.000942654034588486,-0.00754336873069406,-0.999934732913971,0.00858109351247549,-0.0131503138691187,-0.999873757362366,0.00891607813537121,0.26485013961792,-0.964194178581238,0.0135642671957612,-0.00861900486052036,-0.99994021654129,-0.0067305751144886,-0.00704036792740226,-0.999961912631989,0.0051469299942255,-0.00791314989328384,-0.999966144561768,0.00223268126137555,-0.00205546244978905,-0.992784976959229,-0.11989089101553,-0.00260773906484246,-0.999831438064575,0.0181740261614323,-0.0165807418525219,-0.999862492084503,-0.000340219907229766,-0.0129240360110998,-0.999910593032837,0.0034254991915077,-0.0113360537216067,-0.964031219482422,0.26554748415947,0.328333407640457,-0.86736673116684,0.373994797468185,0.0518823303282261,-0.998617112636566,0.00848605576902628,-0.123768977820873,-0.992306709289551,0.00291816308163106,-0.52162903547287,-0.838379323482513,0.158187612891197,-0.0406882353127003,-0.920568227767944,0.388456761837006,-0.123126335442066,-0.992391049861908,6.97004652465694e-005,-0.501707434654236,-0.828177273273468,-0.249824076890945,-0.000157901318743825,-0.904190719127655,-0.427128940820694,0.358858019113541,-0.842106938362122,-0.402587711811066,0.0711287409067154,-0.997463464736938,-0.0026885368861258,-0.350532948970795,-0.867562711238861,0.352791100740433,-0.00861900486052036,-0.99994021654129,-0.0067305751144886,-0.00205546244978905,-0.992784976959229,-0.11989089101553,-0.533146679401398,-0.833832025527954,-0.143104076385498,0.349861055612564,-0.867735326290131,-0.353033453226089,-0.00260773906484246,-0.999831438064575,0.0181740261614323,
  559. -0.0113360537216067,-0.964031219482422,0.26554748415947,0.367061525583267,-0.86759227514267,0.335483908653259,-0.305795103311539,-0.865713119506836,-0.396270334720612,0.106936864554882,-0.99426531791687,-0.000942654034588486,0.26485013961792,-0.964194178581238,0.0135642671957612,0.532404541969299,-0.834252774715424,-0.143414288759232,0.315852880477905,-0.874074101448059,-0.369095176458359,0.160396367311478,-0.987035036087036,-0.00589181203395128,0.56128317117691,-0.767484307289124,0.309724092483521,0.0462088547646999,-0.829907476902008,0.555984079837799,-0.408987790346146,-0.793392598628998,0.450840562582016,-0.025121733546257,-0.999679267406464,-0.00317837973125279,0.0518823303282261,-0.998617112636566,0.00848605576902628,-0.00276775052770972,-0.999947845935822,0.00983958784490824,-0.0125416666269302,-0.999898076057434,-0.00681787636131048,-0.0135452346876264,-0.999908030033112,0.00078162649879232,-0.00860376469790936,-0.999962508678436,0.00107562844641507,-0.123768977820873,-0.992306709289551,0.00291816308163106,-0.0135400788858533,-0.999908328056335,-0.000169085542438552,-0.00710097048431635,-0.999968528747559,-0.00354251405224204,-0.00344216474331915,-0.999991953372955,-0.00206753797829151,0.26485013961792,-0.964194178581238,0.0135642671957612,-0.0131503138691187,-0.999873757362366,0.00891607813537121,-0.0163174960762262,-0.999843835830688,0.00678572012111545,0.106936864554882,-0.99426531791687,-0.000942654034588486,-0.0087469108402729,-0.999797165393829,0.0181412231177092,-0.0078666266053915,-0.99996817111969,0.0012944508343935,-0.00754336873069406,-0.999934732913971,0.00858109351247549,0.367061525583267,-0.86759227514267,0.335483908653259,-0.0113360537216067,-0.964031219482422,0.26554748415947,-0.258788555860519,-0.965871155261993,0.0110175395384431,-0.501707434654236,-0.828177273273468,-0.249824076890945,-0.123126335442066,-0.992391049861908,6.97004652465694e-005,-0.00455274665728211,-0.991996645927429,0.126182198524475,-0.52162903547287,-0.838379323482513,0.158187612891197,-0.123768977820873,-0.992306709289551,0.00291816308163106,
  560. -0.0087666567414999,-0.941259980201721,-0.337569236755371,0.245910912752151,-0.826640009880066,-0.506156265735626,-0.000205507181817666,-0.996312320232391,-0.0858011171221733,-0.0709774941205978,-0.997439801692963,-0.00872084498405457,0.0113416789099574,-0.936090111732483,0.351577490568161,0.532404541969299,-0.834252774715424,-0.143414288759232,0.26485013961792,-0.964194178581238,0.0135642671957612,-0.494806528091431,-0.791502952575684,0.358733236789703,0.00682970136404037,-0.976219594478607,0.216676577925682,0.0813254117965698,-0.996681094169617,0.00360332382842898,0.347145110368729,-0.937627196311951,-0.0185881406068802,0.0844297483563423,-0.730970501899719,-0.677166044712067,0.0151981366798282,-0.88704115152359,-0.461440175771713,0.56128317117691,-0.767484307289124,0.309724092483521,0.160396367311478,-0.987035036087036,-0.00589181203395128,0.00523230899125338,-0.992469310760498,-0.122381918132305,0.000256853352766484,-0.999991714954376,-0.00408570468425751,-0.0019606570713222,-0.999989569187164,-0.00414713937789202,-0.00791314989328384,-0.999966144561768,0.00223268126137555,-0.00704036792740226,-0.999961912631989,0.0051469299942255,-0.00204868242144585,-0.999995410442352,-0.00223591993562877,-0.0116680599749088,-0.999930202960968,-0.00182008417323232,-0.00754336873069406,-0.999934732913971,0.00858109351247549,-0.0078666266053915,-0.99996817111969,0.0012944508343935,-0.0116680599749088,-0.999930202960968,-0.00182008417323232,-0.00188108277507126,-0.999992370605469,-0.00343155697919428,-0.0131503138691187,-0.999873757362366,0.00891607813537121,-0.00754336873069406,-0.999934732913971,0.00858109351247549,-0.00188108277507126,-0.999992370605469,-0.00343155697919428,-0.00693746330216527,-0.999955594539642,0.00638766586780548,-0.0163174960762262,-0.999843835830688,0.00678572012111545,-0.0131503138691187,-0.999873757362366,0.00891607813537121,-0.00726586673408747,-0.999963164329529,-0.00458992412313819,-0.00438041286543012,-0.99996018409729,-0.00777608435600996,-0.0129240360110998,-0.999910593032837,0.0034254991915077,
  561. -0.0165807418525219,-0.999862492084503,-0.000340219907229766,-0.00444950023666024,-0.999971628189087,-0.00607070047408342,-0.00626553315669298,-0.999970376491547,-0.00448472425341606,-0.0135452346876264,-0.999908030033112,0.00078162649879232,-0.0125416666269302,-0.999898076057434,-0.00681787636131048,-0.00626553315669298,-0.999970376491547,-0.00448472425341606,0.0015302246902138,-0.999987304210663,-0.00479123182594776,-0.0135400788858533,-0.999908328056335,-0.000169085542438552,-0.0135452346876264,-0.999908030033112,0.00078162649879232,-0.0135400788858533,-0.999908328056335,-0.000169085542438552,0.0015302246902138,-0.999987304210663,-0.00479123182594776,0.000271867582341656,-0.999993443489075,-0.00362607161514461,-0.00710097048431635,-0.999968528747559,-0.00354251405224204,0.160396367311478,-0.987035036087036,-0.00589181203395128,-0.025121733546257,-0.999679267406464,-0.00317837973125279,0.00861531868577003,-0.999910533428192,-0.0102338586002588,0.00324872089549899,-0.999938189983368,-0.0106299882754683,-0.025121733546257,-0.999679267406464,-0.00317837973125279,-0.000827662413939834,-0.99995744228363,-0.00920096319168806,0.00888787675648928,-0.999926865100861,-0.00819600652903318,0.00861531868577003,-0.999910533428192,-0.0102338586002588,0.00682970136404037,-0.976219594478607,0.216676577925682,-0.000967474305070937,-0.99982100725174,0.0188975427299738,0.00908684264868498,-0.999957203865051,-0.00174732797313482,0.00889365375041962,-0.999928295612335,-0.00801251921802759,-0.000172679443494417,-0.99998813867569,-0.00487106805667281,-0.123126335442066,-0.992391049861908,6.97004652465694e-005,0.00692220265045762,-0.999975144863129,-0.00137358449865133,0.00902930647134781,-0.999959230422974,-0.00015290520968847,-0.123126335442066,-0.992391049861908,6.97004652465694e-005,0.0711287409067154,-0.997463464736938,-0.0026885368861258,0.00466985255479813,-0.999987721443176,-0.00164288945961744,0.00692220265045762,-0.999975144863129,-0.00137358449865133,0.00259798066690564,-0.999995291233063,0.00158544490113854,0.00466985255479813,-0.999987721443176,-0.00164288945961744,
  562. 0.0711287409067154,-0.997463464736938,-0.0026885368861258,0.00358116230927408,-0.999983310699463,0.00453456118702888,-0.000205507181817666,-0.996312320232391,-0.0858011171221733,-0.00305199576541781,-0.977725923061371,0.209863603115082,0.00197421060875058,-0.999974012374878,-0.00693476712331176,0.00256193382665515,-0.999996483325958,0.000747571000829339,0.00285055488348007,-0.999661922454834,-0.0258438494056463,0.160396367311478,-0.987035036087036,-0.00589181203395128,0.00324872089549899,-0.999938189983368,-0.0106299882754683,0.00236246618442237,-0.999815285205841,-0.0190700776875019,0.00889365375041962,-0.999928295612335,-0.00801251921802759,0.00908684264868498,-0.999957203865051,-0.00174732797313482,-0.00438041286543012,-0.99996018409729,-0.00777608435600996,-0.00726586673408747,-0.999963164329529,-0.00458992412313819,0.00861531868577003,-0.999910533428192,-0.0102338586002588,0.00888787675648928,-0.999926865100861,-0.00819600652903318,-0.00693746330216527,-0.999955594539642,0.00638766586780548,-0.00188108277507126,-0.999992370605469,-0.00343155697919428,0.00324872089549899,-0.999938189983368,-0.0106299882754683,0.00861531868577003,-0.999910533428192,-0.0102338586002588,-0.00188108277507126,-0.999992370605469,-0.00343155697919428,-0.0116680599749088,-0.999930202960968,-0.00182008417323232,0.00236246618442237,-0.999815285205841,-0.0190700776875019,0.00324872089549899,-0.999938189983368,-0.0106299882754683,-0.0116680599749088,-0.999930202960968,-0.00182008417323232,-0.00204868242144585,-0.999995410442352,-0.00223591993562877,0.00256193382665515,-0.999996483325958,0.000747571000829339,0.00197421060875058,-0.999974012374878,-0.00693476712331176,-0.0019606570713222,-0.999989569187164,-0.00414713937789202,0.000256853352766484,-0.999991714954376,-0.00408570468425751,0.000271867582341656,-0.999993443489075,-0.00362607161514461,0.0015302246902138,-0.999987304210663,-0.00479123182594776,0.00466985255479813,-0.999987721443176,-0.00164288945961744,0.00259798066690564,-0.999995291233063,0.00158544490113854,0.00692220265045762,-0.999975144863129,-0.00137358449865133,
  563. 0.00466985255479813,-0.999987721443176,-0.00164288945961744,0.0015302246902138,-0.999987304210663,-0.00479123182594776,-0.00626553315669298,-0.999970376491547,-0.00448472425341606,0.00902930647134781,-0.999959230422974,-0.00015290520968847,0.00692220265045762,-0.999975144863129,-0.00137358449865133,-0.00626553315669298,-0.999970376491547,-0.00448472425341606,-0.00444950023666024,-0.999971628189087,-0.00607070047408342,0.184827208518982,0.736543834209442,0.650647342205048,0.15039224922657,0.988626301288605,-0.000610361050348729,-0.0964986532926559,0.995333015918732,-0.000565356109291315,-0.5062455534935,0.826608419418335,0.245833203196526,-0.384377807378769,0.840578973293304,-0.381681352853775,0.0260635130107403,0.999659955501556,-0.000817667576484382,0.225156605243683,0.974301397800446,0.00642317626625299,0.358713716268539,0.79155832529068,-0.494732230901718,-0.481245517730713,1.36041671794374e-006,-0.876585900783539,-0.440839201211929,3.27101083996695e-008,-0.897586047649384,0.00442989263683558,-5.36303224052403e-009,-0.999990165233612,0.436771988868713,4.29429131143522e-010,-0.899572193622589,0.00202130549587309,-3.06650740355963e-008,-0.999998033046722,0.627882957458496,-1.19115770758071e-006,-0.778307795524597,-0.481245517730713,1.36041671794374e-006,-0.876585900783539,-0.641624212265015,1.18926539016684e-006,-0.767019093036652,-0.440839201211929,3.27101083996695e-008,-0.897586047649384,-0.641624212265015,1.18926539016684e-006,-0.767019093036652,0.00202130549587309,-3.06650740355963e-008,-0.999998033046722,-0.440839201211929,3.27101083996695e-008,-0.897586047649384,0.436771988868713,4.29429131143522e-010,-0.899572193622589,0.627882957458496,-1.19115770758071e-006,-0.778307795524597,0.47101679444313,-1.43381305406365e-006,-0.882124185562134,0.00442989263683558,-5.36303224052403e-009,-0.999990165233612,0.436771988868713,4.29429131143522e-010,-0.899572193622589,0.47101679444313,-1.43381305406365e-006,-0.882124185562134,-0.440839201211929,3.27101083996695e-008,-0.897586047649384,0.00202130549587309,-3.06650740355963e-008,-0.999998033046722,
  564. 0.00442989263683558,-5.36303224052403e-009,-0.999990165233612,0.00442989263683558,-5.36303224052403e-009,-0.999990165233612,0.00202130549587309,-3.06650740355963e-008,-0.999998033046722,0.436771988868713,4.29429131143522e-010,-0.899572193622589,0.481263726949692,0,0.876575887203217,0.0143809001892805,0,0.999896645545959,0.440846830606461,0,0.897582292556763,-0.409907042980194,-1.49711318897516e-008,0.912127375602722,-0.611224949359894,-1.01902486449035e-008,0.791456937789917,-0.00202103029005229,0,0.999998033046722,0.481263726949692,0,0.876575887203217,0.440846830606461,0,0.897582292556763,0.641663193702698,0,0.766986548900604,0.641663193702698,0,0.766986548900604,0.440846830606461,0,0.897582292556763,-0.00202103029005229,0,0.999998033046722,-0.409907042980194,-1.49711318897516e-008,0.912127375602722,-0.418086051940918,-1.1690851842161e-008,0.90840744972229,-0.611224949359894,-1.01902486449035e-008,0.791456937789917,0.0143809001892805,0,0.999896645545959,-0.418086051940918,-1.1690851842161e-008,0.90840744972229,-0.409907042980194,-1.49711318897516e-008,0.912127375602722,0.440846830606461,0,0.897582292556763,0.0143809001892805,0,0.999896645545959,-0.00202103029005229,0,0.999998033046722,0.0143809001892805,0,0.999896645545959,-0.409907042980194,-1.49711318897516e-008,0.912127375602722,-0.00202103029005229,0,0.999998033046722,0.00751658296212554,0.998365223407745,0.0566594898700714,0.0006565484800376,0.999974250793457,-0.00714926468208432,-0.000248753378400579,0.999952614307404,-0.00972945429384708,0.00174115039408207,0.992970883846283,-0.118346013128757,-0.00381495570763946,0.989607036113739,0.143747210502625,0.00805642548948526,0.999964654445648,-0.00242829392664135,0.00818928331136703,0.99989241361618,-0.0121661573648453,0.0117252236232162,0.972770869731903,0.231472074985504,-0.00693154567852616,0.999975919723511,0.000516236119437963,0.00444815307855606,0.999989628791809,-0.000918075151275843,0.00169585167896003,0.99999475479126,-0.00276666763238609,-0.120971262454987,0.992632329463959,0.00686291325837374,0.0174515713006258,0.999829590320587,0.00601668981835246,
  565. -0.00100367923732847,0.999935448169708,-0.0113092940300703,0.00251614372245967,0.999978125095367,-0.0061073093675077,0.26527526974678,0.964168667793274,-0.0027837404049933,0.37418857216835,0.867238163948059,0.328452289104462,0.00751658296212554,0.998365223407745,0.0566594898700714,0.00174115039408207,0.992970883846283,-0.118346013128757,0.15818664431572,0.838372945785522,-0.52163952589035,0.3884496986866,0.920562744140625,-0.0408773198723793,0.0165298469364643,0.988390922546387,-0.15103080868721,-0.249988779425621,0.828233957290649,-0.501531720161438,-0.427124202251434,0.904192984104156,0.000213366278330795,-0.402564495801926,0.842104971408844,0.358888655900955,0.0126542011275887,0.997351169586182,0.0716279596090317,0.352864414453506,0.867558896541595,-0.350468695163727,-0.00693154567852616,0.999975919723511,0.000516236119437963,-0.120971262454987,0.992632329463959,0.00686291325837374,-0.143057614564896,0.833805859088898,-0.533200144767761,-0.353047460317612,0.867603778839111,0.350173056125641,0.0174515713006258,0.999829590320587,0.00601668981835246,0.26527526974678,0.964168667793274,-0.0027837404049933,0.335483223199844,0.867461085319519,0.367372244596481,-0.396264016628265,0.865705966949463,-0.305823534727097,-0.00381495570763946,0.989607036113739,0.143747210502625,0.0117252236232162,0.972770869731903,0.231472074985504,-0.143469959497452,0.834097743034363,0.532632350921631,-0.369115591049194,0.874095559120178,0.315769791603088,0.00994425546377897,0.987107992172241,0.15974648296833,0.309566736221313,0.767441272735596,0.561428725719452,0.555930256843567,0.829921305179596,0.0466061048209667,0.450814485549927,0.793431282043457,-0.408941477537155,0.013175830245018,0.999613702297211,-0.0244716219604015,0.00751658296212554,0.998365223407745,0.0566594898700714,0.00871276576071978,0.999944984912872,0.0058397576212883,-0.0070665399543941,0.999958455562592,-0.00576327461749315,0.0006565484800376,0.999974250793457,-0.00714926468208432,0.000956554373260587,0.999999403953552,0.00053843978093937,0.00174115039408207,0.992970883846283,-0.118346013128757,
  566. -0.000248753378400579,0.999952614307404,-0.00972945429384708,-0.00360095337964594,0.999993026256561,-0.000974897877313197,-0.00187363533768803,0.999984741210938,0.00519701233133674,0.0117252236232162,0.972770869731903,0.231472074985504,0.00818928331136703,0.99989241361618,-0.0121661573648453,0.00666223140433431,0.999917149543762,-0.0110159404575825,-0.00381495570763946,0.989607036113739,0.143747210502625,0.0162136219441891,0.99986857175827,0.000413700996432453,0.000759746297262609,0.999996066093445,-0.00272055738605559,0.00805642548948526,0.999964654445648,-0.00242829392664135,0.335483223199844,0.867461085319519,0.367372244596481,0.26527526974678,0.964168667793274,-0.0027837404049933,0.0100428843870759,0.965879023075104,-0.25879892706871,-0.249988779425621,0.828233957290649,-0.501531720161438,0.0165298469364643,0.988390922546387,-0.15103080868721,0.1261927485466,0.991996645927429,-0.00424595270305872,0.15818664431572,0.838372945785522,-0.52163952589035,0.00174115039408207,0.992970883846283,-0.118346013128757,-0.338934689760208,0.940809905529022,-0.000447587633971125,-0.5062455534935,0.826608419418335,0.245833203196526,-0.0964986532926559,0.995333015918732,-0.000565356109291315,0.00661066034808755,0.997384786605835,-0.0719726979732513,0.350626975297928,0.936305284500122,0.0198273491114378,-0.143469959497452,0.834097743034363,0.532632350921631,0.0117252236232162,0.972770869731903,0.231472074985504,0.358713716268539,0.79155832529068,-0.494732230901718,0.225156605243683,0.974301397800446,0.00642317626625299,0.0198161043226719,0.996587038040161,0.0801349356770515,-0.0188519116491079,0.937584817409515,0.347245365381241,-0.677179574966431,0.730957746505737,0.0844318568706512,-0.459840595722198,0.887711524963379,0.0226909965276718,0.309566736221313,0.767441272735596,0.561428725719452,0.00994425546377897,0.987107992172241,0.15974648296833,-0.122417360544205,0.992460489273071,0.00601044157519937,-0.00408445345237851,0.999991655349731,0.000256401661317796,-0.00414628209546208,0.999989569187164,-0.00196003168821335,0.00169585167896003,0.99999475479126,-0.00276666763238609,
  567. 0.00444815307855606,0.999989628791809,-0.000918075151275843,-0.00224144593812525,0.999995410442352,-0.00204775505699217,-0.00182069686707109,0.999930381774902,-0.0116619188338518,0.00805642548948526,0.999964654445648,-0.00242829392664135,0.000759746297262609,0.999996066093445,-0.00272055738605559,-0.00182069686707109,0.999930381774902,-0.0116619188338518,-0.00343326386064291,0.999992370605469,-0.00188150024041533,0.00818928331136703,0.99989241361618,-0.0121661573648453,0.00805642548948526,0.999964654445648,-0.00242829392664135,-0.00343326386064291,0.999992370605469,-0.00188150024041533,0.00639073131605983,0.999955594539642,-0.00693634152412415,0.00666223140433431,0.999917149543762,-0.0110159404575825,0.00818928331136703,0.99989241361618,-0.0121661573648453,-0.0045899492688477,0.999963164329529,-0.0072648897767067,-0.00777606992051005,0.999960243701935,-0.00437911227345467,0.00251614372245967,0.999978125095367,-0.0061073093675077,-0.00100367923732847,0.999935448169708,-0.0113092940300703,-0.00607041222974658,0.999971628189087,-0.004448217805475,-0.00448343949392438,0.999970376491547,-0.00626639742404222,0.0006565484800376,0.999974250793457,-0.00714926468208432,-0.0070665399543941,0.999958455562592,-0.00576327461749315,-0.00448343949392438,0.999970376491547,-0.00626639742404222,-0.00478974124416709,0.999987363815308,0.00152658671140671,-0.000248753378400579,0.999952614307404,-0.00972945429384708,0.0006565484800376,0.999974250793457,-0.00714926468208432,-0.000248753378400579,0.999952614307404,-0.00972945429384708,-0.00478974124416709,0.999987363815308,0.00152658671140671,-0.00362454866990447,0.999993503093719,0.000271422730293125,-0.00360095337964594,0.999993026256561,-0.000974897877313197,0.00994425546377897,0.987107992172241,0.15974648296833,0.013175830245018,0.999613702297211,-0.0244716219604015,-0.00471960054710507,0.999938547611237,0.0100299557670951,-0.00520916189998388,0.999980270862579,0.00350514473393559,0.013175830245018,0.999613702297211,-0.0244716219604015,0.00573231419548392,0.999983191490173,-0.000929319765418768,
  568. -0.00322979688644409,0.999948620796204,0.00960578396916389,-0.00471960054710507,0.999938547611237,0.0100299557670951,0.225156605243683,0.974301397800446,0.00642317626625299,0.0260635130107403,0.999659955501556,-0.000817667576484382,0.00970522500574589,0.999906480312347,0.00963469315320253,-0.0030448182951659,0.999949157238007,0.00961159076541662,0.0207826849073172,0.999783873558044,-0.000636878074146807,0.0165298469364643,0.988390922546387,-0.15103080868721,0.0049722227267921,0.999955654144287,0.00800086837261915,0.00910108350217342,0.999912023544312,0.00965651124715805,0.0165298469364643,0.988390922546387,-0.15103080868721,0.0126542011275887,0.997351169586182,0.0716279596090317,0.00456310715526342,0.999980211257935,0.00432491907849908,0.0049722227267921,0.999955654144287,0.00800086837261915,0.00756586948409677,0.999967634677887,0.00276762340217829,0.00456310715526342,0.999980211257935,0.00432491907849908,0.0126542011275887,0.997351169586182,0.0716279596090317,0.0225087758153677,0.999736726284027,0.00446731364354491,-0.0964986532926559,0.995333015918732,-0.000565356109291315,0.15039224922657,0.988626301288605,-0.000610361050348729,-0.00727777322754264,0.99997079372406,0.00230019027367234,0.000551993900444359,0.999996781349182,0.00246655568480492,-0.014623693190515,0.999887228012085,0.00342183141037822,0.00994425546377897,0.987107992172241,0.15974648296833,-0.00520916189998388,0.999980270862579,0.00350514473393559,-0.0118387388065457,0.999926865100861,0.0024505543988198,-0.0030448182951659,0.999949157238007,0.00961159076541662,0.00970522500574589,0.999906480312347,0.00963469315320253,-0.00777606992051005,0.999960243701935,-0.00437911227345467,-0.0045899492688477,0.999963164329529,-0.0072648897767067,-0.00471960054710507,0.999938547611237,0.0100299557670951,-0.00322979688644409,0.999948620796204,0.00960578396916389,0.00639073131605983,0.999955594539642,-0.00693634152412415,-0.00343326386064291,0.999992370605469,-0.00188150024041533,-0.00520916189998388,0.999980270862579,0.00350514473393559,-0.00471960054710507,0.999938547611237,0.0100299557670951,
  569. -0.00343326386064291,0.999992370605469,-0.00188150024041533,-0.00182069686707109,0.999930381774902,-0.0116619188338518,-0.0118387388065457,0.999926865100861,0.0024505543988198,-0.00520916189998388,0.999980270862579,0.00350514473393559,-0.00182069686707109,0.999930381774902,-0.0116619188338518,-0.00224144593812525,0.999995410442352,-0.00204775505699217,0.000551993900444359,0.999996781349182,0.00246655568480492,-0.00727777322754264,0.99997079372406,0.00230019027367234,-0.00414628209546208,0.999989569187164,-0.00196003168821335,-0.00408445345237851,0.999991655349731,0.000256401661317796,-0.00362454866990447,0.999993503093719,0.000271422730293125,-0.00478974124416709,0.999987363815308,0.00152658671140671,0.00456310715526342,0.999980211257935,0.00432491907849908,0.00756586948409677,0.999967634677887,0.00276762340217829,0.0049722227267921,0.999955654144287,0.00800086837261915,0.00456310715526342,0.999980211257935,0.00432491907849908,-0.00478974124416709,0.999987363815308,0.00152658671140671,-0.00448343949392438,0.999970376491547,-0.00626639742404222,0.00910108350217342,0.999912023544312,0.00965651124715805,0.0049722227267921,0.999955654144287,0.00800086837261915,-0.00448343949392438,0.999970376491547,-0.00626639742404222,-0.00607041222974658,0.999971628189087,-0.004448217805475,-0.650457322597504,0.736632764339447,0.185141816735268,-0.0137333255261183,0.978586912155151,0.205375745892525,-0.0170311070978642,0.996032774448395,-0.0873424112796783,-0.245966076850891,0.826652884483337,-0.506108403205872,0.381989657878876,0.84058028459549,-0.384068638086319,-0.0155381830409169,0.999673128128052,0.0203035157173872,-0.022923406213522,0.975848913192749,0.21724009513855,0.494579136371613,0.791585326194763,0.358865201473236,0.876564562320709,-0,-0.481284379959106,0.897575914859772,-0,-0.440859884023666,0.999990165233612,-0,0.00442311493679881,0.899586021900177,1.69367780245011e-007,0.43674373626709,0.999998033046722,2.03847849711281e-009,0.00200968328863382,0.778334558010101,1.26940039990586e-006,0.627849817276001,0.876564562320709,-0,-0.481284379959106,
  570. 0.766985654830933,-0,-0.641664147377014,0.897575914859772,-0,-0.440859884023666,0.766985654830933,-0,-0.641664147377014,0.999998033046722,2.03847849711281e-009,0.00200968328863382,0.897575914859772,-0,-0.440859884023666,0.899586021900177,1.69367780245011e-007,0.43674373626709,0.778334558010101,1.26940039990586e-006,0.627849817276001,0.882141351699829,-0,0.470984786748886,0.999990165233612,-0,0.00442311493679881,0.899586021900177,1.69367780245011e-007,0.43674373626709,0.882141351699829,-0,0.470984786748886,0.897575914859772,-0,-0.440859884023666,0.999998033046722,2.03847849711281e-009,0.00200968328863382,0.999990165233612,-0,0.00442311493679881,0.999990165233612,-0,0.00442311493679881,0.999998033046722,2.03847849711281e-009,0.00200968328863382,0.899586021900177,1.69367780245011e-007,0.43674373626709,-0.876572966575623,0,0.481269061565399,-0.999896943569183,0,0.0143584571778774,-0.897591292858124,0,0.440828651189804,-0.912120461463928,3.36413386037293e-009,-0.409922242164612,-0.791433990001678,3.9344838498323e-009,-0.611254692077637,-0.999997973442078,0,-0.00204368145205081,-0.876572966575623,0,0.481269061565399,-0.897591292858124,0,0.440828651189804,-0.766981601715088,0,0.641669094562531,-0.766981601715088,0,0.641669094562531,-0.897591292858124,0,0.440828651189804,-0.999997973442078,0,-0.00204368145205081,-0.912120461463928,3.36413386037293e-009,-0.409922242164612,-0.908391952514648,2.69048694434559e-009,-0.418119668960571,-0.791433990001678,3.9344838498323e-009,-0.611254692077637,-0.999896943569183,0,0.0143584571778774,-0.908391952514648,2.69048694434559e-009,-0.418119668960571,-0.912120461463928,3.36413386037293e-009,-0.409922242164612,-0.897591292858124,0,0.440828651189804,-0.999896943569183,0,0.0143584571778774,-0.999997973442078,0,-0.00204368145205081,-0.999896943569183,0,0.0143584571778774,-0.912120461463928,3.36413386037293e-009,-0.409922242164612,-0.999997973442078,0,-0.00204368145205081,-0.0565148703753948,0.998373448848724,0.00751796318218112,0.00714567257091403,0.999974250793457,0.000654254807159305,0.00972566660493612,0.999952673912048,-0.00025052492856048,
  571. 0.118308499455452,0.992975354194641,0.00174262817017734,-0.143724784255028,0.989610373973846,-0.0038131580222398,0.00242773885838687,0.999964594841003,0.00805660057812929,0.0121629722416401,0.999892473220825,0.00818940624594688,-0.231512993574142,0.972761154174805,0.0117286937311292,-0.000522375281434506,0.999979257583618,-0.00643110275268555,0.00092148466501385,0.999989688396454,0.00444640917703509,0.00276951352134347,0.99999475479126,0.00169294851366431,-0.00685114087536931,0.992661714553833,-0.120729871094227,-0.00602377206087112,0.999829530715942,0.01745087467134,0.0113099934533238,0.999935507774353,-0.00100298505276442,0.00610633473843336,0.999978125095367,0.00251636817120016,0.00278738792985678,0.964098811149597,0.265529155731201,-0.328351497650146,0.866952240467072,0.37493908405304,-0.0565148703753948,0.998373448848724,0.00751796318218112,0.118308499455452,0.992975354194641,0.00174262817017734,0.521119236946106,0.838642477989197,0.158472210168839,0.0411023423075676,0.920372903347015,0.388875752687454,0.112948939204216,0.99360054731369,-0.000740950112231076,0.501646459102631,0.828199326992035,-0.24987319111824,-0.000283043802483007,0.904189944267273,-0.427130371332169,-0.358865052461624,0.842102229595184,-0.402591526508331,-0.081658624112606,0.996651649475098,-0.00414633378386498,0.349533289670944,0.867664992809296,0.353530734777451,-0.000522375281434506,0.999979257583618,-0.00643110275268555,-0.00685114087536931,0.992661714553833,-0.120729871094227,0.532971084117889,0.833991289138794,-0.142829924821854,-0.350540071725845,0.86746484041214,-0.35302460193634,-0.00602377206087112,0.999829530715942,0.01745087467134,0.00278738792985678,0.964098811149597,0.265529155731201,-0.367743879556656,0.867190718650818,0.335774749517441,0.305499792098999,0.865951061248779,-0.395978033542633,-0.143724784255028,0.989610373973846,-0.0038131580222398,-0.231512993574142,0.972761154174805,0.0117286937311292,-0.532777369022369,0.833977222442627,-0.143632382154465,-0.315715938806534,0.874093174934387,-0.369167625904083,-0.172936901450157,0.984912693500519,-0.00630703708156943,
  572. -0.561437606811523,0.76743620634079,0.309563487768173,-0.0467742569744587,0.829914808273315,0.555925965309143,0.408782541751862,0.793429970741272,0.45096093416214,0.0217036977410316,0.999755442142487,-0.00423329696059227,-0.0565148703753948,0.998373448848724,0.00751796318218112,-0.00584717560559511,0.999944984912872,0.00870844535529613,0.00576229579746723,0.999958455562592,-0.00706626893952489,0.00714567257091403,0.999974250793457,0.000654254807159305,-0.000543040107004344,0.999999403953552,0.000951329420786351,0.118308499455452,0.992975354194641,0.00174262817017734,0.00972566660493612,0.999952673912048,-0.00025052492856048,0.00097831292077899,0.999993085861206,-0.00360054383054376,-0.00520375650376081,0.999984800815582,-0.00187313824426383,-0.231512993574142,0.972761154174805,0.0117286937311292,0.0121629722416401,0.999892473220825,0.00818940624594688,0.0110165784135461,0.999917149543762,0.00666216807439923,-0.143724784255028,0.989610373973846,-0.0038131580222398,-0.000415767688537017,0.999868452548981,0.0162139311432838,0.00272340537048876,0.999996066093445,0.000756729627028108,0.00242773885838687,0.999964594841003,0.00805660057812929,-0.367743879556656,0.867190718650818,0.335774749517441,0.00278738792985678,0.964098811149597,0.265529155731201,0.258804500102997,0.965877532958984,0.0100427307188511,0.501646459102631,0.828199326992035,-0.24987319111824,0.112948939204216,0.99360054731369,-0.000740950112231076,-0.0118377413600683,0.991715788841248,0.127905741333961,0.521119236946106,0.838642477989197,0.158472210168839,0.118308499455452,0.992975354194641,0.00174262817017734,0.000437601906014606,0.941101729869843,-0.338123261928558,-0.245966076850891,0.826652884483337,-0.506108403205872,-0.0170311070978642,0.996032774448395,-0.0873424112796783,0.070560060441494,0.997452139854431,-0.0105207590386271,-0.0198334120213985,0.936371564865112,0.350449651479721,-0.532777369022369,0.833977222442627,-0.143632382154465,-0.231512993574142,0.972761154174805,0.0117286937311292,0.494579136371613,0.791585326194763,0.358865201473236,-0.022923406213522,0.975848913192749,0.21724009513855,
  573. -0.0823905020952225,0.996597111225128,0.0024554452393204,-0.347172170877457,0.937611937522888,-0.0188504550606012,-0.0847512483596802,0.731259107589722,-0.676814198493958,-0.0226869136095047,0.887681126594543,-0.459899514913559,-0.561437606811523,0.76743620634079,0.309563487768173,-0.172936901450157,0.984912693500519,-0.00630703708156943,-0.0222606230527163,0.992349326610565,-0.121438443660736,-0.000258622341789305,0.999991714954376,-0.00408513145521283,0.00195795041508973,0.999989569187164,-0.00414767023175955,0.00276951352134347,0.99999475479126,0.00169294851366431,0.00092148466501385,0.999989688396454,0.00444640917703509,0.00204591755755246,0.999995410442352,-0.00223815720528364,0.0116589311510324,0.999930381774902,-0.00182081561069936,0.00242773885838687,0.999964594841003,0.00805660057812929,0.00272340537048876,0.999996066093445,0.000756729627028108,0.0116589311510324,0.999930381774902,-0.00182081561069936,0.00187934504356235,0.999992370605469,-0.00343265407718718,0.0121629722416401,0.999892473220825,0.00818940624594688,0.00242773885838687,0.999964594841003,0.00805660057812929,0.00187934504356235,0.999992370605469,-0.00343265407718718,0.00693775061517954,0.999955534934998,0.00638754619285464,0.0110165784135461,0.999917149543762,0.00666216807439923,0.0121629722416401,0.999892473220825,0.00818940624594688,0.00726602599024773,0.999963164329529,-0.00458586355671287,0.00438040960580111,0.999960243701935,-0.00777343986555934,0.00610633473843336,0.999978125095367,0.00251636817120016,0.0113099934533238,0.999935507774353,-0.00100298505276442,0.00444941641762853,0.999971628189087,-0.00607004202902317,0.00626888871192932,0.999970257282257,-0.004482954274863,0.00714567257091403,0.999974250793457,0.000654254807159305,0.00576229579746723,0.999958455562592,-0.00706626893952489,0.00626888871192932,0.999970257282257,-0.004482954274863,-0.00152404559776187,0.999987363815308,-0.00478919455781579,0.00972566660493612,0.999952673912048,-0.00025052492856048,0.00714567257091403,0.999974250793457,0.000654254807159305,0.00972566660493612,0.999952673912048,-0.00025052492856048,
  574. -0.00152404559776187,0.999987363815308,-0.00478919455781579,-0.000273663026746362,0.999993503093719,-0.00362463691271842,0.00097831292077899,0.999993085861206,-0.00360054383054376,-0.172936901450157,0.984912693500519,-0.00630703708156943,0.0217036977410316,0.999755442142487,-0.00423329696059227,-0.0197866410017014,0.999744296073914,-0.0109484726563096,-0.00919282808899879,0.999891102313995,-0.0115486355498433,0.0217036977410316,0.999755442142487,-0.00423329696059227,-0.0156157370656729,0.999814987182617,-0.0112366126850247,-0.016114478930831,0.999830305576324,-0.00891842320561409,-0.0197866410017014,0.999744296073914,-0.0109484726563096,-0.022923406213522,0.975848913192749,0.21724009513855,-0.0155381830409169,0.999673128128052,0.0203035157173872,-0.0162975266575813,0.999865651130676,-0.00178844656329602,-0.0161202941089869,0.999831914901733,-0.00873331166803837,-0.0164131578058004,0.99984747171402,-0.00597404595464468,0.112948939204216,0.99360054731369,-0.000740950112231076,-0.0159087218344212,0.999872088432312,-0.00167638761922717,-0.0162478592246771,0.999867856502533,-0.000424297526478767,0.112948939204216,0.99360054731369,-0.000740950112231076,-0.081658624112606,0.996651649475098,-0.00414633378386498,-0.0127223897725344,0.999917566776276,-0.00174176378641278,-0.0159087218344212,0.999872088432312,-0.00167638761922717,-0.00911960005760193,0.999956667423248,0.00187588762491941,-0.0127223897725344,0.999917566776276,-0.00174176378641278,-0.081658624112606,0.996651649475098,-0.00414633378386498,-0.0209973659366369,0.999764144420624,0.00555902114138007,-0.0170311070978642,0.996032774448395,-0.0873424112796783,-0.0137333255261183,0.978586912155151,0.205375745892525,-0.00860110484063625,0.999928712844849,-0.00829050876200199,-0.00909609906375408,0.999957799911499,0.00132939778268337,-0.0202757157385349,0.999080955982208,-0.0377649292349815,-0.172936901450157,0.984912693500519,-0.00630703708156943,-0.00919282808899879,0.999891102313995,-0.0115486355498433,-0.0088950777426362,0.999810039997101,-0.0173423383384943,-0.0161202941089869,0.999831914901733,-0.00873331166803837,
  575. -0.0162975266575813,0.999865651130676,-0.00178844656329602,0.00438040960580111,0.999960243701935,-0.00777343986555934,0.00726602599024773,0.999963164329529,-0.00458586355671287,-0.0197866410017014,0.999744296073914,-0.0109484726563096,-0.016114478930831,0.999830305576324,-0.00891842320561409,0.00693775061517954,0.999955534934998,0.00638754619285464,0.00187934504356235,0.999992370605469,-0.00343265407718718,-0.00919282808899879,0.999891102313995,-0.0115486355498433,-0.0197866410017014,0.999744296073914,-0.0109484726563096,0.00187934504356235,0.999992370605469,-0.00343265407718718,0.0116589311510324,0.999930381774902,-0.00182081561069936,-0.0088950777426362,0.999810039997101,-0.0173423383384943,-0.00919282808899879,0.999891102313995,-0.0115486355498433,0.0116589311510324,0.999930381774902,-0.00182081561069936,0.00204591755755246,0.999995410442352,-0.00223815720528364,-0.00909609906375408,0.999957799911499,0.00132939778268337,-0.00860110484063625,0.999928712844849,-0.00829050876200199,0.00195795041508973,0.999989569187164,-0.00414767023175955,-0.000258622341789305,0.999991714954376,-0.00408513145521283,-0.000273663026746362,0.999993503093719,-0.00362463691271842,-0.00152404559776187,0.999987363815308,-0.00478919455781579,-0.0127223897725344,0.999917566776276,-0.00174176378641278,-0.00911960005760193,0.999956667423248,0.00187588762491941,-0.0159087218344212,0.999872088432312,-0.00167638761922717,-0.0127223897725344,0.999917566776276,-0.00174176378641278,-0.00152404559776187,0.999987363815308,-0.00478919455781579,0.00626888871192932,0.999970257282257,-0.004482954274863,-0.0162478592246771,0.999867856502533,-0.000424297526478767,-0.0159087218344212,0.999872088432312,-0.00167638761922717,0.00626888871192932,0.999970257282257,-0.004482954274863,0.00444941641762853,0.999971628189087,-0.00607004202902317,0.185130029916763,-0.737114250659943,-0.649914979934692,0.20970319211483,-0.977760314941406,0.00305777601897717,-0.0858250856399536,-0.996310234069824,0.000212396116694435,-0.506120383739471,-0.826824009418488,-0.245365634560585,
  576. -0.384129732847214,-0.840747714042664,0.381559491157532,0.0189007855951786,-0.99982088804245,0.00096816272707656,0.216531381011009,-0.976251780986786,-0.00682526361197233,0.358709156513214,-0.791737198829651,0.49444916844368,-0.481265425682068,0,0.8765749335289,-0.440843135118485,0,0.897584140300751,0.00444431183859706,-6.2798504174566e-009,0.999990105628967,0.436749637126923,-3.63210178079554e-012,0.899583160877228,0.002027791691944,-5.99287908187307e-009,0.999997913837433,0.627861857414246,9.30629884265954e-009,0.778324842453003,-0.481265425682068,0,0.8765749335289,-0.641669869422913,0,0.766980886459351,-0.440843135118485,0,0.897584140300751,-0.641669869422913,0,0.766980886459351,0.002027791691944,-5.99287908187307e-009,0.999997913837433,-0.440843135118485,0,0.897584140300751,0.436749637126923,-3.63210178079554e-012,0.899583160877228,0.627861857414246,9.30629884265954e-009,0.778324842453003,0.470979571342468,1.12019824527465e-008,0.882144093513489,0.00444431183859706,-6.2798504174566e-009,0.999990105628967,0.436749637126923,-3.63210178079554e-012,0.899583160877228,0.470979571342468,1.12019824527465e-008,0.882144093513489,-0.440843135118485,0,0.897584140300751,0.002027791691944,-5.99287908187307e-009,0.999997913837433,0.00444431183859706,-6.2798504174566e-009,0.999990105628967,0.00444431183859706,-6.2798504174566e-009,0.999990105628967,0.002027791691944,-5.99287908187307e-009,0.999997913837433,0.436749637126923,-3.63210178079554e-012,0.899583160877228,0.481237471103668,-0,-0.876590311527252,0.0143568143248558,0,-0.999896883964539,0.440848857164383,0,-0.897581338882446,-0.409950762987137,1.9161354885e-006,-0.912107646465302,-0.611222624778748,1.30439025269879e-006,-0.79145872592926,-0.00203386903740466,0,-0.999997913837433,0.481237471103668,-0,-0.876590311527252,0.440848857164383,0,-0.897581338882446,0.641628503799438,0,-0.767015635967255,0.641628503799438,0,-0.767015635967255,0.440848857164383,0,-0.897581338882446,-0.00203386903740466,0,-0.999997913837433,-0.409950762987137,1.9161354885e-006,-0.912107646465302,-0.418117016553879,1.49628169765492e-006,-0.908393204212189,
  577. -0.611222624778748,1.30439025269879e-006,-0.79145872592926,0.0143568143248558,0,-0.999896883964539,-0.418117016553879,1.49628169765492e-006,-0.908393204212189,-0.409950762987137,1.9161354885e-006,-0.912107646465302,0.440848857164383,0,-0.897581338882446,0.0143568143248558,0,-0.999896883964539,-0.00203386903740466,0,-0.999997913837433,0.0143568143248558,0,-0.999896883964539,-0.409950762987137,1.9161354885e-006,-0.912107646465302,-0.00203386903740466,0,-0.999997913837433,0.0180363152176142,-0.998228669166565,-0.0566930286586285,0.00649957824498415,-0.99995356798172,0.00712137948721647,0.00486989924684167,-0.999940037727356,0.00980367884039879,0.0120684560388327,-0.992894470691681,0.118384450674057,0.00586847681552172,-0.989484548568726,-0.144519582390785,0.0140844052657485,-0.999898672103882,0.00208933162502944,0.0143173765391111,-0.999821245670319,0.0123492470011115,0.0211794320493937,-0.972579836845398,-0.231602922081947,-0.00350939901545644,-0.999993681907654,-0.000595948018599302,0.0113489311188459,-0.999935209751129,0.000959435536060482,0.00536834308877587,-0.99998152256012,0.00284625706262887,-0.114084459841251,-0.993445515632629,-0.00712083745747805,0.0231689643114805,-0.999710202217102,-0.00653628073632717,0.00263977400027215,-0.999924302101135,0.0120177315548062,0.00969687663018703,-0.999930560588837,0.00669789174571633,0.268714874982834,-0.963218092918396,0.00178574828896672,0.373892307281494,-0.867374539375305,-0.328429520130157,0.0180363152176142,-0.998228669166565,-0.0566930286586285,0.0120684560388327,-0.992894470691681,0.118384450674057,0.158045008778572,-0.838648080825806,0.521240055561066,0.388443022966385,-0.920565366744995,0.0408835262060165,6.7032546212431e-005,-0.992399930953979,0.123054392635822,-0.249674767255783,-0.828340768814087,0.501511812210083,-0.427131801843643,-0.90418928861618,0.000322002335451543,-0.40259712934494,-0.842345833778381,-0.358286291360855,-0.00269606802612543,-0.997470915317535,-0.0710234269499779,0.352957278490067,-0.867813766002655,0.349743366241455,-0.00350939901545644,-0.999993681907654,-0.000595948018599302,
  578. -0.114084459841251,-0.993445515632629,-0.00712083745747805,-0.143213346600533,-0.834188938140869,0.532558798789978,-0.353046894073486,-0.867733538150787,-0.349851936101913,0.0231689643114805,-0.999710202217102,-0.00653628073632717,0.268714874982834,-0.963218092918396,0.00178574828896672,0.335438996553421,-0.867592632770538,-0.367101788520813,-0.395951598882675,-0.865965902805328,0.305492103099823,0.00586847681552172,-0.989484548568726,-0.144519582390785,0.0211794320493937,-0.972579836845398,-0.231602922081947,-0.143368482589722,-0.834206998348236,-0.532488644123077,-0.36908495426178,-0.874058246612549,-0.315909057855606,-0.00588634610176086,-0.987076997756958,-0.160138636827469,0.309729754924774,-0.767882585525513,-0.560735166072845,0.555841445922852,-0.830014884471893,-0.0459960177540779,0.450497388839722,-0.793627202510834,0.408910661935806,-0.0031812519300729,-0.999679803848267,0.0251026153564453,0.0180363152176142,-0.998228669166565,-0.0566930286586285,0.0195213295519352,-0.999788284301758,-0.00651880539953709,-0.0034758357796818,-0.99997466802597,0.0062180501408875,0.00649957824498415,-0.99995356798172,0.00712137948721647,0.0105706108734012,-0.999943912029266,-0.000631543516647071,0.0120684560388327,-0.992894470691681,0.118384450674057,0.00486989924684167,-0.999940037727356,0.00980367884039879,0.00119362201076001,-0.999998807907104,0.00103860325179994,0.00700873136520386,-0.999958395957947,-0.00584042491391301,0.0211794320493937,-0.972579836845398,-0.231602922081947,0.0143173765391111,-0.999821245670319,0.0123492470011115,0.0129130557179451,-0.999848902225494,0.0116354012861848,0.00586847681552172,-0.989484548568726,-0.144519582390785,0.0272601284086704,-0.999628365039825,-0.000452210486400872,0.00442698085680604,-0.999986231327057,0.00280016381293535,0.0140844052657485,-0.999898672103882,0.00208933162502944,0.335438996553421,-0.867592632770538,-0.367101788520813,0.268714874982834,-0.963218092918396,0.00178574828896672,0.0200823787599802,-0.966119349002838,0.257313281297684,-0.249674767255783,-0.828340768814087,0.501511812210083,
  579. 6.7032546212431e-005,-0.992399930953979,0.123054392635822,0.12651039659977,-0.991954803466797,0.00456086313351989,0.158045008778572,-0.838648080825806,0.521240055561066,0.0120684560388327,-0.992894470691681,0.118384450674057,-0.338844418525696,-0.940842390060425,0.000288123497739434,-0.506120383739471,-0.826824009418488,-0.245365634560585,-0.0858250856399536,-0.996310234069824,0.000212396116694435,-0.00875418819487095,-0.997387409210205,0.0717056766152382,0.350765913724899,-0.936242818832397,-0.020318916067481,-0.143368482589722,-0.834206998348236,-0.532488644123077,0.0211794320493937,-0.972579836845398,-0.231602922081947,0.358709156513214,-0.791737198829651,0.49444916844368,0.216531381011009,-0.976251780986786,-0.00682526361197233,0.00359792192466557,-0.996682941913605,-0.0813031494617462,-0.00973301939666271,-0.936993837356567,-0.349210351705551,-0.676823973655701,-0.731269359588623,-0.0845842510461807,-0.459775924682617,-0.887729942798615,-0.0232726484537125,0.309729754924774,-0.767882585525513,-0.560735166072845,-0.00588634610176086,-0.987076997756958,-0.160138636827469,-0.12272185087204,-0.992427289485931,-0.00523525895550847,-0.00408638967201114,-0.999991655349731,-0.000258251355262473,-0.00414639571681619,-0.999989569187164,0.00195859046652913,0.00536834308877587,-0.99998152256012,0.00284625706262887,0.0113489311188459,-0.999935209751129,0.000959435536060482,-0.00223286310210824,-0.999995410442352,0.00204672943800688,-0.0018215102609247,-0.999930381774902,0.0116620510816574,0.0140844052657485,-0.999898672103882,0.00208933162502944,0.00442698085680604,-0.999986231327057,0.00280016381293535,-0.0018215102609247,-0.999930381774902,0.0116620510816574,-0.00343240844085813,-0.999992311000824,0.0018873120425269,0.0143173765391111,-0.999821245670319,0.0123492470011115,0.0140844052657485,-0.999898672103882,0.00208933162502944,-0.00343240844085813,-0.999992311000824,0.0018873120425269,0.00638361508026719,-0.999955534934998,0.00693746516481042,0.0129130557179451,-0.999848902225494,0.0116354012861848,0.0143173765391111,-0.999821245670319,0.0123492470011115,
  580. -0.00458987895399332,-0.999963164329529,0.00726574892178178,-0.00777607085183263,-0.99996018409729,0.00438066851347685,0.00969687663018703,-0.999930560588837,0.00669789174571633,0.00263977400027215,-0.999924302101135,0.0120177315548062,-0.00607492122799158,-0.999971628189087,0.0044496119953692,-0.00448576733469963,-0.999970376491547,0.00626635365188122,0.00649957824498415,-0.99995356798172,0.00712137948721647,-0.0034758357796818,-0.99997466802597,0.0062180501408875,-0.00448576733469963,-0.999970376491547,0.00626635365188122,-0.00479206442832947,-0.999987363815308,-0.00152608228381723,0.00486989924684167,-0.999940037727356,0.00980367884039879,0.00649957824498415,-0.99995356798172,0.00712137948721647,0.00486989924684167,-0.999940037727356,0.00980367884039879,-0.00479206442832947,-0.999987363815308,-0.00152608228381723,-0.00362862576730549,-0.999993443489075,-0.000273204408586025,0.00119362201076001,-0.999998807907104,0.00103860325179994,-0.00588634610176086,-0.987076997756958,-0.160138636827469,-0.0031812519300729,-0.999679803848267,0.0251026153564453,-0.0102325733751059,-0.999910533428192,-0.00861507840454578,-0.0106289815157652,-0.999938249588013,-0.00325397867709398,-0.0031812519300729,-0.999679803848267,0.0251026153564453,-0.00920090265572071,-0.999957323074341,0.000828129937872291,-0.00819488242268562,-0.999926865100861,-0.00888241827487946,-0.0102325733751059,-0.999910533428192,-0.00861507840454578,0.216531381011009,-0.976251780986786,-0.00682526361197233,0.0189007855951786,-0.99982088804245,0.00096816272707656,-0.00175134988967329,-0.999957263469696,-0.00908145774155855,-0.00801249872893095,-0.999928295612335,-0.00888816267251968,-0.00489136576652527,-0.9999880194664,0.000173309017554857,6.7032546212431e-005,-0.992399930953979,0.123054392635822,-0.00137510383501649,-0.999975144863129,-0.00692396564409137,-0.000160340598085895,-0.999959290027618,-0.0090240566059947,6.7032546212431e-005,-0.992399930953979,0.123054392635822,-0.00269606802612543,-0.997470915317535,-0.0710234269499779,-0.00164390506688505,-0.999987661838531,-0.00467414734885097,
  581. -0.00137510383501649,-0.999975144863129,-0.00692396564409137,0.00158708484377712,-0.999995291233063,-0.00260090315714478,-0.00164390506688505,-0.999987661838531,-0.00467414734885097,-0.00269606802612543,-0.997470915317535,-0.0710234269499779,0.00452973553910851,-0.999983429908752,-0.00357337389141321,-0.0858250856399536,-0.996310234069824,0.000212396116694435,0.20970319211483,-0.977760314941406,0.00305777601897717,-0.00693574966862798,-0.999974012374878,-0.00197737268172204,0.000744839198887348,-0.999996542930603,-0.00256468122825027,-0.0258365627378225,-0.999662160873413,-0.0028435243293643,-0.00588634610176086,-0.987076997756958,-0.160138636827469,-0.0106289815157652,-0.999938249588013,-0.00325397867709398,-0.0190688222646713,-0.999815344810486,-0.00236572464928031,-0.00801249872893095,-0.999928295612335,-0.00888816267251968,-0.00175134988967329,-0.999957263469696,-0.00908145774155855,-0.00777607085183263,-0.99996018409729,0.00438066851347685,-0.00458987895399332,-0.999963164329529,0.00726574892178178,-0.0102325733751059,-0.999910533428192,-0.00861507840454578,-0.00819488242268562,-0.999926865100861,-0.00888241827487946,0.00638361508026719,-0.999955534934998,0.00693746516481042,-0.00343240844085813,-0.999992311000824,0.0018873120425269,-0.0106289815157652,-0.999938249588013,-0.00325397867709398,-0.0102325733751059,-0.999910533428192,-0.00861507840454578,-0.00343240844085813,-0.999992311000824,0.0018873120425269,-0.0018215102609247,-0.999930381774902,0.0116620510816574,-0.0190688222646713,-0.999815344810486,-0.00236572464928031,-0.0106289815157652,-0.999938249588013,-0.00325397867709398,-0.0018215102609247,-0.999930381774902,0.0116620510816574,-0.00223286310210824,-0.999995410442352,0.00204672943800688,0.000744839198887348,-0.999996542930603,-0.00256468122825027,-0.00693574966862798,-0.999974012374878,-0.00197737268172204,-0.00414639571681619,-0.999989569187164,0.00195859046652913,-0.00408638967201114,-0.999991655349731,-0.000258251355262473,-0.00362862576730549,-0.999993443489075,-0.000273204408586025,-0.00479206442832947,-0.999987363815308,-0.00152608228381723,
  582. -0.00164390506688505,-0.999987661838531,-0.00467414734885097,0.00158708484377712,-0.999995291233063,-0.00260090315714478,-0.00137510383501649,-0.999975144863129,-0.00692396564409137,-0.00164390506688505,-0.999987661838531,-0.00467414734885097,-0.00479206442832947,-0.999987363815308,-0.00152608228381723,-0.00448576733469963,-0.999970376491547,0.00626635365188122,-0.000160340598085895,-0.999959290027618,-0.0090240566059947,-0.00137510383501649,-0.999975144863129,-0.00692396564409137,-0.00448576733469963,-0.999970376491547,0.00626635365188122,-0.00607492122799158,-0.999971628189087,0.0044496119953692,0.0861999094486237,0.140881672501564,-0.986266613006592,0.195454657077789,-0.0886892527341843,-0.976694285869598,-0.291165828704834,0.122207053005695,-0.948834955692291,-0.0888939648866653,-0.110432431101799,-0.989900290966034,0.000821009278297424,-0.276883274316788,-0.960903227329254,-0.349828809499741,-0.0272090975195169,-0.936418414115906,0.312067091464996,-0.0520673543214798,-0.94863224029541,0.0354775115847588,0.0568232163786888,-0.997753739356995,0.0354775115847588,0.0568232163786888,-0.997753739356995,0.312067091464996,-0.0520673543214798,-0.94863224029541,0.195454657077789,-0.0886892527341843,-0.976694285869598,0.0861999094486237,0.140881672501564,-0.986266613006592,0.000821009278297424,-0.276883274316788,-0.960903227329254,0.0354775115847588,0.0568232163786888,-0.997753739356995,0.0861999094486237,0.140881672501564,-0.986266613006592,-0.0888939648866653,-0.110432431101799,-0.989900290966034,-0.999994993209839,0,0.00317238620482385,-0.999996840953827,0,0.00251542427577078,-0.999999821186066,0,0.000647133740130812,-0.999999225139618,0,-0.00122991215903312,-0.999996960163116,-4.73629224728711e-009,0.0024647768586874,-0.999995172023773,-4.73628425368133e-009,0.00311783538199961,-0.999999165534973,-2.95562063712396e-008,-0.00128463259898126,-0.99999988079071,-2.80969718602364e-008,0.000594731769524515,-0.999980390071869,-0.00240326835773885,0.00578617816790938,-0.999980390071869,-0.0024032830260694,0.00578617816790938,
  583. -0.999995112419128,-0.00238498765975237,0.0020322110503912,-0.999995112419128,-0.00239518936723471,0.00203220988623798,-0.291165828704834,0.122207053005695,-0.948834955692291,-0.349828809499741,-0.0272090975195169,-0.936418414115906,0.000821009278297424,-0.276883274316788,-0.960903227329254,-0.0888939648866653,-0.110432431101799,-0.989900290966034,-0.999994516372681,-0.00234857178293169,0.00232780515216291,-0.999994516372681,-0.00235851481556892,0.00232781702652574,-0.99997866153717,-0.00236632348969579,0.00608678627759218,-0.99997866153717,-0.00236641429364681,0.00608678674325347,-0.517413377761841,0.15525771677494,0.841533422470093,0.312422066926956,-0.00470956694334745,0.949931740760803,0.0704557225108147,-0.0255248416215181,0.997188270092011,-0.00129943224601448,-0.283249139785767,0.959045469760895,0.519379496574402,0.1567113250494,0.840051472187042,-0.310596197843552,-0.00322045455686748,0.950536489486694,-0.0706047788262367,-0.0264483224600554,0.997153699398041,0.00131227518431842,-0.283981829881668,0.958828806877136,0.312422066926956,-0.00470956694334745,0.949931740760803,0.519379496574402,0.1567113250494,0.840051472187042,0.00131227518431842,-0.283981829881668,0.958828806877136,0.0704557225108147,-0.0255248416215181,0.997188270092011,-0.00129943224601448,-0.283249139785767,0.959045469760895,-0.0706047788262367,-0.0264483224600554,0.997153699398041,-0.310596197843552,-0.00322045455686748,0.950536489486694,-0.517413377761841,0.15525771677494,0.841533422470093,-0.00129943224601448,-0.283249139785767,0.959045469760895,0.0704557225108147,-0.0255248416215181,0.997188270092011,0.00131227518431842,-0.283981829881668,0.958828806877136,-0.0706047788262367,-0.0264483224600554,0.997153699398041,-0.99999988079071,-2.80969718602364e-008,0.000594731769524515,-0.999999165534973,-2.95562063712396e-008,-0.00128463259898126,-0.999994993209839,-5.33712700701017e-008,-0.0031732798088342,-0.999992787837982,-5.42195692787573e-008,-0.00381238386034966,-0.999995112419128,-0.00239518936723471,0.00203220988623798,-0.999995112419128,-0.00238498765975237,0.0020322110503912,
  584. -0.999996483325958,-0.0023772141430527,-0.00120014871936291,-0.999996483325958,-0.00237669609487057,-0.00120014883577824,-0.999999225139618,0,-0.00122991215903312,-0.999999821186066,0,0.000647133740130812,-0.999992966651917,0,-0.00375953037291765,-0.999995172023773,0,-0.00311567657627165,-0.999996840953827,-0.00234020873904228,-0.000908869609702379,-0.999996840953827,-0.00234030140563846,-0.000908869667910039,-0.999994516372681,-0.00235851481556892,0.00232781702652574,-0.999994516372681,-0.00234857178293169,0.00232780515216291,0.105665966868401,0.113547891378403,-0.987897574901581,0.219562500715256,-0.0803560465574265,-0.972283542156219,-0.45741793513298,-0.0214882176369429,-0.888992130756378,-0.0285907685756683,0.0698013305664063,-0.997151136398315,-0.0946981683373451,0.135209009051323,-0.986281275749207,-0.275039464235306,-0.105007991194725,-0.955681145191193,0.407203644514084,-0.0912458598613739,-0.908768117427826,0.0527275837957859,0.00135490566026419,-0.998607993125916,0.0527275837957859,0.00135490566026419,-0.998607993125916,0.407203644514084,-0.0912458598613739,-0.908768117427826,0.219562500715256,-0.0803560465574265,-0.972283542156219,0.105665966868401,0.113547891378403,-0.987897574901581,-0.0946981683373451,0.135209009051323,-0.986281275749207,0.0527275837957859,0.00135490566026419,-0.998607993125916,0.105665966868401,0.113547891378403,-0.987897574901581,-0.0285907685756683,0.0698013305664063,-0.997151136398315,-0.999999344348907,0.0010688363108784,0.000397244264604524,-0.999999523162842,0.0010688325855881,-0.000134974208776839,-0.999998211860657,-4.20449759985786e-006,-0.0019043586216867,-0.999999761581421,-1.15105276563554e-005,-0.000808298937045038,-0.999999046325684,-0.00106878625229001,-0.000969419197645038,-0.999995648860931,-0.00106877053622156,-0.00278601609170437,-1,1.14450331238913e-005,-0.000129877516883425,-0.999998867511749,4.20770720666042e-006,0.0015190978301689,-0.999987363815308,-0.00319457077421248,0.00388094712980092,-0.999987125396729,-0.00329799484461546,0.00388106680475175,-0.999995648860931,-0.00164392357692122,0.002443972742185,
  585. -0.999994337558746,-0.00233356445096433,0.00244475505314767,-0.45741793513298,-0.0214882176369429,-0.888992130756378,-0.275039464235306,-0.105007991194725,-0.955681145191193,-0.0946981683373451,0.135209009051323,-0.986281275749207,-0.0285907685756683,0.0698013305664063,-0.997151136398315,-0.999996960163116,-0.00226565776392818,0.0010346194030717,-0.999996423721313,-0.00244804192334414,0.00103470776230097,-0.999912261962891,-0.00249444972723722,0.0130109572783113,-0.999912798404694,-0.00230640242807567,0.0130107812583447,-0.628217995166779,0.275645166635513,0.727572619915009,0.331494241952896,-0.0769634917378426,0.940312802791595,0.0554137974977493,-0.11799680441618,0.991466641426086,-0.0239905100315809,-0.167438730597496,0.985590517520905,0.496780961751938,0.192745789885521,0.846201956272125,-0.476813614368439,-0.159368738532066,0.864436507225037,-0.0821150243282318,-0.0926856696605682,0.992303550243378,-0.0204407554119825,-0.227007687091827,0.973678469657898,0.331494241952896,-0.0769634917378426,0.940312802791595,0.496780961751938,0.192745789885521,0.846201956272125,-0.0204407554119825,-0.227007687091827,0.973678469657898,0.0554137974977493,-0.11799680441618,0.991466641426086,-0.0239905100315809,-0.167438730597496,0.985590517520905,-0.0821150243282318,-0.0926856696605682,0.992303550243378,-0.476813614368439,-0.159368738532066,0.864436507225037,-0.628217995166779,0.275645166635513,0.727572619915009,-0.0239905100315809,-0.167438730597496,0.985590517520905,0.0554137974977493,-0.11799680441618,0.991466641426086,-0.0204407554119825,-0.227007687091827,0.973678469657898,-0.0821150243282318,-0.0926856696605682,0.992303550243378,-0.999998867511749,4.20770720666042e-006,0.0015190978301689,-1,1.14450331238913e-005,-0.000129877516883425,-0.999997854232788,0.00191974989138544,-0.00077167758718133,-0.999997973442078,0.00191973068285733,0.000709670654032379,-0.999994337558746,-0.00233356445096433,0.00244475505314767,-0.999995648860931,-0.00164392357692122,0.002443972742185,-0.999999463558197,-0.00112889846786857,-0.000127152350614779,
  586. -0.999999761581421,-0.000766677723731846,-0.00012721581151709,-0.999999761581421,-1.15105276563554e-005,-0.000808298937045038,-0.999998211860657,-4.20449759985786e-006,-0.0019043586216867,-0.999997138977051,-0.00191990600433201,-0.00148161360993981,-0.999998152256012,-0.00191988598089665,0.00017828430281952,-0.999787747859955,-0.00196887995116413,-0.0205082893371582,-0.999786972999573,-0.00234882929362357,-0.0205082427710295,-0.999996423721313,-0.00244804192334414,0.00103470776230097,-0.999996960163116,-0.00226565776392818,0.0010346194030717,0.122084334492683,0.111595511436462,-0.986226141452789,0.247540026903152,-0.0997182279825211,-0.963732481002808,-0.482923626899719,0.0152009334415197,-0.875530540943146,-0.0419014617800713,0.0761490017175674,-0.996215581893921,-0.109789535403252,0.135732293128967,-0.984643697738647,-0.300580888986588,-0.143474459648132,-0.9429030418396,0.419332474470139,-0.0788186490535736,-0.904404640197754,0.0665690302848816,0.0056466837413609,-0.997765839099884,0.0665690302848816,0.0056466837413609,-0.997765839099884,0.419332474470139,-0.0788186490535736,-0.904404640197754,0.247540026903152,-0.0997182279825211,-0.963732481002808,0.122084334492683,0.111595511436462,-0.986226141452789,-0.109789535403252,0.135732293128967,-0.984643697738647,0.0665690302848816,0.0056466837413609,-0.997765839099884,0.122084334492683,0.111595511436462,-0.986226141452789,-0.0419014617800713,0.0761490017175674,-0.996215581893921,-0.99999338388443,0,-0.00364456651732326,-0.99999338388443,0,-0.00364459841512144,-0.999993443489075,0,-0.00364736933261156,-0.999993443489075,0,-0.00364724872633815,-0.999999821186066,-9.97073215103228e-008,0.000595190795138478,-0.999999821186066,-9.9707762046819e-008,0.000594847311731428,-0.999999821186066,-2.61781547550299e-008,0.000575599784497172,-0.999999821186066,-2.4772408124818e-008,0.000576118880417198,-0.999987125396729,-0.00221072719432414,-0.00458863796666265,-0.999987125396729,-0.00221038400195539,-0.00458863843232393,-0.999996662139893,-0.00240525230765343,0.000936839205678552,
  587. -0.999996900558472,-0.00230567599646747,0.000936767726670951,-0.482923626899719,0.0152009334415197,-0.875530540943146,-0.300580888986588,-0.143474459648132,-0.9429030418396,-0.109789535403252,0.135732293128967,-0.984643697738647,-0.0419014617800713,0.0761490017175674,-0.996215581893921,-0.999997019767761,-0.00224507274106145,0.000986880389973521,-0.999996840953827,-0.00232497625984252,0.00098692555911839,-0.999986290931702,-0.00256937462836504,-0.00456038489937782,-0.999986886978149,-0.00232677860185504,-0.00456063821911812,-0.641953885555267,0.247869744896889,0.725572764873505,0.332484304904938,-0.0572112463414669,0.941371977329254,0.0438910201191902,-0.116065450012684,0.992271363735199,-0.0634757801890373,-0.158979848027229,0.985239207744598,0.500034272670746,0.178096875548363,0.847494721412659,-0.495184868574142,-0.125154390931129,0.859725713729858,-0.11963614821434,-0.0918399170041084,0.988560795783997,-0.0315225198864937,-0.233623504638672,0.971816003322601,0.332484304904938,-0.0572112463414669,0.941371977329254,0.500034272670746,0.178096875548363,0.847494721412659,-0.0315225198864937,-0.233623504638672,0.971816003322601,0.0438910201191902,-0.116065450012684,0.992271363735199,-0.0634757801890373,-0.158979848027229,0.985239207744598,-0.11963614821434,-0.0918399170041084,0.988560795783997,-0.495184868574142,-0.125154390931129,0.859725713729858,-0.641953885555267,0.247869744896889,0.725572764873505,-0.0634757801890373,-0.158979848027229,0.985239207744598,0.0438910201191902,-0.116065450012684,0.992271363735199,-0.0315225198864937,-0.233623504638672,0.971816003322601,-0.11963614821434,-0.0918399170041084,0.988560795783997,0.0672579631209373,-0.154888615012169,-0.985639870166779,0.247509613633156,0.0510164611041546,-0.967541337013245,0.242870673537254,-0.0266239121556282,-0.969693183898926,0.00455825263634324,-0.0801274925470352,-0.996774196624756,0.00455825263634324,-0.0801274925470352,-0.996774196624756,0.242870673537254,-0.0266239121556282,-0.969693183898926,-0.454864710569382,-0.0622590519487858,-0.888381540775299,
  588. -0.0836906880140305,0.0181374419480562,-0.996326684951782,-0.0836906880140305,0.0181374419480562,-0.996326684951782,-0.0990321263670921,0.0361431315541267,-0.994427621364594,0.0672579631209373,-0.154888615012169,-0.985639870166779,0.00455825263634324,-0.0801274925470352,-0.996774196624756,-0.0577029883861542,-0.104602813720703,-0.992838621139526,-0.281651109457016,0.196850135922432,-0.939107418060303,-0.427277773618698,-0.0958102568984032,-0.899029552936554,-0.00649734400212765,-0.101291045546532,-0.994835555553436,0.0719590857625008,0.0775433406233788,-0.994388699531555,0.401800066232681,-0.0845271572470665,-0.911817908287048,-0.281651109457016,0.196850135922432,-0.939107418060303,-0.0577029883861542,-0.104602813720703,-0.992838621139526,-0.00649734400212765,-0.101291045546532,-0.994835555553436,-0.427277773618698,-0.0958102568984032,-0.899029552936554,0.55701756477356,-0.0128101222217083,-0.83040189743042,0.0223928093910217,0.114075228571892,-0.993219673633575,0.0719590857625008,0.0775433406233788,-0.994388699531555,-0.0577029883861542,-0.104602813720703,-0.992838621139526,-0.00649734400212765,-0.101291045546532,-0.994835555553436,0.0223928093910217,0.114075228571892,-0.993219673633575,0.241129606962204,0.0436956100165844,-0.969508767127991,0.245042487978935,-0.0418261997401714,-0.968609690666199,-0.373112916946411,0.0428748615086079,-0.926794707775116,-0.115826331079006,0.0162935312837362,-0.993135809898376,-0.0195489022880793,-0.00917172338813543,-0.999766826629639,-0.023295134305954,-0.033431138843298,-0.9991694688797,-0.0195489022880793,-0.00917172338813543,-0.999766826629639,-0.115826331079006,0.0162935312837362,-0.993135809898376,-0.305073916912079,0.236845120787621,-0.922406733036041,-0.0176729634404182,0.00899051781743765,-0.999803423881531,-0.305073916912079,0.236845120787621,-0.922406733036041,-0.268176436424255,-0.115096017718315,-0.956469714641571,0.389612197875977,-0.0797943472862244,-0.917515814304352,0.184306219220161,-0.00354889943264425,-0.98286247253418,0.041718352586031,-0.0322199501097202,-0.998609781265259,
  589. -0.0176729634404182,0.00899051781743765,-0.999803423881531,0.184306219220161,-0.00354889943264425,-0.98286247253418,0.389612197875977,-0.0797943472862244,-0.917515814304352,0.245042487978935,-0.0418261997401714,-0.968609690666199,0.241129606962204,0.0436956100165844,-0.969508767127991,-0.023295134305954,-0.033431138843298,-0.9991694688797,0.041718352586031,-0.0322199501097202,-0.998609781265259,0.184306219220161,-0.00354889943264425,-0.98286247253418,0.241129606962204,0.0436956100165844,-0.969508767127991,-0.0176729634404182,0.00899051781743765,-0.999803423881531,0.041718352586031,-0.0322199501097202,-0.998609781265259,-0.023295134305954,-0.033431138843298,-0.9991694688797,-0.0195489022880793,-0.00917172338813543,-0.999766826629639,-0.999951243400574,0.00180876173544675,0.00970595981925726,-0.999951243400574,0.00185352680273354,0.00970599800348282,-0.999980986118317,-0.000297132472041994,0.00615478912368417,-0.999980747699738,0.000760346942115575,0.00615371949970722,-0.999972999095917,-0.000508566910866648,0.00734430551528931,-0.999972522258759,-0.000508566037751734,0.00741041963919997,-0.999991476535797,3.36473090101208e-006,0.00412726774811745,-0.999991655349731,-3.03335673379479e-006,0.00409469567239285,-0.99999988079071,0.000508769298903644,0.00013793443213217,-0.99999988079071,0.000508770404849201,8.91668150870828e-006,-1,3.01358613796765e-006,0.000401117780711502,-0.99999988079071,-3.330125764478e-006,0.000482961011584848,0.55701756477356,-0.0128101222217083,-0.83040189743042,0.401800066232681,-0.0845271572470665,-0.911817908287048,0.0719590857625008,0.0775433406233788,-0.994388699531555,0.55701756477356,-0.0128101222217083,-0.83040189743042,0.0719590857625008,0.0775433406233788,-0.994388699531555,0.0223928093910217,0.114075228571892,-0.993219673633575,-0.999972581863403,0.00411354005336761,-0.00617196410894394,-0.999979734420776,0.00157351221423596,-0.00617720792070031,-0.999999761581421,0.000640889746136963,-0.000245497765718028,-0.999997138977051,0.00233839824795723,-0.000242528010858223,-0.999961256980896,0.000430423853686079,-0.00879419222474098,
  590. -0.999958276748657,0.000433425506344065,-0.0091235563158989,-0.999998271465302,0.000405508122639731,-0.0018337817164138,-0.999998807907104,0.000403492187615484,-0.00149077002424747,-0.337653607130051,-0.105925023555756,-0.935291349887848,0.247509613633156,0.0510164611041546,-0.967541337013245,0.0672579631209373,-0.154888615012169,-0.985639870166779,-0.0990321263670921,0.0361431315541267,-0.994427621364594,-0.454864710569382,-0.0622590519487858,-0.888381540775299,-0.337653607130051,-0.105925023555756,-0.935291349887848,-0.0990321263670921,0.0361431315541267,-0.994427621364594,-0.0836906880140305,0.0181374419480562,-0.996326684951782,-0.999993205070496,2.60572385890612e-009,-0.00370877608656883,-0.999993860721588,2.45919062891176e-009,-0.00350021221674979,-0.999996304512024,2.15324069685607e-009,-0.00268825143575668,-0.999998331069946,1.44887335462585e-009,-0.0018056269036606,-0.999995768070221,1.15058285121705e-009,0.00291072996333241,-0.999996185302734,-2.85601409188985e-009,-0.00279170437715948,-0.999981641769409,-3.18401021104364e-008,-0.00605280231684446,-0.999994099140167,-2.93586825961256e-008,-0.00343401334248483,-0.999996423721313,-0.00243998225778341,0.00108749000355601,-0.999996542930603,-0.00239859661087394,0.00108743691816926,-0.999996542930603,-0.00255420454777777,-0.000600090541411191,-0.999996781349182,-0.0024888392072171,-0.000600138038862497,-0.373112916946411,0.0428748615086079,-0.926794707775116,-0.268176436424255,-0.115096017718315,-0.956469714641571,-0.305073916912079,0.236845120787621,-0.922406733036041,-0.115826331079006,0.0162935312837362,-0.993135809898376,-0.999978244304657,-0.00220728968270123,0.00621957844123244,-0.999978184700012,-0.00223049661144614,0.00622031558305025,-0.999910295009613,-0.0022730715572834,0.0131988190114498,-0.999910354614258,-0.0022609974257648,0.0131988525390625,-0.278862506151199,0.0815655663609505,0.956860959529877,-0.504821479320526,0.0710463747382164,0.860295176506042,-0.0101118059828877,-0.117848969995975,0.992980003356934,-0.0578209012746811,-0.0727425366640091,0.99567323923111,
  591. -0.504821479320526,0.0710463747382164,0.860295176506042,0.461276799440384,-0.00402271887287498,0.887247145175934,0.123804196715355,-0.0894925966858864,0.988262951374054,-0.0101118059828877,-0.117848969995975,0.992980003356934,0.640296518802643,0.14525480568409,0.754268825054169,-0.278862506151199,0.0815655663609505,0.956860959529877,-0.0578209012746811,-0.0727425366640091,0.99567323923111,0.0815175473690033,-0.0788641273975372,0.993546843528748,0.0815175473690033,-0.0788641273975372,0.993546843528748,0.123804196715355,-0.0894925966858864,0.988262951374054,0.461276799440384,-0.00402271887287498,0.887247145175934,0.640296518802643,0.14525480568409,0.754268825054169,-0.999997437000275,-0.000405228201998398,-0.00222435803152621,-0.999997437000275,-0.00040506140794605,-0.00222896691411734,-0.999957919120789,-0.000430530752055347,-0.00916297640651464,-0.999957919120789,-0.00043061061296612,-0.00917169731110334,-0.999999105930328,0.00139081652741879,-0.000127126593724824,-0.999999940395355,-0.000114704933366738,-0.000129647363792174,-0.999979078769684,-0.00171403179410845,-0.00623770942911506,-0.999980449676514,0.000610873219557106,-0.00623366562649608,0.282631158828735,0.0233529433608055,0.958944380283356,0.357358634471893,0.0532598346471787,0.932447493076324,0.0449448972940445,0.047205351293087,0.997873544692993,0.0587227530777454,-0.106434628367424,0.992584228515625,-0.451132029294968,0.121997326612473,0.88407951593399,0.282631158828735,0.0233529433608055,0.958944380283356,0.0587227530777454,-0.106434628367424,0.992584228515625,-0.0856671184301376,0.0330090634524822,0.995776891708374,-0.0960958823561668,-0.077945351600647,0.992315530776978,0.0449448972940445,0.047205351293087,0.997873544692993,0.357358634471893,0.0532598346471787,0.932447493076324,-0.385300785303116,-0.0485903285443783,0.921510815620422,-0.0856671184301376,0.0330090634524822,0.995776891708374,-0.0960958823561668,-0.077945351600647,0.992315530776978,-0.385300785303116,-0.0485903285443783,0.921510815620422,-0.451132029294968,0.121997326612473,0.88407951593399,
  592. -0.999997735023499,-0.00217064493335783,0.000208373705390841,-0.999997317790985,-0.00233011669479311,0.00020846925326623,-0.999994277954102,-0.0028093121945858,0.0018966895295307,-0.999995470046997,-0.00234535802155733,0.00189618556760252,-0.492317110300064,0.188876613974571,0.849676072597504,0.500154793262482,-0.165580213069916,0.849957823753357,0.0941865816712379,-0.0976396277546883,0.990754902362823,0.030726807191968,-0.248247027397156,0.968209326267242,0.646554112434387,0.280745267868042,0.7093306183815,-0.320331454277039,-0.0689288377761841,0.944794416427612,-0.0477155558764935,-0.111540414392948,0.992613673210144,0.0373605042695999,-0.158702105283737,0.986619412899017,0.500154793262482,-0.165580213069916,0.849957823753357,0.646554112434387,0.280745267868042,0.7093306183815,0.0373605042695999,-0.158702105283737,0.986619412899017,0.0941865816712379,-0.0976396277546883,0.990754902362823,0.030726807191968,-0.248247027397156,0.968209326267242,-0.0477155558764935,-0.111540414392948,0.992613673210144,-0.320331454277039,-0.0689288377761841,0.944794416427612,-0.492317110300064,0.188876613974571,0.849676072597504,0.030726807191968,-0.248247027397156,0.968209326267242,0.0941865816712379,-0.0976396277546883,0.990754902362823,0.0373605042695999,-0.158702105283737,0.986619412899017,-0.0477155558764935,-0.111540414392948,0.992613673210144,-0.0960958823561668,-0.077945351600647,0.992315530776978,-0.0856671184301376,0.0330090634524822,0.995776891708374,0.0587227530777454,-0.106434628367424,0.992584228515625,0.0449448972940445,0.047205351293087,0.997873544692993,0.0815175473690033,-0.0788641273975372,0.993546843528748,-0.0578209012746811,-0.0727425366640091,0.99567323923111,-0.0101118059828877,-0.117848969995975,0.992980003356934,0.123804196715355,-0.0894925966858864,0.988262951374054,-0.999997317790985,-0.00218847789801657,0.000792741833720356,-0.999997317790985,-0.00218409905210137,0.000792742648627609,-0.999978184700012,-0.00223049661144614,0.00622031558305025,-0.999978244304657,-0.00220728968270123,0.00621957844123244,-0.999991655349731,-3.03335673379479e-006,0.00409469567239285,
  593. -0.999991476535797,3.36473090101208e-006,0.00412726774811745,-0.999999642372131,0.000395458948332816,0.000778927351348102,-0.999999642372131,0.000395458948332816,0.000779898196924478,-0.999980747699738,0.000760346942115575,0.00615371949970722,-0.999980986118317,-0.000297132472041994,0.00615478912368417,-0.999993324279785,-0.00136799947358668,0.00339610502123833,-0.99999326467514,-0.00139548676088452,0.00339615624397993,-0.99999988079071,-3.330125764478e-006,0.000482961011584848,-1,3.01358613796765e-006,0.000401117780711502,-0.999999701976776,-0.000395553855923936,0.000629632791969925,-0.999999701976776,-0.000395554001443088,0.000664301682263613,-0.999988794326782,-0.000433448352850974,0.00471422029659152,-0.999988973140717,-0.000433502427767962,0.00469661690294743,-0.999997437000275,-0.00040506140794605,-0.00222896691411734,-0.999997437000275,-0.000405228201998398,-0.00222435803152621,-0.999997138977051,0.00233839824795723,-0.000242528010858223,-0.999999761581421,0.000640889746136963,-0.000245497765718028,-0.999968886375427,-0.000997419701889157,0.00782713294029236,-0.999968349933624,0.00143778347410262,0.00782796088606119,-0.999998807907104,0.000403492187615484,-0.00149077002424747,-0.999998271465302,0.000405508122639731,-0.0018337817164138,-0.999988615512848,0.000436164089478552,0.00477076321840286,-0.99998676776886,0.000435097492299974,0.00512706255540252,-0.999965488910675,0.00278619350865483,0.00782930292189121,-0.999969244003296,0.00061264232499525,0.00782850012183189,-0.999999940395355,-0.000114704933366738,-0.000129647363792174,-0.999999105930328,0.00139081652741879,-0.000127126593724824,-0.999994099140167,-2.93586825961256e-008,-0.00343401334248483,-0.999981641769409,-3.18401021104364e-008,-0.00605280231684446,-0.999987781047821,-4.69702321481691e-008,-0.00494572706520557,-0.999988317489624,-4.6872301595613e-008,-0.00483216671273112,-0.999996781349182,-0.0024888392072171,-0.000600138038862497,-0.999996542930603,-0.00255420454777777,-0.000600090541411191,-0.999995172023773,-0.00263807247392833,-0.00163137505296618,
  594. -0.999995231628418,-0.00265284022316337,-0.00163136934861541,-0.999998331069946,1.44887335462585e-009,-0.0018056269036606,-0.999996304512024,2.15324069685607e-009,-0.00268825143575668,-0.999999821186066,6.46736386666902e-010,-0.000749768107198179,-0.999999642372131,7.35214444880228e-010,-0.000852341763675213,-0.999996960163116,-0.00233251601457596,-0.000822843459900469,-0.999997019767761,-0.00231537059880793,-0.000822848407551646,-0.999997317790985,-0.00233011669479311,0.00020846925326623,-0.999997735023499,-0.00217064493335783,0.000208373705390841,-0.0862077325582504,0.140895277261734,0.986263990402222,-0.195471242070198,-0.0886329635977745,0.976695954799652,0.291156351566315,0.122214667499065,0.948836922645569,0.0888953730463982,-0.110440120100975,0.989899337291718,-0.000829168420750648,-0.276906907558441,0.96089643239975,0.349799066781998,-0.0272470749914646,0.936428487300873,-0.312018662691116,-0.0520010031759739,0.948651850223541,-0.0354759097099304,0.0568073801696301,0.997754693031311,-0.0354759097099304,0.0568073801696301,0.997754693031311,-0.312018662691116,-0.0520010031759739,0.948651850223541,-0.195471242070198,-0.0886329635977745,0.976695954799652,-0.0862077325582504,0.140895277261734,0.986263990402222,-0.000829168420750648,-0.276906907558441,0.96089643239975,-0.0354759097099304,0.0568073801696301,0.997754693031311,-0.0862077325582504,0.140895277261734,0.986263990402222,0.0888953730463982,-0.110440120100975,0.989899337291718,0.999994993209839,1.2198803078789e-009,-0.00317217805422843,0.999996840953827,9.66966173798767e-010,-0.00251449993811548,0.999999821186066,1.15706222381107e-010,-0.000647579377982765,0.999999225139618,-2.18427428921864e-010,0.00122961972374469,0.999996960163116,-2.84047985132929e-009,-0.00246384995989501,0.999995172023773,-2.33830355078624e-009,-0.00311674363911152,0.999999165534973,-2.95534068328607e-008,0.00128396321088076,0.99999988079071,-2.80958492027139e-008,-0.000594745564740151,0.999980390071869,-0.0024045801255852,-0.00578523054718971,0.999980390071869,-0.00240413472056389,-0.00578523008152843,
  595. 0.999995112419128,-0.00238489895127714,-0.00203284504823387,0.999995112419128,-0.00239563547074795,-0.00203284411691129,0.291156351566315,0.122214667499065,0.948836922645569,0.349799066781998,-0.0272470749914646,0.936428487300873,-0.000829168420750648,-0.276906907558441,0.96089643239975,0.0888953730463982,-0.110440120100975,0.989899337291718,0.999994516372681,-0.00234884186647832,-0.00232763262465596,0.999994456768036,-0.00235866731964052,-0.00232764496468008,0.99997878074646,-0.00236648553982377,-0.00608639139682055,0.99997878074646,-0.00236667995341122,-0.00608639139682055,0.517284274101257,0.155160292983055,-0.841630637645721,-0.312400370836258,-0.00470806518569589,-0.949938774108887,-0.0704540312290192,-0.0255074221640825,-0.997188866138458,0.00129852234385908,-0.283215254545212,-0.959055483341217,-0.519280970096588,0.156612247228622,-0.840130805969238,0.310522705316544,-0.00315449316985905,-0.950560748577118,0.0706122815608978,-0.026493651792407,-0.997151911258698,-0.00131429522298276,-0.28391370177269,-0.958848893642426,-0.312400370836258,-0.00470806518569589,-0.949938774108887,-0.519280970096588,0.156612247228622,-0.840130805969238,-0.00131429522298276,-0.28391370177269,-0.958848893642426,-0.0704540312290192,-0.0255074221640825,-0.997188866138458,0.00129852234385908,-0.283215254545212,-0.959055483341217,0.0706122815608978,-0.026493651792407,-0.997151911258698,0.310522705316544,-0.00315449316985905,-0.950560748577118,0.517284274101257,0.155160292983055,-0.841630637645721,0.00129852234385908,-0.283215254545212,-0.959055483341217,-0.0704540312290192,-0.0255074221640825,-0.997188866138458,-0.00131429522298276,-0.28391370177269,-0.958848893642426,0.0706122815608978,-0.026493651792407,-0.997151911258698,0.99999988079071,-2.80958492027139e-008,-0.000594745564740151,0.999999165534973,-2.95534068328607e-008,0.00128396321088076,0.999994993209839,-5.1264919420646e-008,0.00317223975434899,0.999992787837982,-5.16886125012661e-008,0.00381075125187635,0.999995112419128,-0.00239563547074795,-0.00203284411691129,0.999995112419128,-0.00238489895127714,-0.00203284504823387,
  596. 0.999996483325958,-0.00237687723711133,0.00119816767983139,0.999996483325958,-0.00237635942175984,0.00119816791266203,0.999999225139618,-2.18427428921864e-010,0.00122961972374469,0.999999821186066,1.15706222381107e-010,-0.000647579377982765,0.999992966651917,0,0.00375934597104788,0.999995231628418,0,0.00311706098727882,0.999996840953827,-0.00234091584570706,0.000908853369764984,0.999996840953827,-0.00234055984765291,0.000908853486180305,0.999994456768036,-0.00235866731964052,-0.00232764496468008,0.999994516372681,-0.00234884186647832,-0.00232763262465596,-0.132643938064575,0.117009960114956,0.984232842922211,-0.25266832113266,-0.0750521719455719,0.964637696743011,0.484425365924835,-0.0144687509164214,0.874712944030762,0.0243160985410213,0.0806345790624619,0.996447145938873,0.0902903005480766,0.128850251436234,0.987545132637024,0.280487775802612,-0.125638201832771,0.951599597930908,-0.468267351388931,-0.103927925229073,0.877453625202179,-0.0760490745306015,0.00398172810673714,0.997096061706543,-0.0760490745306015,0.00398172810673714,0.997096061706543,-0.468267351388931,-0.103927925229073,0.877453625202179,-0.25266832113266,-0.0750521719455719,0.964637696743011,-0.132643938064575,0.117009960114956,0.984232842922211,0.0902903005480766,0.128850251436234,0.987545132637024,-0.0760490745306015,0.00398172810673714,0.997096061706543,-0.132643938064575,0.117009960114956,0.984232842922211,0.0243160985410213,0.0806345790624619,0.996447145938873,0.999921560287476,0.00106883770786226,0.0124876070767641,0.999915838241577,0.00106883433181793,0.0129306120797992,0.999905705451965,-3.33483103531762e-006,0.0137353232130408,0.999918580055237,-1.1526094567671e-005,0.0127638690173626,0.999926924705505,-0.0010688022011891,0.0120429787784815,0.999904572963715,-0.00106878927908838,0.013777774758637,0.999911189079285,1.14847807708429e-005,0.0133227603510022,0.999917387962341,3.37025267072022e-006,0.0128500498831272,0.999948918819427,-0.00319409882649779,0.00958907604217529,0.999948620796204,-0.0032981401309371,0.00958896800875664,0.999940395355225,-0.00164448597934097,0.010785243473947,
  597. 0.99993908405304,-0.00233398727141321,0.0107845440506935,0.484425365924835,-0.0144687509164214,0.874712944030762,0.280487775802612,-0.125638201832771,0.951599597930908,0.0902903005480766,0.128850251436234,0.987545132637024,0.0243160985410213,0.0806345790624619,0.996447145938873,0.999925971031189,-0.00226857466623187,0.0119577348232269,0.999925553798676,-0.00244836881756783,0.0119577217847109,0.999994933605194,-0.0024945605546236,0.00199182378128171,0.999995350837708,-0.00230639567598701,0.00199196953326464,0.661488711833954,0.274773687124252,-0.697805106639862,-0.33684429526329,-0.068072184920311,-0.939096510410309,-0.0468419902026653,-0.110352545976639,-0.992788016796112,0.046174980700016,-0.183395579457283,-0.981954097747803,-0.507496535778046,0.189146772027016,-0.84063708782196,0.511377036571503,-0.153133615851402,-0.84560239315033,0.105937287211418,-0.0872916132211685,-0.990533947944641,0.0309600066393614,-0.251029878854752,-0.96748411655426,-0.33684429526329,-0.068072184920311,-0.939096510410309,-0.507496535778046,0.189146772027016,-0.84063708782196,0.0309600066393614,-0.251029878854752,-0.96748411655426,-0.0468419902026653,-0.110352545976639,-0.992788016796112,0.046174980700016,-0.183395579457283,-0.981954097747803,0.105937287211418,-0.0872916132211685,-0.990533947944641,0.511377036571503,-0.153133615851402,-0.84560239315033,0.661488711833954,0.274773687124252,-0.697805106639862,0.046174980700016,-0.183395579457283,-0.981954097747803,-0.0468419902026653,-0.110352545976639,-0.992788016796112,0.0309600066393614,-0.251029878854752,-0.96748411655426,0.105937287211418,-0.0872916132211685,-0.990533947944641,0.999917387962341,3.37025267072022e-006,0.0128500498831272,0.999911189079285,1.14847807708429e-005,0.0133227603510022,0.999907553195953,0.00191974535118788,0.0134610673412681,0.999923467636108,0.00191972672473639,0.0122278118506074,0.99993908405304,-0.00233398727141321,0.0107845440506935,0.999940395355225,-0.00164448597934097,0.010785243473947,0.999915838241577,-0.00112794490996748,0.0129252504557371,0.999916195869446,-0.000766723707783967,0.0129253100603819,
  598. 0.999918580055237,-1.1526094567671e-005,0.0127638690173626,0.999905705451965,-3.33483103531762e-006,0.0137353232130408,0.999879539012909,-0.0019199235830456,0.0154018849134445,0.999901413917542,-0.00191990565508604,0.0139161348342896,0.999551594257355,-0.00196950067766011,0.0298817325383425,0.999550700187683,-0.0023500497918576,0.0298816785216331,0.999925553798676,-0.00244836881756783,0.0119577217847109,0.999925971031189,-0.00226857466623187,0.0119577348232269,-0.130234003067017,0.113001093268394,0.985022723674774,-0.257436096668243,-0.098236657679081,0.961288809776306,0.501559317111969,0.0205904394388199,0.864878177642822,0.0470796450972557,0.0815159305930138,0.995559453964233,0.115018256008625,0.133145317435265,0.984399914741516,0.309948891401291,-0.155174911022186,0.938004493713379,-0.442849099636078,-0.084045335650444,0.892648279666901,-0.0726854130625725,0.00712088216096163,0.997329533100128,-0.0726854130625725,0.00712088216096163,0.997329533100128,-0.442849099636078,-0.084045335650444,0.892648279666901,-0.257436096668243,-0.098236657679081,0.961288809776306,-0.130234003067017,0.113001093268394,0.985022723674774,0.115018256008625,0.133145317435265,0.984399914741516,-0.0726854130625725,0.00712088216096163,0.997329533100128,-0.130234003067017,0.113001093268394,0.985022723674774,0.0470796450972557,0.0815159305930138,0.995559453964233,0.999984979629517,-0.00434106588363647,0.00334345852024853,0.999984979629517,-0.00434106588363647,0.00334357423707843,0.999994397163391,8.7265252659563e-005,0.00334441079758108,0.999994397163391,-8.80208244780079e-005,0.00334376888349652,0.999990463256836,-0.00434103887528181,-0.000527621479704976,0.999990463256836,-0.0043410393409431,-0.000526861345861107,0.99999988079071,-8.83604370756075e-005,-0.000527527066878974,0.99999988079071,8.713299757801e-005,-0.000528051052242517,0.999977290630341,-0.00668527791276574,-0.000858612300362438,0.999977290630341,-0.00668533053249121,-0.000858612358570099,0.99999862909317,0.00138385477475822,-0.000853036704938859,0.99999612569809,-0.00265109818428755,-0.000855879450682551,
  599. 0.501559317111969,0.0205904394388199,0.864878177642822,0.309948891401291,-0.155174911022186,0.938004493713379,0.115018256008625,0.133145317435265,0.984399914741516,0.0470796450972557,0.0815159305930138,0.995559453964233,0.999999523162842,-0.000484401010908186,-0.000900757731869817,0.999999403953552,-0.00060342310462147,-0.000900831946637481,0.999976396560669,-0.00681260041892529,-0.000904605258256197,0.999977231025696,-0.00668598245829344,-0.000904497806914151,0.653810322284698,0.244950279593468,-0.715912997722626,-0.340258985757828,-0.0518580302596092,-0.938900709152222,-0.0446298532187939,-0.111726902425289,-0.992736220359802,0.0712909549474716,-0.165467500686646,-0.983635127544403,-0.510066449642181,0.175442606210709,-0.842052280902863,0.507182657718658,-0.119320951402187,-0.853538691997528,0.128120437264442,-0.0897827744483948,-0.987686276435852,0.0318018160760403,-0.246059417724609,-0.968732893466949,-0.340258985757828,-0.0518580302596092,-0.938900709152222,-0.510066449642181,0.175442606210709,-0.842052280902863,0.0318018160760403,-0.246059417724609,-0.968732893466949,-0.0446298532187939,-0.111726902425289,-0.992736220359802,0.0712909549474716,-0.165467500686646,-0.983635127544403,0.128120437264442,-0.0897827744483948,-0.987686276435852,0.507182657718658,-0.119320951402187,-0.853538691997528,0.653810322284698,0.244950279593468,-0.715912997722626,0.0712909549474716,-0.165467500686646,-0.983635127544403,-0.0446298532187939,-0.111726902425289,-0.992736220359802,0.0318018160760403,-0.246059417724609,-0.968732893466949,0.128120437264442,-0.0897827744483948,-0.987686276435852,-0.0779722705483437,-0.174393177032471,0.981584072113037,-0.26620289683342,0.0461978353559971,0.962809383869171,-0.266826450824738,-0.020517710596323,0.96352618932724,-0.00747916661202908,-0.0964563935995102,0.995309174060822,-0.00747916661202908,-0.0964563935995102,0.995309174060822,-0.266826450824738,-0.020517710596323,0.96352618932724,0.502190113067627,-0.0715116560459137,0.861795365810394,0.0998164489865303,0.022740451619029,0.994746088981628,
  600. 0.0998164489865303,0.022740451619029,0.994746088981628,0.116341955959797,0.0347692705690861,0.992600560188293,-0.0779722705483437,-0.174393177032471,0.981584072113037,-0.00747916661202908,-0.0964563935995102,0.995309174060822,0.0454575270414352,-0.100582987070084,0.993889689445496,0.255130618810654,0.180980369448662,0.949818134307861,0.3850017786026,-0.0871310606598854,0.918793678283691,-0.00235554785467684,-0.0843587964773178,0.996432662010193,-0.0699507370591164,0.0759705454111099,0.994653344154358,-0.368815988302231,-0.0783621445298195,0.926193296909332,0.255130618810654,0.180980369448662,0.949818134307861,0.0454575270414352,-0.100582987070084,0.993889689445496,-0.00235554785467684,-0.0843587964773178,0.996432662010193,0.3850017786026,-0.0871310606598854,0.918793678283691,-0.513953924179077,-0.0121892476454377,0.85773116350174,-0.023644357919693,0.0979538559913635,0.994910001754761,-0.0699507370591164,0.0759705454111099,0.994653344154358,0.0454575270414352,-0.100582987070084,0.993889689445496,-0.00235554785467684,-0.0843587964773178,0.996432662010193,-0.023644357919693,0.0979538559913635,0.994910001754761,-0.231597617268562,0.0420760363340378,0.97190135717392,-0.234408721327782,-0.0396317169070244,0.971329987049103,0.399070262908936,0.0457875579595566,0.915776431560516,0.139447137713432,0.0196339320391417,0.990034878253937,0.0392893254756927,-0.00969831924885511,0.999180912971497,0.0429234132170677,-0.0354767963290215,0.998448252677917,0.0392893254756927,-0.00969831924885511,0.999180912971497,0.139447137713432,0.0196339320391417,0.990034878253937,0.329505890607834,0.239286109805107,0.913327991962433,0.0375525057315826,0.00939121376723051,0.999250471591949,0.329505890607834,0.239286109805107,0.913327991962433,0.293025076389313,-0.119479149580002,0.948610007762909,-0.384233504533768,-0.0822895541787148,0.919561326503754,-0.17247274518013,-0.000181013572728261,0.985014259815216,-0.0243188068270683,-0.0338410101830959,0.999131321907043,0.0375525057315826,0.00939121376723051,0.999250471591949,-0.17247274518013,-0.000181013572728261,0.985014259815216,
  601. -0.384233504533768,-0.0822895541787148,0.919561326503754,-0.234408721327782,-0.0396317169070244,0.971329987049103,-0.231597617268562,0.0420760363340378,0.97190135717392,0.0429234132170677,-0.0354767963290215,0.998448252677917,-0.0243188068270683,-0.0338410101830959,0.999131321907043,-0.17247274518013,-0.000181013572728261,0.985014259815216,-0.231597617268562,0.0420760363340378,0.97190135717392,0.0375525057315826,0.00939121376723051,0.999250471591949,-0.0243188068270683,-0.0338410101830959,0.999131321907043,0.0429234132170677,-0.0354767963290215,0.998448252677917,0.0392893254756927,-0.00969831924885511,0.999180912971497,0.999996066093445,0.0018079582368955,-0.00215616333298385,0.999995946884155,0.0018523697508499,-0.00215620500966907,0.999997794628143,-0.0002968059561681,0.00209384248591959,0.999997556209564,0.000759027723688632,0.00209513935260475,0.999999642372131,-0.000508565281052142,0.000668738153763115,0.999999701976776,-0.000508564524352551,0.000589882954955101,0.999989867210388,2.74208719019953e-006,0.004518813919276,0.999989628791809,-2.38136453845073e-006,0.00455837370827794,0.999956727027893,0.000508762197569013,0.00929011777043343,0.999955356121063,0.000508763245306909,0.00944581162184477,0.999959766864777,2.36433584177576e-006,0.00897684972733259,0.999960660934448,-2.70473969976592e-006,0.00887862406671047,-0.513953924179077,-0.0121892476454377,0.85773116350174,-0.368815988302231,-0.0783621445298195,0.926193296909332,-0.0699507370591164,0.0759705454111099,0.994653344154358,-0.513953924179077,-0.0121892476454377,0.85773116350174,-0.0699507370591164,0.0759705454111099,0.994653344154358,-0.023644357919693,0.0979538559913635,0.994910001754761,0.999978005886078,0.00411171838641167,0.00520525081083179,0.999985218048096,0.00157260615378618,0.00520970858633518,0.999999761581421,0.000639930425677449,0.000207479693926871,0.999997198581696,0.00233855680562556,0.000204340001801029,0.999972462654114,0.000430422427598387,0.00741583481431007,0.999970316886902,0.000433440000051633,0.00769500713795424,0.99999874830246,0.000405479280743748,0.00154605077113956,
  602. 0.999999225139618,0.00040351165807806,0.00125641049817204,0.368148326873779,-0.113121248781681,0.922859847545624,-0.26620289683342,0.0461978353559971,0.962809383869171,-0.0779722705483437,-0.174393177032471,0.981584072113037,0.116341955959797,0.0347692705690861,0.992600560188293,0.502190113067627,-0.0715116560459137,0.861795365810394,0.368148326873779,-0.113121248781681,0.922859847545624,0.116341955959797,0.0347692705690861,0.992600560188293,0.0998164489865303,0.022740451619029,0.994746088981628,0.999882578849792,0,-0.0153239155188203,0.999879539012909,0,-0.015520878136158,0.999867260456085,0,-0.0162937436252832,0.999853193759918,0,-0.0171324703842402,0.999766409397125,-4.68776484296995e-009,-0.0216131005436182,0.999868869781494,-6.69253541474291e-009,-0.016194012016058,0.999914288520813,-2.95697919483473e-008,-0.0130972731858492,0.999878525733948,-2.81910086386006e-008,-0.0155846234411001,0.999799370765686,-0.00244020181708038,-0.019880810752511,0.999799489974976,-0.00239858357235789,-0.019880760461092,0.999829649925232,-0.00255425530485809,-0.018277620896697,0.999829888343811,-0.00248894724063575,-0.0182776972651482,0.399070262908936,0.0457875579595566,0.915776431560516,0.293025076389313,-0.119479149580002,0.948610007762909,0.329505890607834,0.239286109805107,0.913327991962433,0.139447137713432,0.0196339320391417,0.990034878253937,0.999995589256287,-0.00220826803706586,0.00201570615172386,0.999995470046997,-0.00222943513654172,0.00201411871239543,0.999977350234985,-0.00227322219870985,-0.00633721658959985,0.999977350234985,-0.00226128986105323,-0.00633725337684155,0.268968343734741,0.0650871992111206,-0.960947334766388,0.47985315322876,0.0755342468619347,-0.87409120798111,0.0126983607187867,-0.102455392479897,-0.994656562805176,0.0603990368545055,-0.0825081616640091,-0.994758427143097,0.47985315322876,0.0755342468619347,-0.87409120798111,-0.423359811306,-0.0144999260082841,-0.905845582485199,-0.102061972022057,-0.0940531045198441,-0.99032187461853,0.0126983607187867,-0.102455392479897,-0.994656562805176,-0.596543073654175,0.144948929548264,-0.789383351802826,
  603. 0.268968343734741,0.0650871992111206,-0.960947334766388,0.0603990368545055,-0.0825081616640091,-0.994758427143097,-0.0596840381622314,-0.0698000714182854,-0.995773911476135,-0.0596840381622314,-0.0698000714182854,-0.995773911476135,-0.102061972022057,-0.0940531045198441,-0.99032187461853,-0.423359811306,-0.0144999260082841,-0.905845582485199,-0.596543073654175,0.144948929548264,-0.789383351802826,0.999998211860657,-0.000405246944865212,0.00187489273957908,0.999998152256012,-0.00040503844502382,0.00188000779598951,0.999970138072968,-0.000430561485700309,0.00772944837808609,0.999970078468323,-0.00043060994357802,0.00773391732946038,0.999999046325684,0.00138943607453257,0.000107480831502471,0.999999940395355,-0.000114138536446262,0.000109567416075151,0.999984800815582,-0.00171384809073061,0.00525943702086806,0.999986052513123,0.000610969960689545,0.00525609729811549,-0.30646687746048,0.024164205417037,-0.951574563980103,-0.390796214342117,0.0614583119750023,-0.918423235416412,-0.0533560141921043,0.0526293143630028,-0.997187733650208,-0.0682718604803085,-0.119347453117371,-0.990502417087555,0.494566977024078,0.135801270604134,-0.858464598655701,-0.30646687746048,0.024164205417037,-0.951574563980103,-0.0682718604803085,-0.119347453117371,-0.990502417087555,0.101589411497116,0.0359075553715229,-0.994178175926209,0.112748548388481,-0.0859727710485458,-0.989897131919861,-0.0533560141921043,0.0526293143630028,-0.997187733650208,-0.390796214342117,0.0614583119750023,-0.918423235416412,0.42263999581337,-0.0546198301017284,-0.904650330543518,0.101589411497116,0.0359075553715229,-0.994178175926209,0.112748548388481,-0.0859727710485458,-0.989897131919861,0.42263999581337,-0.0546198301017284,-0.904650330543518,0.494566977024078,0.135801270604134,-0.858464598655701,0.999816358089447,-0.00217032851651311,-0.0190460700541735,0.999815881252289,-0.00232995324768126,-0.0190461706370115,0.999782919883728,-0.00280939135700464,-0.0206500552594662,0.999784111976624,-0.00234517641365528,-0.0206496082246304,0.48179891705513,0.187933310866356,-0.855891823768616,
  604. -0.522933661937714,-0.16410705447197,-0.836426436901093,-0.116315893828869,-0.0964494422078133,-0.988518118858337,-0.0489998273551464,-0.255929172039032,-0.965452909469604,-0.666475534439087,0.280536204576492,-0.690731287002563,0.306527376174927,-0.0662809759378433,-0.949551343917847,0.0296401716768742,-0.10912461578846,-0.99358606338501,-0.0590745583176613,-0.162471041083336,-0.984943270683289,-0.522933661937714,-0.16410705447197,-0.836426436901093,-0.666475534439087,0.280536204576492,-0.690731287002563,-0.0590745583176613,-0.162471041083336,-0.984943270683289,-0.116315893828869,-0.0964494422078133,-0.988518118858337,-0.0489998273551464,-0.255929172039032,-0.965452909469604,0.0296401716768742,-0.10912461578846,-0.99358606338501,0.306527376174927,-0.0662809759378433,-0.949551343917847,0.48179891705513,0.187933310866356,-0.855891823768616,-0.0489998273551464,-0.255929172039032,-0.965452909469604,-0.116315893828869,-0.0964494422078133,-0.988518118858337,-0.0590745583176613,-0.162471041083336,-0.984943270683289,0.0296401716768742,-0.10912461578846,-0.99358606338501,0.112748548388481,-0.0859727710485458,-0.989897131919861,0.101589411497116,0.0359075553715229,-0.994178175926209,-0.0682718604803085,-0.119347453117371,-0.990502417087555,-0.0533560141921043,0.0526293143630028,-0.997187733650208,-0.0596840381622314,-0.0698000714182854,-0.995773911476135,0.0603990368545055,-0.0825081616640091,-0.994758427143097,0.0126983607187867,-0.102455392479897,-0.994656562805176,-0.102061972022057,-0.0940531045198441,-0.99032187461853,0.999961495399475,-0.00218834588304162,0.00850969180464745,0.999961495399475,-0.00218433444388211,0.00850969087332487,0.999995470046997,-0.00222943513654172,0.00201411871239543,0.999995589256287,-0.00220826803706586,0.00201570615172386,0.999989628791809,-2.38136453845073e-006,0.00455837370827794,0.999989867210388,2.74208719019953e-006,0.004518813919276,0.999963581562042,0.000395452487282455,0.00852679088711739,0.999963581562042,0.000395452516386285,0.00852705724537373,0.999997556209564,0.000759027723688632,0.00209513935260475,
  605. 0.999997794628143,-0.0002968059561681,0.00209384248591959,0.999984622001648,-0.00136577372904867,0.00539534399285913,0.999984502792358,-0.00139452610164881,0.00539527973160148,0.999960660934448,-2.70473969976592e-006,0.00887862406671047,0.999959766864777,2.36433584177576e-006,0.00897684972733259,0.999962031841278,-0.000395545095670968,0.00870433729141951,0.999962389469147,-0.000395545357605442,0.00866357795894146,0.9999920129776,-0.000433443259680644,-0.00397438136860728,0.999992072582245,-0.000433495326433331,-0.00396007671952248,0.999998152256012,-0.00040503844502382,0.00188000779598951,0.999998211860657,-0.000405246944865212,0.00187489273957908,0.999997198581696,0.00233855680562556,0.000204340001801029,0.999999761581421,0.000639930425677449,0.000207479693926871,0.999977707862854,-0.000997249269858003,-0.00660098157823086,0.999977171421051,0.00143831351306289,-0.00660162325948477,0.999999225139618,0.00040351165807806,0.00125641049817204,0.99999874830246,0.000405479280743748,0.00154605077113956,0.999991834163666,0.000436159665696323,-0.00402450282126665,0.99999064207077,0.000435095833381638,-0.00432419590651989,0.999974429607391,0.0027855564840138,-0.00660085957497358,0.999978065490723,0.0006123167113401,-0.00660022255033255,0.999999940395355,-0.000114138536446262,0.000109567416075151,0.999999046325684,0.00138943607453257,0.000107480831502471,0.999878525733948,-2.81910086386006e-008,-0.0155846234411001,0.999914288520813,-2.95697919483473e-008,-0.0130972731858492,0.999899864196777,-4.21723953536457e-008,-0.0141514707356691,0.999898433685303,-4.21236769909683e-008,-0.0142586594447494,0.999829888343811,-0.00248894724063575,-0.0182776972651482,0.999829649925232,-0.00255425530485809,-0.018277620896697,0.999846994876862,-0.00263785663992167,-0.0172979775816202,0.999846935272217,-0.00265302136540413,-0.0172979813069105,0.999853193759918,0,-0.0171324703842402,0.999867260456085,0,-0.0162937436252832,0.999835550785065,0,-0.018135204911232,0.999837338924408,0,-0.0180370584130287,0.999834179878235,-0.00233193603344262,-0.0180663149803877,
  606. 0.999834179878235,-0.00231510470621288,-0.0180663112550974,0.999815881252289,-0.00232995324768126,-0.0190461706370115,0.999816358089447,-0.00217032851651311,-0.0190460700541735,0.99999988079071,8.713299757801e-005,-0.000528051052242517,0.99999988079071,-8.83604370756075e-005,-0.000527527066878974,0.99996954202652,0.00778568908572197,-0.000528308562934399,0.99996954202652,0.00778568908572197,-0.000529355718754232,0.99999612569809,-0.00265109818428755,-0.000855879450682551,0.99999862909317,0.00138385477475822,-0.000853036704938859,0.999985039234161,0.00541939353570342,-0.000856999424286187,0.999984979629517,0.00541844265535474,-0.000856999540701509,0.999994397163391,-8.80208244780079e-005,0.00334376888349652,0.999994397163391,8.7265252659563e-005,0.00334441079758108,0.999964118003845,0.00778666092082858,0.00334437447600067,0.999964118003845,0.00778666138648987,0.00334420963190496,0.999984562397003,0.00547916162759066,-0.000902845233213156,0.99998527765274,0.00536774378269911,-0.000902858329936862,0.999999403953552,-0.00060342310462147,-0.000900831946637481,0.999999523162842,-0.000484401010908186,-0.000900757731869817,-0.00207808380946517,-0.00245224148966372,0.999994874000549,-0.00206008111126721,-0.0023558356333524,0.999995112419128,-0.00561140896752477,0.00244752084836364,0.999981284141541,-0.00554904853925109,0.0031126057729125,0.999979853630066,-0.0229779854416847,0.00765884155407548,0.999706625938416,-0.0230162590742111,0.00769699458032846,0.99970555305481,-0.0312424302101135,0.0164515916258097,0.99937641620636,-0.0309064425528049,0.0164424870163202,0.999387085437775,-0.00640121893957257,0.0214611701667309,0.99974912405014,-0.00610495777800679,0.0283555537462235,0.999579250812531,-0.00175230856984854,0.0361196398735046,0.99934595823288,-0.00182432029396296,0.0353530496358871,0.999373197555542,-0.0173578858375549,0.0165016986429691,0.999713182449341,-0.00729576405137777,0.00425585405901074,0.999964356422424,-0.0113591412082314,0.00444830860942602,0.99992561340332,-0.0180202648043633,0.0165197812020779,0.999701142311096,
  607. -0.0150885190814734,0.00211475207470357,0.999884009361267,-0.0147159546613693,0.00211476371623576,0.999889492988586,-0.0230162590742111,0.00769699458032846,0.99970555305481,-0.0229779854416847,0.00765884155407548,0.999706625938416,0.0005294403526932,-0.00725795747712255,0.99997353553772,0.000529440178070217,-0.00731861405074596,0.999973177909851,-0.00206008111126721,-0.0023558356333524,0.999995112419128,-0.00207808380946517,-0.00245224148966372,0.999994874000549,-0.0113591412082314,0.00444830860942602,0.99992561340332,-0.00729576405137777,0.00425585405901074,0.999964356422424,-0.00591030204668641,-0.00341099267825484,0.999976813793182,-0.00254552881233394,-0.00341104064136744,0.999990999698639,-0.00849791523069143,0.0146452616900206,0.999856650829315,-0.00849794782698154,0.0143846478313208,0.999860525131226,-0.00610495777800679,0.0283555537462235,0.999579250812531,-0.00640121893957257,0.0214611701667309,0.99974912405014,1,-0,-0,1,-0,0,1,-0,0,1,-0,0,-1,6.31295620223682e-007,0,-1,1.10636869976588e-006,0,-1,1.58144166562124e-006,0,-1,1.10636869976588e-006,0,-0.000560378015507013,0.0166829247027636,0.99986070394516,-0.000778320652898401,0.0104587655514479,0.999944925308228,-0.00299619510769844,0.0435670353472233,0.99904602766037,-0.00289933849126101,0.0480658151209354,0.998839974403381,-0.0301780626177788,0.0121311480179429,0.999470949172974,-0.0232711769640446,0.0116989752277732,0.999660670757294,-0.0477321557700634,0.0238129738718271,0.998576283454895,-0.0541589520871639,0.0239426698535681,0.998245239257813,-0.00469245947897434,0.0158952083438635,0.999862670898438,-0.00455876952037215,0.0188213549554348,0.999812483787537,-0.00296926777809858,0.0190213117748499,0.999814689159393,-0.00307073886506259,0.0142858792096376,0.999893307685852,0.0285989958792925,0.0228233672678471,0.999330461025238,0.00566065683960915,0.00589791545644403,0.999966561794281,-0.00158585736062378,0.00615938473492861,0.999979853630066,0.0226637776941061,0.0229536164551973,0.999479651451111,-0.02049620449543,0.00409206189215183,0.999781548976898,-0.012484872713685,0.00363165396265686,0.999915480613709,
  608. -0.0232711769640446,0.0116989752277732,0.999660670757294,-0.0301780626177788,0.0121311480179429,0.999470949172974,0.000395774201024324,-0.00153832149226218,0.99999874830246,-9.81672565103509e-005,-0.0101239206269383,0.999948740005493,-0.000778320652898401,0.0104587655514479,0.999944925308228,-0.000560378015507013,0.0166829247027636,0.99986070394516,-0.00158585736062378,0.00615938473492861,0.999979853630066,0.00566065683960915,0.00589791545644403,0.999966561794281,-0.00193672569002956,-0.00505376467481256,0.999985456466675,-0.0110560199245811,-0.0045289471745491,0.999928712844849,-0.00612353906035423,0.00967062637209892,0.999934494495392,-0.00559690874069929,0.0188101287931204,0.999807476997375,-0.00455876952037215,0.0188213549554348,0.999812483787537,-0.00469245947897434,0.0158952083438635,0.999862670898438,-0.00148328009527177,0.004451934248209,0.999989032745361,-0.00159489270299673,-0.00190700776875019,0.999996960163116,-0.00406410126015544,0.01079136505723,0.99993360042572,-0.00383367342874408,0.0153170302510262,0.999875366687775,-0.0243455450981855,0.0112877730280161,0.999639868736267,-0.0165894944220781,0.0111777782440186,0.999799966812134,-0.00512826163321733,0.0229879282414913,0.999722599983215,-0.0105032185092568,0.0232602376490831,0.999674320220947,-0.00526533648371696,0.0213174838572741,0.999758839607239,-0.00488508632406592,0.0379937589168549,0.999265968799591,-0.00142203574068844,0.0518094748258591,0.99865597486496,-0.0016639232635498,0.0470737293362617,0.998890101909637,-0.0146365342661738,0.0240909494459629,0.999602675437927,-0.00416826736181974,0.00618991209194064,0.999972105026245,-0.0135366218164563,0.00654853042215109,0.999886929988861,-0.0204949993640184,0.0243863724172115,0.999492526054382,-0.0225841868668795,0.00308118434622884,0.999740242958069,-0.0121175451204181,0.00308174407109618,0.999921858310699,-0.0165894944220781,0.0111777782440186,0.999799966812134,-0.0243455450981855,0.0112877730280161,0.999639868736267,0.000417980627389625,0.00673476001247764,0.999977231025696,0.000417989387642592,-0.00186647707596421,0.999998211860657,
  609. -0.00159489270299673,-0.00190700776875019,0.999996960163116,-0.00148328009527177,0.004451934248209,0.999989032745361,-0.0135366218164563,0.00654853042215109,0.999886929988861,-0.00416826736181974,0.00618991209194064,0.999972105026245,0.00740329595282674,-0.00497056171298027,0.999960243701935,-0.00173439050558954,-0.00497069116681814,0.999986231327057,-0.00672251591458917,0.00142945756670088,0.999976396560669,-0.00672214524820447,0.0105880089104176,0.999921381473541,-0.00488508632406592,0.0379937589168549,0.999265968799591,-0.00526533648371696,0.0213174838572741,0.999758839607239,1.53482978930697e-005,-1,-1.94814498734319e-012,7.0592586780549e-006,-1,-8.96025170293163e-013,-1.22978053695988e-006,-1,1.56094904254882e-013,7.0592586780549e-006,-1,-8.96025061872946e-013,0,1,0,0,1,0,-0,1,-0,0,1,0,-5.87254817219218e-006,-1,9.31751420810145e-013,9.36687229113886e-007,-1,-1.48616850163125e-013,7.74592263041995e-006,-1,-1.22898522955661e-012,9.36687229113886e-007,-1,-1.48616850163125e-013,0,1,0,0,1,0,-0,1,-0,0,1,0,0.00207807729020715,-0.00245195743627846,-0.999994874000549,0.00206007994711399,-0.00235569570213556,-0.999995112419128,0.0056113782338798,0.00244797067716718,-0.999981284141541,0.00554897217079997,0.00311351753771305,-0.999979853630066,0.022978825494647,0.00765889184549451,-0.999706625938416,0.0230161100625992,0.00769703416153789,-0.99970555305481,0.0312410462647676,0.0164514761418104,-0.999376475811005,0.0309060402214527,0.0164423976093531,-0.999387145042419,0.00640121707692742,0.0214607398957014,-0.99974912405014,0.00610494101420045,0.0283555202186108,-0.999579250812531,0.00175222510006279,0.0361197553575039,-0.99934595823288,0.00182428606785834,0.0353526659309864,-0.999373316764832,0.0173556040972471,0.0165014248341322,-0.99971330165863,0.00729655288159847,0.0042558591812849,-0.999964356422424,0.0113583486527205,0.00444829417392612,-0.99992561340332,0.0180174019187689,0.0165194924920797,-0.999701201915741,0.0150886252522469,0.00211487128399313,-0.999884009361267,0.014715064316988,0.00211488292552531,-0.999889492988586,
  610. 0.0230161100625992,0.00769703416153789,-0.99970555305481,0.022978825494647,0.00765889184549451,-0.999706625938416,-0.000529440818354487,-0.00725801009684801,-0.99997353553772,-0.000529440643731505,-0.00731849391013384,-0.999973177909851,0.00206007994711399,-0.00235569570213556,-0.999995112419128,0.00207807729020715,-0.00245195743627846,-0.999994874000549,0.0113583486527205,0.00444829417392612,-0.99992561340332,0.00729655288159847,0.0042558591812849,-0.999964356422424,0.00591216795146465,-0.00341086438857019,-0.999976694583893,0.0025475665461272,-0.00341091328300536,-0.999990999698639,0.00849792920053005,0.0146441962569952,-0.999856770038605,0.00849796086549759,0.0143844503909349,-0.999860525131226,0.00610494101420045,0.0283555202186108,-0.999579250812531,0.00640121707692742,0.0214607398957014,-0.99974912405014,-1,-0,0,-1,0,0,-1,0,0,-1,0,0,1,2.37380527323694e-006,-1.46221424301984e-007,1,3.32394824908988e-006,-1.4622141009113e-007,1,4.27409122494282e-006,-1.46221424301984e-007,1,3.32394824908988e-006,-1.4622141009113e-007,0.000560393673367798,0.0166829228401184,-0.99986070394516,0.00077833462273702,0.0104586742818356,-0.999944984912872,0.00299620698206127,0.0435665063560009,-0.99904602766037,0.00289932079613209,0.0480665415525436,-0.998839914798737,0.0301779955625534,0.0121311666443944,-0.999470949172974,0.0232708044350147,0.0116989808157086,-0.999660670757294,0.0477326288819313,0.0238131023943424,-0.99857622385025,0.0541597045958042,0.0239427983760834,-0.998245179653168,0.00469246366992593,0.0158954076468945,-0.999862670898438,0.0045587639324367,0.0188218262046576,-0.999812483787537,0.00296932202763855,0.0190209224820137,-0.999814689159393,0.00307079125195742,0.0142854228615761,-0.999893248081207,-0.0285998713225126,0.0228228401392698,-0.999330341815948,-0.00566083891317248,0.00589772593230009,-0.999966561794281,0.00158598413690925,0.00615921104326844,-0.999979853630066,-0.0226643588393927,0.0229530949145556,-0.999479651451111,0.0204959437251091,0.00409200694411993,-0.999781548976898,0.0124842748045921,0.00363157875835896,-0.999915480613709,
  611. 0.0232708044350147,0.0116989808157086,-0.999660670757294,0.0301779955625534,0.0121311666443944,-0.999470949172974,-0.000395737268263474,-0.00153889833018184,-0.99999874830246,9.81298071565107e-005,-0.0101234037429094,-0.999948859214783,0.00077833462273702,0.0104586742818356,-0.999944984912872,0.000560393673367798,0.0166829228401184,-0.99986070394516,0.00158598413690925,0.00615921104326844,-0.999979853630066,-0.00566083891317248,0.00589772593230009,-0.999966561794281,0.00193661218509078,-0.00505372742190957,-0.999985456466675,0.01105622574687,-0.00452889176085591,-0.999928712844849,0.00612359121441841,0.00966943148523569,-0.999934494495392,0.00559687055647373,0.0188106913119555,-0.999807476997375,0.0045587639324367,0.0188218262046576,-0.999812483787537,0.00469246366992593,0.0158954076468945,-0.999862670898438,0.00148326519411057,0.00445251865312457,-0.999989032745361,0.00159488071221858,-0.00190656178165227,-0.999996900558472,0.00406410126015544,0.0107912346720696,-0.99993360042572,0.00383365200832486,0.0153173357248306,-0.999875426292419,0.0243454687297344,0.0112877655774355,-0.999639868736267,0.0165894608944654,0.0111777735874057,-0.999799966812134,0.00512810936197639,0.0229878071695566,-0.999722599983215,0.0105031291022897,0.0232601203024387,-0.999674320220947,0.00526534393429756,0.0213173720985651,-0.999758839607239,0.00488511426374316,0.0379927232861519,-0.999266088008881,0.00142212561331689,0.0518077164888382,-0.998656094074249,0.00166401162277907,0.047071997076273,-0.998890161514282,0.0146369952708483,0.0240908414125443,-0.999602675437927,0.00416821660473943,0.00618995679542422,-0.999972105026245,0.0135369244962931,0.00654858211055398,-0.999886929988861,0.0204959157854319,0.0243862923234701,-0.999492585659027,0.0225842073559761,0.00308124208822846,-0.999740242958069,0.0121177108958364,0.00308180204592645,-0.999921858310699,0.0165894608944654,0.0111777735874057,-0.999799966812134,0.0243454687297344,0.0112877655774355,-0.999639868736267,-0.000417980918427929,0.0067359022796154,-0.999977231025696,-0.000417989678680897,-0.00186517811380327,-0.999998271465302,
  612. 0.00159488071221858,-0.00190656178165227,-0.999996900558472,0.00148326519411057,0.00445251865312457,-0.999989032745361,0.0135369244962931,0.00654858211055398,-0.999886929988861,0.00416821660473943,0.00618995679542422,-0.999972105026245,-0.00740344636142254,-0.00497041735798121,-0.999960243701935,0.00173431530129164,-0.00497054634615779,-0.999986231327057,0.0067225256934762,0.00143046316225082,-0.999976396560669,0.00672215595841408,0.0105886934325099,-0.999921381473541,0.00488511426374316,0.0379927232861519,-0.999266088008881,0.00526534393429756,0.0213173720985651,-0.999758839607239,-1.49227089423221e-005,-1,1.42059562897867e-012,-1.34416204673471e-005,-1,1.27960055745779e-012,-1.19605329018668e-005,-1,1.13860570277735e-012,-1.34416204673471e-005,-1,1.27960055745779e-012,-0,1,0,-0,1,0,-0,1,0,-0,1,0,1.37182632897748e-005,-1,4.35313325100259e-013,1.8559458112577e-006,-1,5.88936045113966e-014,-1.00063716672594e-005,-1,-3.17526170287574e-013,1.8559458112577e-006,-1,5.88936045113966e-014,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0.162374749779701,0.981412291526794,0.102294504642487,-0.0551596060395241,0.955432057380676,0.290012061595917,0.050610113888979,0.962658882141113,0.26594415307045,0.105364792048931,0.993924200534821,0.0318274907767773,0.105364792048931,0.993924200534821,0.0318274907767773,0.050610113888979,0.962658882141113,0.26594415307045,0.049323208630085,0.899564385414124,-0.43399453163147,-0.0289840698242188,0.997840285301209,-0.0589470341801643,-0.0289840698242188,0.997840285301209,-0.0589470341801643,-0.0244567096233368,0.99695760011673,-0.0740102753043175,0.162374749779701,0.981412291526794,0.102294504642487,0.105364792048931,0.993924200534821,0.0318274907767773,-0.0257498491555452,0.0281232465058565,-0.999272763729095,-0.00694541493430734,0.0281704198569059,-0.999579012393951,0.00211838632822037,0.0311835166066885,-0.999511480331421,-0.0088949678465724,0.0311665087938309,-0.99947464466095,-0.000604677014052868,0.0258716903626919,-0.999665081501007,-0.000605013337917626,0.0259053595364094,-0.999664306640625,-0.000826440751552582,0.0423290766775608,-0.999103426933289,
  613. -0.000827050826046616,0.0423321463167667,-0.999103307723999,0.143330156803131,0.941175520420074,-0.306014627218246,-0.0551596060395241,0.955432057380676,0.290012061595917,0.162374749779701,0.981412291526794,0.102294504642487,-0.0244567096233368,0.99695760011673,-0.0740102753043175,0.049323208630085,0.899564385414124,-0.43399453163147,0.143330156803131,0.941175520420074,-0.306014627218246,-0.0244567096233368,0.99695760011673,-0.0740102753043175,-0.0289840698242188,0.997840285301209,-0.0589470341801643,0.000907157023902982,0.0534005612134933,-0.998572766780853,0.000906668894458562,0.0533794537186623,-0.998573839664459,0.0007082853699103,0.0367543511092663,-0.999324083328247,0.000708965351805091,0.0368220806121826,-0.999321579933167,-0.0265825446695089,0.0312774367630482,-0.999157249927521,-0.0227327607572079,0.0312846638262272,-0.999251961708069,-0.0192215722054243,0.0281749479472637,-0.999418199062347,-0.0165404509752989,0.028181005269289,-0.999466061592102,-0.0952456071972847,-0.974844038486481,0.201512545347214,-0.0282502956688404,-0.946443796157837,0.321630388498306,0.0735708400607109,-0.997229695320129,-0.0109663167968392,0.0850190445780754,-0.99603545665741,0.0261747054755688,-0.0861435383558273,-0.881687700748444,-0.463903099298477,-0.0952456071972847,-0.974844038486481,0.201512545347214,0.0850190445780754,-0.99603545665741,0.0261747054755688,0.0546988807618618,-0.993118941783905,-0.103551141917706,0.0861432477831841,-0.98690527677536,-0.136371612548828,0.0735708400607109,-0.997229695320129,-0.0109663167968392,-0.0282502956688404,-0.946443796157837,0.321630388498306,-0.023717887699604,-0.929756999015808,-0.367408782243729,0.0546988807618618,-0.993118941783905,-0.103551141917706,0.0861432477831841,-0.98690527677536,-0.136371612548828,-0.023717887699604,-0.929756999015808,-0.367408782243729,-0.0861435383558273,-0.881687700748444,-0.463903099298477,0.0861432477831841,-0.98690527677536,-0.136371612548828,0.0546988807618618,-0.993118941783905,-0.103551141917706,0.0850190445780754,-0.99603545665741,0.0261747054755688,
  614. 0.0735708400607109,-0.997229695320129,-0.0109663167968392,0.00101961137261242,0.0699228197336197,-0.997551918029785,0.00101969006936997,0.0699463710188866,-0.997550249099731,0.000906668894458562,0.0533794537186623,-0.998573839664459,0.000907157023902982,0.0534005612134933,-0.998572766780853,-0.0088949678465724,0.0311665087938309,-0.99947464466095,0.00211838632822037,0.0311835166066885,-0.999511480331421,0.00727373734116554,0.0368349738419056,-0.999294996261597,-0.00275949947535992,0.0368325002491474,-0.999317705631256,-0.000827050826046616,0.0423321463167667,-0.999103307723999,-0.000826440751552582,0.0423290766775608,-0.999103426933289,-0.000984622980467975,0.0587335750460625,-0.998273313045502,-0.000984759535640478,0.0587754771113396,-0.998270750045776,-0.0307810567319393,0.0369209423661232,-0.998844027519226,-0.0329472608864307,0.036917544901371,-0.998775124549866,-0.0227327607572079,0.0312846638262272,-0.999251961708069,-0.0265825446695089,0.0312774367630482,-0.999157249927521,0.159216925501823,0.984406292438507,0.0747955739498138,-0.0879542976617813,0.958802938461304,0.270112872123718,0.0738888680934906,0.965642392635345,0.249148666858673,0.0464873015880585,0.99891185760498,-0.00372382462956011,0.0464873015880585,0.99891185760498,-0.00372382462956011,0.0738888680934906,0.965642392635345,0.249148666858673,0.0321556925773621,0.849039256572723,-0.527350246906281,0.0306092463433743,0.988712430000305,-0.146666049957275,0.0306092463433743,0.988712430000305,-0.146666049957275,-0.0386635065078735,0.986645221710205,-0.158229008316994,0.159216925501823,0.984406292438507,0.0747955739498138,0.0464873015880585,0.99891185760498,-0.00372382462956011,-0.0201530680060387,-0.0244098268449306,-0.999498903751373,-0.0200534071773291,-0.0244094990193844,-0.99950098991394,-0.0081527316942811,-0.0139027610421181,-0.999870181083679,-0.00825311709195375,-0.0139857465401292,-0.999868154525757,-0.0199637375771999,-0.0295096281915903,-0.999365091323853,-0.0199795663356781,-0.0574680529534817,-0.998147428035736,-0.00658941455185413,-0.0343102551996708,-0.999389469623566,
  615. -0.00600098492577672,-0.00764063652604818,-0.999952852725983,0.147136613726616,0.898938119411469,-0.412626802921295,-0.0879542976617813,0.958802938461304,0.270112872123718,0.159216925501823,0.984406292438507,0.0747955739498138,-0.0386635065078735,0.986645221710205,-0.158229008316994,0.0321556925773621,0.849039256572723,-0.527350246906281,0.147136613726616,0.898938119411469,-0.412626802921295,-0.0386635065078735,0.986645221710205,-0.158229008316994,0.0306092463433743,0.988712430000305,-0.146666049957275,-0.00474640028551221,-0.00829147081822157,-0.999954402446747,-0.00528889987617731,-0.0104781463742256,-0.999931037425995,-0.0186305195093155,-0.0123772611841559,-0.999749839305878,-0.0187012627720833,-0.0184358190745115,-0.999655246734619,-0.0198085997253656,-0.0137976342812181,-0.999708652496338,-0.0213894043117762,-0.0137144606560469,-0.999677181243896,-0.0315324179828167,-0.0244174040853977,-0.999204456806183,-0.029777379706502,-0.0244132187217474,-0.999258399009705,-0.0795661807060242,-0.903084576129913,0.422027856111526,0.0337410159409046,-0.886140644550323,0.462186545133591,0.0279700625687838,-0.990258157253265,0.136405244469643,0.146363899111748,-0.969387590885162,0.197142615914345,-0.0429368764162064,-0.913696467876434,-0.404122829437256,-0.0795661807060242,-0.903084576129913,0.422027856111526,0.146363899111748,-0.969387590885162,0.197142615914345,0.0354124344885349,-0.999366879463196,0.00345029542222619,0.111977137625217,-0.992373645305634,-0.0515315346419811,0.0279700625687838,-0.990258157253265,0.136405244469643,0.0337410159409046,-0.886140644550323,0.462186545133591,-0.0221919566392899,-0.938633620738983,-0.344200968742371,0.0354124344885349,-0.999366879463196,0.00345029542222619,0.111977137625217,-0.992373645305634,-0.0515315346419811,-0.0221919566392899,-0.938633620738983,-0.344200968742371,-0.0429368764162064,-0.913696467876434,-0.404122829437256,0.111977137625217,-0.992373645305634,-0.0515315346419811,0.0354124344885349,-0.999366879463196,0.00345029542222619,0.146363899111748,-0.969387590885162,0.197142615914345,
  616. 0.0279700625687838,-0.990258157253265,0.136405244469643,-0.00508294021710753,-0.017456978559494,-0.999834716320038,-0.00503528071567416,-0.00286794663406909,-0.999983251094818,-0.00159229605924338,0.00378001225180924,-0.999991595745087,-0.00169047247618437,-0.00391956698149443,-0.999990880489349,-0.00142967503052205,-0.013463081791997,-0.999908447265625,-0.0013033562572673,-0.0134660555049777,-0.999908566474915,-0.00601703766733408,-0.0172438491135836,-0.999833226203918,-0.00616812007501721,-0.0172439198940992,-0.999832391738892,-0.00252149323932827,0.0033602409530431,-0.999991118907928,-0.00257675698958337,-0.0131603851914406,-0.999910116195679,-0.00577878393232822,-0.00619003316387534,-0.999964237213135,-0.00567510351538658,0.00575305195525289,-0.999967336654663,-0.0211810432374477,-0.0272754207253456,-0.999403536319733,-0.0227958187460899,-0.0272753406316042,-0.999368011951447,-0.0135125033557415,-0.0202834196388721,-0.999702990055084,-0.0174205992370844,-0.0202808640897274,-0.999642610549927,-0.00169047247618437,-0.00391956698149443,-0.999990880489349,-0.00159229605924338,0.00378001225180924,-0.999991595745087,-0.00528889987617731,-0.0104781463742256,-0.999931037425995,-0.00474640028551221,-0.00829147081822157,-0.999954402446747,-0.00825311709195375,-0.0139857465401292,-0.999868154525757,-0.0081527316942811,-0.0139027610421181,-0.999870181083679,-0.0013033562572673,-0.0134660555049777,-0.999908566474915,-0.00142967503052205,-0.013463081791997,-0.999908447265625,-0.00600098492577672,-0.00764063652604818,-0.999952852725983,-0.00658941455185413,-0.0343102551996708,-0.999389469623566,-0.00257675698958337,-0.0131603851914406,-0.999910116195679,-0.00252149323932827,0.0033602409530431,-0.999991118907928,-0.0174205992370844,-0.0202808640897274,-0.999642610549927,-0.0135125033557415,-0.0202834196388721,-0.999702990055084,-0.0213894043117762,-0.0137144606560469,-0.999677181243896,-0.0198085997253656,-0.0137976342812181,-0.999708652496338,-0.179186329245567,0.983633637428284,-0.0188962295651436,0.0245042182505131,0.978989481925964,-0.202433004975319,
  617. -0.0529808066785336,0.979030966758728,-0.196701496839523,-0.103865496814251,0.993651211261749,0.0432362295687199,-0.103865496814251,0.993651211261749,0.0432362295687199,-0.0529808066785336,0.979030966758728,-0.196701496839523,-0.0772480666637421,0.864426076412201,0.496790021657944,-0.00456296745687723,0.991483628749847,0.130151182413101,-0.00456296745687723,0.991483628749847,0.130151182413101,0.0137569783255458,0.989312410354614,0.145161136984825,-0.179186329245567,0.983633637428284,-0.0188962295651436,-0.103865496814251,0.993651211261749,0.0432362295687199,-0.0111714964732528,-0.0618769265711308,0.998021364212036,-0.0145186567679048,-0.0619465224444866,0.99797385931015,0.00110759900417179,-0.0525048226118088,0.99862003326416,0.00408471189439297,-0.0522638633847237,0.998625040054321,-0.012648849748075,-0.0582245327532291,0.99822336435318,-0.0126564297825098,-0.0576974265277386,0.998253881931305,-2.92663971777074e-005,-0.0490308105945587,0.998797237873077,-3.96264549635816e-005,-0.0494732260704041,0.99877542257309,-0.123530432581902,0.915644824504852,0.382537364959717,0.0245042182505131,0.978989481925964,-0.202433004975319,-0.179186329245567,0.983633637428284,-0.0188962295651436,0.0137569783255458,0.989312410354614,0.145161136984825,-0.0772480666637421,0.864426076412201,0.496790021657944,-0.123530432581902,0.915644824504852,0.382537364959717,0.0137569783255458,0.989312410354614,0.145161136984825,-0.00456296745687723,0.991483628749847,0.130151182413101,-0.00119121582247317,-0.0485821738839149,0.998818516731262,-0.00117724156007171,-0.0485646575689316,0.998819410800934,-0.0138956941664219,-0.0576720200479031,0.998238861560822,-0.0138943400233984,-0.0577135533094406,0.99823659658432,0.00537330843508244,-0.0520162954926491,0.998631715774536,-0.0049406960606575,-0.0524258427321911,0.998612582683563,-0.0157073624432087,-0.0620081201195717,0.997952044010162,-0.0123783946037292,-0.0619381554424763,0.998003304004669,0.0423488058149815,-0.943860828876495,-0.327617704868317,0.070721723139286,-0.913186371326447,-0.401358872652054,
  618. 0.0705405697226524,-0.99322110414505,-0.092390276491642,-0.0833502784371376,-0.991089642047882,-0.103893809020519,0.149363279342651,-0.900914549827576,0.407484441995621,0.0423488058149815,-0.943860828876495,-0.327617704868317,-0.0833502784371376,-0.991089642047882,-0.103893809020519,0.0579660274088383,-0.997580468654633,0.0383812412619591,-0.0528389029204845,-0.997333347797394,0.0503393448889256,0.0705405697226524,-0.99322110414505,-0.092390276491642,0.070721723139286,-0.913186371326447,-0.401358872652054,-0.0213281959295273,-0.939414024353027,0.342120468616486,0.0579660274088383,-0.997580468654633,0.0383812412619591,-0.0528389029204845,-0.997333347797394,0.0503393448889256,-0.0213281959295273,-0.939414024353027,0.342120468616486,0.149363279342651,-0.900914549827576,0.407484441995621,-0.0528389029204845,-0.997333347797394,0.0503393448889256,0.0579660274088383,-0.997580468654633,0.0383812412619591,-0.0833502784371376,-0.991089642047882,-0.103893809020519,0.0705405697226524,-0.99322110414505,-0.092390276491642,0.011285069398582,-0.0394115187227726,0.999159336090088,0.0112852593883872,-0.0394185706973076,0.999159038066864,-0.00117724156007171,-0.0485646575689316,0.998819410800934,-0.00119121582247317,-0.0485821738839149,0.998818516731262,0.00408471189439297,-0.0522638633847237,0.998625040054321,0.00110759900417179,-0.0525048226118088,0.99862003326416,0.0107632027938962,-0.0427916795015335,0.99902606010437,0.0133774969726801,-0.0427287258207798,0.998997211456299,-3.96264549635816e-005,-0.0494732260704041,0.99877542257309,-2.92663971777074e-005,-0.0490308105945587,0.998797237873077,0.012219381518662,-0.0394741110503674,0.999145984649658,0.0122268982231617,-0.0398316867649555,0.999131679534912,0.0148184187710285,-0.0426444970071316,0.998980522155762,0.0124840261414647,-0.0427007935941219,0.999009907245636,-0.0049406960606575,-0.0524258427321911,0.998612582683563,0.00537330843508244,-0.0520162954926491,0.998631715774536,0.00164367374964058,-0.714676260948181,-0.69945353269577,0.00177700212225318,-0.71868908405304,-0.695329308509827,
  619. 0.00422592321410775,-0.719198763370514,-0.694791555404663,0.00411674520000815,-0.714507460594177,-0.699615716934204,0.0178055632859468,-0.696022391319275,-0.717799246311188,0.0192793663591146,-0.696084022521973,-0.717701554298401,0.012661992572248,-0.685179948806763,-0.728263735771179,0.0114311426877975,-0.68521523475647,-0.728250920772552,0.00507628358900547,-0.70039039850235,-0.713741958141327,0.00497220642864704,-0.698369681835175,-0.715719878673553,0.00308762793429196,-0.694507598876953,-0.719478726387024,0.00323876459151506,-0.701126933097839,-0.713029205799103,-0.0284146852791309,-0.685199677944183,-0.727800786495209,-0.0061214305460453,-0.701507925987244,-0.712635278701782,-0.00609212135896087,-0.701543211936951,-0.712600767612457,-0.0274318065494299,-0.685198366641998,-0.727839708328247,0.0218611508607864,-0.702935099601746,-0.710917949676514,0.0226447638124228,-0.70288074016571,-0.710947155952454,0.0192793663591146,-0.696084022521973,-0.717701554298401,0.0178055632859468,-0.696022391319275,-0.717799246311188,-0.000529876444488764,-0.706440508365631,-0.707772314548492,-0.000302735687000677,-0.710099339485168,-0.70410144329071,0.00177700212225318,-0.71868908405304,-0.695329308509827,0.00164367374964058,-0.714676260948181,-0.69945353269577,-0.00609212135896087,-0.701543211936951,-0.712600767612457,-0.0061214305460453,-0.701507925987244,-0.712635278701782,0.0146109610795975,-0.71091490983963,-0.70312625169754,0.0146807823330164,-0.710910558700562,-0.703129231929779,0.0063058277592063,-0.70087456703186,-0.713256657123566,0.00605860631912947,-0.696850597858429,-0.717190861701965,0.00497220642864704,-0.698369681835175,-0.715719878673553,0.00507628358900547,-0.70039039850235,-0.713741958141327,0.016548752784729,-0.707130551338196,0.70688933134079,0.0165650155395269,-0.707130432128906,0.706889033317566,0.0165812782943249,-0.707130193710327,0.706888914108276,0.0165650155395269,-0.707130432128906,0.706889033317566,0,0.707229316234589,-0.706984281539917,0,0.707229316234589,-0.706984281539917,0,0.707229316234589,-0.706984281539917,
  620. 0,0.707229316234589,-0.706984281539917,0.00164404488168657,0.669949233531952,-0.74240517616272,0.00177747756242752,0.665665328502655,-0.746248245239258,0.0042254445143044,0.665107429027557,-0.746735811233521,0.00411622039973736,0.670119881629944,-0.742241501808167,0.0178057458251715,0.689035415649414,-0.724508941173553,0.0192791689187288,0.688934981822968,-0.724566638469696,0.0126625103875995,0.699931621551514,-0.714097738265991,0.0114324614405632,0.699917376041412,-0.714132368564606,0.00507626868784428,0.684803426265717,-0.728710174560547,0.0049721347168088,0.686862647533417,-0.726770162582397,0.00308892829343677,0.690777719020844,-0.723060607910156,0.00324011407792568,0.684063732624054,-0.72941517829895,-0.0284120459109545,0.699465274810791,-0.714101612567902,-0.00612144451588392,0.683653295040131,-0.729781270027161,-0.00609298003837466,0.683616816997528,-0.729815602302551,-0.0274311248213053,0.699504196643829,-0.714101910591125,0.0218608714640141,0.681878745555878,-0.731138467788696,0.0226446371525526,0.681910157203674,-0.731085360050201,0.0192791689187288,0.688934981822968,-0.724566638469696,0.0178057458251715,0.689035415649414,-0.724508941173553,-0.000528855249285698,0.67859423160553,-0.734513163566589,-0.000301777676213533,0.674779295921326,-0.738019526004791,0.00177747756242752,0.665665328502655,-0.746248245239258,0.00164404488168657,0.669949233531952,-0.74240517616272,-0.00609298003837466,0.683616816997528,-0.729815602302551,-0.00612144451588392,0.683653295040131,-0.729781270027161,0.0146101135760546,0.673771560192108,-0.738795280456543,0.014680054038763,0.673774778842926,-0.738790988922119,0.00630487548187375,0.684299230575562,-0.729174137115479,0.00605769269168377,0.688392400741577,-0.725313246250153,0.0049721347168088,0.686862647533417,-0.726770162582397,0.00507626868784428,0.684803426265717,-0.728710174560547,0.0165579151362181,-0.734935343265533,-0.677935004234314,0.0165723450481892,-0.734935224056244,-0.677934765815735,0.0165867730975151,-0.73493504524231,-0.677934646606445,0.0165723450481892,-0.734935224056244,-0.677934765815735,
  621. 0,0.73503965139389,0.678024113178253,0,0.73503965139389,0.678024113178253,0,0.73503965139389,0.678024113178253,0,0.73503965139389,0.678024113178253,0.00164301751647145,0.669949114322662,-0.742405295372009,0.00177655869629234,0.665664851665497,-0.746248722076416,0.00421227561309934,0.66510808467865,-0.746735215187073,0.0041032605804503,0.670120477676392,-0.742241084575653,0.0178019497543573,0.689034640789032,-0.72450977563858,0.0192758962512016,0.688934445381165,-0.724567413330078,0.0126412017270923,0.699931740760803,-0.71409797668457,0.0114100947976112,0.699917435646057,-0.714132606983185,0.00508098257705569,0.68480396270752,-0.728709638118744,0.00497688911855221,0.68686306476593,-0.726769804954529,0.00308985356241465,0.690777242183685,-0.72306102514267,0.00324103003367782,0.684063374996185,-0.729415535926819,-0.0284140724688768,0.699466049671173,-0.71410083770752,-0.00611638277769089,0.683654069900513,-0.729780614376068,-0.00608143070712686,0.683618009090424,-0.72981458902359,-0.0274208765476942,0.699505388736725,-0.714101135730743,0.0218745060265064,0.681878209114075,-0.731138586997986,0.022658271715045,0.681909620761871,-0.731085419654846,0.0192758962512016,0.688934445381165,-0.724567413330078,0.0178019497543573,0.689034640789032,-0.72450977563858,-0.000521499314345419,0.678593814373016,-0.734513580799103,-0.000294548168312758,0.67477822303772,-0.738020479679108,0.00177655869629234,0.665664851665497,-0.746248722076416,0.00164301751647145,0.669949114322662,-0.742405295372009,-0.00608143070712686,0.683618009090424,-0.72981458902359,-0.00611638277769089,0.683654069900513,-0.729780614376068,0.0146093079820275,0.673771500587463,-0.738795340061188,0.0146800111979246,0.673774719238281,-0.738790988922119,0.00631200801581144,0.684300124645233,-0.729173183441162,0.00606498587876558,0.688393652439117,-0.725311934947968,0.00497688911855221,0.68686306476593,-0.726769804954529,0.00508098257705569,0.68480396270752,-0.728709638118744,0.0166327003389597,-0.734934508800507,-0.677934110164642,0.0166128445416689,-0.73493480682373,-0.677934348583221,
  622. 0.0165929868817329,-0.734934985637665,-0.677934527397156,0.0166128445416689,-0.73493480682373,-0.677934348583221,-0,0.735038876533508,0.678025007247925,-0,0.735038876533508,0.678025007247925,-0,0.735038876533508,0.678025007247925,-0,0.735038876533508,0.678025007247925,0.00164232531096786,-0.71467661857605,-0.699453234672546,0.00177581887692213,-0.718690514564514,-0.695327877998352,0.00421151053160429,-0.719200491905212,-0.694789946079254,0.00410250248387456,-0.714506983757019,-0.699616312980652,0.0178008582442999,-0.696022808551788,-0.717799007892609,0.0192745458334684,-0.696084380149841,-0.717701256275177,0.0126397032290697,-0.685180485248566,-0.72826361656189,0.0114098899066448,-0.685215711593628,-0.728250861167908,0.00508046010509133,-0.700390040874481,-0.713742315769196,0.00497642764821649,-0.698369741439819,-0.715719997882843,0.00308855879120529,-0.69450831413269,-0.719478070735931,0.00323969754390419,-0.701126992702484,-0.713029146194458,-0.0284155402332544,-0.685198903083801,-0.727801501750946,-0.00611634366214275,-0.701506793498993,-0.712636530399323,-0.00608109869062901,-0.701541781425476,-0.712602257728577,-0.0274204034358263,-0.685197651386261,-0.727840960025787,0.0218731425702572,-0.702934622764587,-0.710918068885803,0.0226575694978237,-0.702880144119263,-0.710947334766388,0.0192745458334684,-0.696084380149841,-0.717701256275177,0.0178008582442999,-0.696022808551788,-0.717799007892609,-0.00052229966968298,-0.706439435482025,-0.707773327827454,-0.000295318895950913,-0.710098326206207,-0.704102456569672,0.00177581887692213,-0.718690514564514,-0.695327877998352,0.00164232531096786,-0.71467661857605,-0.699453234672546,-0.00608109869062901,-0.701541781425476,-0.712602257728577,-0.00611634366214275,-0.701506793498993,-0.712636530399323,0.0146101610735059,-0.710914433002472,-0.703126728534698,0.0146796349436045,-0.710909903049469,-0.703129887580872,0.00631204713135958,-0.700873672962189,-0.713257491588593,0.00606503617018461,-0.696849942207336,-0.717191278934479,0.00497642764821649,-0.698369741439819,-0.715719997882843,
  623. 0.00508046010509133,-0.700390040874481,-0.713742315769196,0.0166225228458643,-0.707129716873169,0.706888437271118,0.0166063047945499,-0.707129955291748,0.706888556480408,0.0165900886058807,-0.707130134105682,0.706888794898987,0.0166063047945499,-0.707129895687103,0.706888675689697,0,0.707229316234589,-0.706984281539917,0,0.707229316234589,-0.706984281539917,0,0.707229316234589,-0.706984281539917,0,0.707229316234589,-0.706984281539917,0.000466591620352119,0.00577060366049409,-0.999983251094818,0.000456450681667775,0.00590840261429548,-0.999982476234436,0.00130400632042438,0.00527940830215812,-0.999985218048096,0.00131299393251538,0.00485864048823714,-0.999987363815308,0.0241632368415594,0.00668488629162312,-0.999685704708099,0.0243824124336243,0.00668266741558909,-0.999680459499359,0.0234223529696465,0.00895295571535826,-0.99968558549881,0.0229298863559961,0.00894253607839346,-0.999697089195251,0.00209970772266388,0.0221110545098782,-0.999753355979919,0.00210730265825987,0.0217377804219723,-0.999761462211609,0.000773759267758578,0.0207716003060341,-0.999783933162689,0.000761433911975473,0.0213481113314629,-0.9997718334198,0.00653074961155653,0.00881827715784311,-0.999939799308777,0.0211182553321123,0.00405932823196054,-0.999768793582916,0.0210886634886265,0.00407005660235882,-0.999769270420074,0.00663073593750596,0.00882040802389383,-0.999939203262329,0.0252291597425938,0.00342475972138345,-0.999675810337067,0.0249420031905174,0.00340825645253062,-0.999683141708374,0.0243824124336243,0.00668266741558909,-0.999680459499359,0.0241632368415594,0.00668488629162312,-0.999685704708099,-0.000788190867751837,0.00664395932108164,-0.999977707862854,-0.000765544129535556,0.00625010021030903,-0.999980211257935,0.000456450681667775,0.00590840261429548,-0.999982476234436,0.000466591620352119,0.00577060366049409,-0.999983251094818,0.0210886634886265,0.00407005660235882,-0.999769270420074,0.0211182553321123,0.00405932823196054,-0.999768793582916,0.0355536676943302,-0.00243830587714911,-0.999364793300629,0.0356586277484894,-0.00243225251324475,-0.999361157417297,
  624. 0.00408034957945347,0.0216782931238413,-0.999756693840027,0.00405204156413674,0.0221693143248558,-0.999746024608612,0.00210730265825987,0.0217377804219723,-0.999761462211609,0.00209970772266388,0.0221110545098782,-0.999753355979919,-3.78311706299428e-005,-1,-1.07994889073093e-011,4.92077924718615e-006,-1,1.40471185031132e-012,4.76727291243151e-005,-1,1.3608912607932e-011,4.92077924718615e-006,-1,1.40471185031132e-012,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0.00115420180372894,0.000867212656885386,-0.999999046325684,0.000943129241932184,0.00678334711119533,-0.999976634979248,0.000799730245489627,0.0250229705125093,-0.999686539173126,0.000942332146223634,0.0169515516608953,-0.999855935573578,0.0238165985792875,0.00635164976119995,-0.999696254730225,0.0291497856378555,0.00679375743493438,-0.999552011489868,0.0291202515363693,-0.0321440845727921,-0.999058961868286,0.0219121519476175,-0.0323038883507252,-0.999237895011902,0.00257671414874494,0.0229780189692974,-0.999732732772827,0.00275852438062429,0.0182193741202354,-0.99983024597168,0.000411019747843966,0.0348302572965622,-0.999393284320831,0.000312653603032231,0.0403936728835106,-0.999183893203735,-0.0194928348064423,-0.0328519307076931,-0.999270141124725,0.0117190331220627,0.0033724254462868,-0.999925673007965,0.0118539165705442,0.00346895842812955,-0.999923765659332,-0.0189257357269526,-0.0328401811420918,-0.999281406402588,0.015891931951046,0.0311933271586895,-0.99938702583313,0.0190616063773632,0.0313737988471985,-0.99932599067688,0.0291497856378555,0.00679375743493438,-0.999552011489868,0.0238165985792875,0.00635164976119995,-0.999696254730225,0.00130764325149357,-0.00336421001702547,-0.999993562698364,0.00114010740071535,0.000176527624716982,-0.999999344348907,0.000943129241932184,0.00678334711119533,-0.999976634979248,0.00115420180372894,0.000867212656885386,-0.999999046325684,0.0118539165705442,0.00346895842812955,-0.999923765659332,0.0117190331220627,0.0033724254462868,-0.999925673007965,0.0427646823227406,0.0283470395952463,-0.998682975769043,0.0428335480391979,0.0283509269356728,-0.998679995536804,
  625. 0.00423718756064773,0.0148985730484128,-0.999880135059357,0.00441654399037361,0.0111153917387128,-0.99992847442627,0.00275852438062429,0.0182193741202354,-0.99983024597168,0.00257671414874494,0.0229780189692974,-0.999732732772827,-3.8145764847286e-005,-1,-9.00397117975515e-012,8.99906626727898e-006,-1,2.12415024805623e-012,5.6143897381844e-005,-1,1.32522699411441e-011,8.99906626727898e-006,-1,2.12414981437536e-012,-0,1,0,-2.13563976103615e-006,1,0,-4.27127952207229e-006,1,0,-2.13563976103615e-006,1,0,0.000472874497063458,0.00604359293356538,-0.999981641769409,0.000455189991043881,0.00643033580854535,-0.999979257583618,0.00136019324418157,0.00330550060607493,-0.999993681907654,0.00136632251087576,0.00296900444664061,-0.99999475479126,0.0240819994360209,0.00670879986137152,-0.999687492847443,0.0242959447205067,0.00670278444886208,-0.999682366847992,0.0232233908027411,0.00964860711246729,-0.999683797359467,0.0228442028164864,0.00964059121906757,-0.999692559242249,0.00207887450233102,0.025294654071331,-0.999677956104279,0.00208899239078164,0.0248081386089325,-0.999689996242523,0.000822932925075293,0.0243140701204538,-0.999704122543335,0.000814559927675873,0.0247723832726479,-0.999692797660828,0.00594403594732285,0.00951370317488909,-0.999937176704407,0.020564267411828,0.00406145956367254,-0.999780297279358,0.0205362532287836,0.00407060934230685,-0.999780833721161,0.0060567301698029,0.00951610412448645,-0.999936461448669,0.0251634418964386,0.0027981516905129,-0.999679446220398,0.0249781403690577,0.00278749875724316,-0.99968409538269,0.0242959447205067,0.00670278444886208,-0.999682366847992,0.0240819994360209,0.00670879986137152,-0.999687492847443,-0.000772489060182124,0.00854496471583843,-0.999963283538818,-0.000783603813033551,0.00877224933356047,-0.999961256980896,0.000455189991043881,0.00643033580854535,-0.999979257583618,0.000472874497063458,0.00604359293356538,-0.999981641769409,0.0205362532287836,0.00407060934230685,-0.999780833721161,0.020564267411828,0.00406145956367254,-0.999780297279358,0.0350214652717113,-0.00280176429077983,-0.999382734298706,
  626. 0.0351140797138214,-0.00279642129316926,-0.999379515647888,0.00375723466277123,0.0255835577845573,-0.99966561794281,0.00377180986106396,0.0252862647175789,-0.999673128128052,0.00208899239078164,0.0248081386089325,-0.999689996242523,0.00207887450233102,0.025294654071331,-0.999677956104279,2.54549413511995e-005,-1,-9.30216320638166e-012,7.82361894380301e-006,-1,-2.85903549099298e-012,-9.8077034635935e-006,-1,3.58409179071484e-012,7.82361894380301e-006,-1,-2.85903549099298e-012,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0.000441013049567118,0.00322766392491758,-0.99999475479126,0.000449616403784603,0.00316303409636021,-0.999994993209839,0.00118867948185652,-0.00426248740404844,-0.999990224838257,0.00114431895781308,-0.00399195915088058,-0.999991476535797,0.0189787317067385,0.0107093742117286,-0.999762535095215,0.0144146429374814,0.0102134710177779,-0.999843895435333,0.0108176022768021,-0.00435159727931023,-0.999932110309601,0.0111837023869157,-0.00429404294118285,-0.99992823600769,-7.6238728070166e-005,0.0283764936029911,-0.999597311019897,-0.000664771650917828,0.0329569131135941,-0.999456584453583,-0.00569728948175907,0.0373640581965446,-0.999285459518433,-0.00563081121072173,0.0369587875902653,-0.999300956726074,0.0181533303111792,-0.00277881277725101,-0.999831438064575,0.00719812279567122,0.00748592242598534,-0.999945998191834,0.0121089797466993,0.0078845601528883,-0.999895691871643,0.0182191971689463,-0.00276845577172935,-0.999830186367035,0.0219375900924206,0.0237422194331884,-0.999477386474609,0.0222669672220945,0.0237581972032785,-0.999469757080078,0.0144146429374814,0.0102134710177779,-0.999843895435333,0.0189787317067385,0.0107093742117286,-0.999762535095215,0.000410509383073077,0.0103994561359286,-0.999945938587189,0.00039305558311753,0.0106579968705773,-0.999943137168884,0.000449616403784603,0.00316303409636021,-0.999994993209839,0.000441013049567118,0.00322766392491758,-0.99999475479126,0.0121089797466993,0.0078845601528883,-0.999895691871643,0.00719812279567122,0.00748592242598534,-0.999945998191834,0.00105995452031493,0.0183334499597549,-0.99983137845993,
  627. 0.000987938372418284,0.0183299258351326,-0.99983161687851,0.00402239058166742,0.024603184312582,-0.999689221382141,0.00403968058526516,0.0243475437164307,-0.999695479869843,-0.000664771650917828,0.0329569131135941,-0.999456584453583,-7.6238728070166e-005,0.0283764936029911,-0.999597311019897,0.272028356790543,-0.962289333343506,4.55515447583821e-008,0.272046208381653,-0.962284207344055,4.5554532590586e-008,0.272028356790543,-0.962289333343506,4.55515483110958e-008,0.272010445594788,-0.962294280529022,4.55485427153235e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0.999996900558472,-0.00230567599646747,0.000936767726670951,-0.999996662139893,-0.00240525230765343,0.000936839205678552,-0.999974370002747,-0.00250063231214881,0.00670625129714608,-0.999974370002747,-0.00250045675784349,0.00670625222846866,-0.999993443489075,0,-0.00364724872633815,-0.999993443489075,0,-0.00364736933261156,-0.999993324279785,0,-0.00365038053132594,-0.999993324279785,0,-0.00365017121657729,-0.999974310398102,-0.0023224197793752,0.00678229331970215,-0.999974310398102,-0.00232352945022285,0.00678229331970215,-0.999996840953827,-0.00232497625984252,0.00098692555911839,-0.999997019767761,-0.00224507274106145,0.000986880389973521,-0.999999821186066,-2.4772408124818e-008,0.000576118880417198,-0.999999821186066,-2.61781547550299e-008,0.000575599784497172,-0.999999940395355,5.21154497334919e-008,0.000557390449102968,-0.999999940395355,5.21159115862702e-008,0.00055808515753597
  628. }
  629. TangentsW: *2980 {
  630. 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,
  631. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,-1,1,1,-1,-1,1,1,1,1,1,1,-1,1,1,-1,1,1,1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  632. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,-1,1,1,1,1,-1,-1,1,1,1,1,1,1,1,-1,1,-1,-1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  633. }
  634. }
  635. LayerElementUV: 0 {
  636. Version: 101
  637. Name: "map1"
  638. MappingInformationType: "ByPolygonVertex"
  639. ReferenceInformationType: "IndexToDirect"
  640. UV: *3344 {
  641. a: -1.59206330776215,1.58326506614685,-1.58915388584137,1.52720320224762,-1.53149306774139,1.52713620662689,-1.53519022464752,1.58238875865936,-1.49955523014069,2.35064506530762,-1.4989515542984,2.29375982284546,-1.43587172031403,2.29375982284546,-1.43647539615631,2.35064506530762,-1.53063929080963,1.58764398097992,-1.59620249271393,1.58817493915558,-1.52644550800323,1.52302539348602,-1.59294831752777,1.52326679229736,-1.48589253425598,2.01755237579346,-1.42561626434326,2.01755237579346,-1.42897093296051,2.06515550613403,-1.48221099376678,2.06547498703003,-1.49177348613739,2.07566070556641,2.39888286590576,-0.693826794624329,2.39797616004944,-0.747252821922302,-1.49586987495422,2.00737047195435,2.35005903244019,-1.64367294311523,2.36606121063232,-1.70520901679993,-1.41893315315247,2.07546806335449,-1.4152706861496,2.0071074962616,2.3752965927124,0.805488586425781,2.37657570838928,0.747766494750977,-0.708713889122009,0.44081899523735,-0.849745273590088,0.44081899523735,2.36080098152161,-1.24526727199554,2.34405374526978,-1.30781078338623,-0.709176063537598,0.506754636764526,-0.708713889122009,0.442641258239746,1.90874433517456,-1.70945930480957,1.90702199935913,-1.64921474456787,1.92563343048096,0.759073257446289,1.92730593681335,0.815209090709686,1.90011894702911,-1.30578505992889,1.90197360515594,-1.24561357498169,1.96018350124359,-0.749599814414978,1.96030628681183,-0.692936897277832,-1.4327312707901,2.28649616241455,-1.43348002433777,2.35539960861206,-1.50906383991241,2.28648948669434,-1.50981962680817,2.35539245605469,-1.58793437480927,1.71202957630157,-1.58564984798431,1.66140949726105,-1.58776724338531,1.40092730522156,1.60806775093079,-0.596711039543152,1.61913537979126,-0.540980339050293,-1.53235304355621,1.40087759494781,2.01794767379761,-0.550200462341309,2.01966142654419,-0.606294512748718,-1.53820145130157,1.66129922866821,-1.53567373752594,1.71189284324646,-1.53379094600677,1.45413827896118,1.61125218868256,-0.320474088191986,1.61093509197235,-0.264728724956512,-1.58922159671783,1.45408415794373,
  642. 2.02557563781738,-0.276966989040375,2.01991176605225,-0.332714557647705,-1.5951315164566,1.65153336524963,-1.5289751291275,1.65142035484314,-1.52652680873871,1.39501786231995,1.63465642929077,0.0787190198898315,1.60971462726593,0.139044404029846,-1.52829039096832,1.45978009700775,2.03491926193237,0.077627420425415,2.02099251747131,0.137952715158463,-1.59775078296661,1.72198498249054,-1.52605450153351,1.72175133228302,1.59988451004028,-1.43710327148438,1.61581122875214,-1.37719368934631,-1.59329569339752,1.39500570297241,-1.59503161907196,1.45976495742798,2.02517771720886,-1.37610900402069,2.01437568664551,-1.4360191822052,-0.843839764595032,-0.140639543533325,-0.70216953754425,-0.140639543533325,1.35734987258911,0.143484264612198,1.36009299755096,-0.316523671150208,1.38887274265289,0.0831587314605713,1.37264633178711,-0.544616222381592,1.35354495048523,-0.600682377815247,1.36315011978149,-1.38160109519959,1.34591960906982,-1.44151091575623,1.35534501075745,-0.260455191135406,1.37299609184265,0.847207725048065,1.34754824638367,-1.31055080890656,1.37057304382324,0.793511569499969,1.34388852119446,-1.65008449554443,1.34411585330963,-1.71303510665894,1.35366177558899,-0.69322395324707,1.34720373153687,-1.24870276451111,1.3529372215271,-0.751787185668945,2.74003791809082,0.790501475334167,2.71260595321655,-1.30315458774567,2.74418687820435,0.732428789138794,2.71412563323975,-1.64536356925964,2.7441873550415,-1.70730638504028,2.74418687820435,-0.680751919746399,2.7441873550415,-1.23964262008667,2.74160003662109,-0.733235716819763,-0.70216953754425,-0.138808906078339,-0.703439593315125,-0.0653846859931946,2.73960828781128,0.141236573457718,2.73469734191895,-0.324106335639954,2.74418687820435,0.0809109807014465,2.72704887390137,-0.556046605110168,2.74418687820435,-0.612096190452576,2.7441873550415,-1.37936925888062,2.73233795166016,-1.4392796754837,2.74418687820435,-0.268327534198761,1.35376286506653,-0.460993111133575,1.60824537277222,-0.457022130489349,1.61931169033051,-0.401300430297852,1.37286138534546,-0.404935717582703,
  643. 1.38872873783112,-0.0478008985519409,1.6345386505127,-0.0522412061691284,1.60959410667419,0.00809076428413391,1.35720252990723,0.0125311315059662,1.5997713804245,-1.56806302070618,1.61570000648499,-1.50814747810364,1.36301374435425,-1.51255536079407,1.34578156471252,-1.57247114181519,-1.50165808200836,2.43417930603027,-1.44161629676819,2.43417930603027,-1.44319272041321,2.49196910858154,-1.50323402881622,2.49196910858154,-1.49491119384766,2.20526099205017,-1.49242603778839,2.15503311157227,-1.4399037361145,2.15965747833252,-1.44078397750854,2.20901775360107,1.35536742210388,-0.120765268802643,1.36011528968811,-0.176832914352417,1.61127007007599,-0.180783331394196,1.61095356941223,-0.125038683414459,-1.51437723636627,2.49735736846924,-1.51247107982636,2.42624092102051,2.72705173492432,-0.416364550590515,2.74418687820435,-0.472405195236206,2.74418687820435,-0.0500488877296448,-1.44067132472992,2.49731302261353,-1.43877220153809,2.42618036270142,2.73960781097412,0.0102831721305847,2.74418687820435,-0.128637611865997,2.7346978187561,-0.184415400028229,-0.45448249578476,-0.140462815761566,-0.454472184181213,-0.13495534658432,-0.458199381828308,-0.0703777074813843,-0.458199381828308,-0.0685470700263977,2.7441873550415,-1.51032328605652,2.732337474823,-1.57023954391479,2.01806116104126,-0.410519003868103,2.01977515220642,-0.46660441160202,2.03484439849854,-0.0533329248428345,2.02091550827026,0.00699889659881592,2.02558708190918,-0.137276828289032,2.01992297172546,-0.19302362203598,2.02510643005371,-1.50706267356873,2.01430368423462,-1.566978931427,-1.4601925611496,1.93419277667999,-1.45836341381073,1.88547241687775,-1.40073442459106,1.88544178009033,-1.3973103761673,1.93419277667999,-0.34956020116806,-1.43084013462067,-0.34956020116806,-1.36579358577728,-0.465843975543976,0.44081899523735,-0.465843975543976,0.442641347646713,-0.465843975543976,0.510764300823212,2.74418687820435,-0.820439696311951,2.74160003662109,-0.872925758361816,-0.465843975543976,0.51258647441864,2.71422433853149,-1.10341012477875,2.7441873550415,-1.16514992713928,
  644. -0.346623778343201,-1.15146517753601,-0.346623778343201,-1.08664453029633,2.74003791809082,0.607160151004791,2.74418687820435,0.549084067344666,-0.851072907447815,0.51258647441864,-0.0196518301963806,0.493263810873032,2.74418687820435,-0.960495352745056,2.7127103805542,-1.02379715442657,-0.759670615196228,-1.36385345458984,-0.0193278193473816,0.440819144248962,1.91148066520691,-1.1672956943512,1.90976440906525,-1.10724830627441,1.34847557544708,-1.10811567306519,1.34870195388794,-1.17085993289948,1.92559504508972,0.575730204582214,1.92726719379425,0.631868720054626,1.372931599617,0.663869082927704,1.37050831317902,0.610170066356659,1.90291035175323,-1.02641904354095,1.90475904941559,-0.96644651889801,1.35182404518127,-0.969525456428528,1.35216736793518,-1.03116869926453,1.35287237167358,-0.891477942466736,1.96014630794525,-0.889290452003479,1.96026980876923,-0.832624912261963,1.35359668731689,-0.832912445068359,2.34537649154663,-1.02843809127808,2.36206865310669,-0.966101288795471,2.37655854225159,0.564422905445099,2.37527942657471,0.622147798538208,2.36729955673218,-1.16305935382843,2.35134983062744,-1.10172522068024,2.39796018600464,-0.886943697929382,2.39886665344238,-0.833515286445618,-1.43158257007599,2.21908664703369,-1.50942051410675,2.22026300430298,-1.43107044696808,2.1528058052063,-1.49968492984772,2.14679861068726,-0.709021925926209,0.513017117977142,-0.849745273590088,0.51258647441864,-0.604300141334534,-1.08664453029633,-0.604300141334534,-1.15146517753601,-1.39186632633209,1.87614762783051,-1.38801109790802,1.94319951534271,-1.4674026966095,1.87624204158783,-1.46933531761169,1.94331514835358,-0.703305959701538,-0.0719655156135559,-0.843839764595032,-0.0685470700263977,-0.608134269714355,-1.36579358577728,-0.608134269714355,-1.43084013462067,-0.755316615104675,-1.01370775699615,-0.752572298049927,-1.01177453994751,-0.752572298049927,-0.946962714195251,-0.755316615104675,-0.945029735565186,-0.760843396186829,-1.2930896282196,-0.758090019226074,-1.29114961624146,-0.758090257644653,-1.22611713409424,-0.760843634605408,
  645. -1.22417747974396,-1.57774364948273,2.38469457626343,-1.59144699573517,2.42018604278564,-1.60565173625946,2.39296412467957,-1.62098300457001,2.41947603225708,-1.60592544078827,2.45197796821594,-1.64332139492035,2.43508148193359,-1.56801855564117,2.43508005142212,-1.63359701633453,2.38469576835632,-1.61350882053375,1.91413629055023,-1.58627355098724,1.92220640182495,-1.60013568401337,1.94877219200134,-1.5713118314743,1.94807887077332,-1.54951131343842,1.96330833435059,-1.58600628376007,1.9797979593277,-1.62299931049347,1.96330738067627,-1.55900180339813,1.91413700580597,-0.0104203820228577,0.0693067312240601,-0.274322748184204,0.0693067312240601,-0.274322748184204,0.00088164210319519,-0.0104203820228577,0.00088164210319519,-0.0206088423728943,0.659183502197266,-0.283336758613586,0.659183502197266,-0.281891286373138,0.592496573925018,-0.0206088423728943,0.59106308221817,0.126994490623474,-0.946962594985962,-0.15172016620636,-0.946962594985962,-0.15172016620636,-1.01177453994751,0.126994729042053,-1.01177453994751,0.124469369649887,-1.22611713409424,-0.155193686485291,-1.22611713409424,-0.155193686485291,-1.29114961624146,0.124469369649887,-1.29114961624146,-0.00847560167312622,0.0711372494697571,-0.00847560167312622,-0.000948727130889893,-0.00847560167312622,0.0347648561000824,-0.843241691589355,0.0693067312240601,-0.845840215682983,0.0711372494697571,-0.845840215682983,0.035094290971756,-0.845840215682983,-0.000948727130889893,-0.843241691589355,0.00088152289390564,0.129049092531204,-0.945029616355896,0.129049092531204,-1.01370763778687,0.126530468463898,-1.22417736053467,0.126530468463898,-1.29308938980103,-0.0186725258827209,0.661005735397339,-0.0186725258827209,0.589240789413452,-0.0186725258827209,0.621712386608124,-0.8497234582901,0.659183502197266,-0.852310180664063,0.661005735397339,-0.852310180664063,0.625122904777527,-0.852310180664063,0.589240789413452,-0.8497234582901,0.59106308221817,-0.0104203820228577,0.0711372494697571,-0.274322748184204,0.0711372494697571,-0.0104203820228577,-0.000948727130889893,-0.274322748184204,
  646. -0.000948727130889893,-0.0206088423728943,0.589240789413452,-0.281867921352386,0.584006905555725,-0.0206088423728943,0.661005735397339,-0.283336758613586,0.661005735397339,0.125854253768921,-1.29308938980103,-0.84457528591156,0.0711372494697571,-0.00913989543914795,-0.000948727130889893,-0.753953099250793,-0.945029735565186,-0.0193327665328979,0.589240789413452,-0.759475708007813,-1.22417747974396,-0.019656777381897,0.641683280467987,-0.851050496101379,0.661005735397339,-0.345323503017426,-0.946962714195251,-0.345323324203491,-1.01177453994751,-0.465834379196167,0.661005735397339,-0.465834379196167,0.659183502197266,-0.465834379196167,0.59106308221817,-0.465834379196167,0.589240789413452,-0.349455535411835,-1.22611713409424,-0.349455535411835,-1.29114961624146,-0.457636654376984,0.0711372494697571,-0.457636654376984,0.0693067312240601,-0.453909516334534,0.00473496317863464,-0.453919947147369,-0.000771760940551758,-0.708696603775024,0.59106308221817,-0.709158539772034,0.655173778533936,-0.8497234582901,0.589240789413452,-0.708696603775024,0.589240789413452,-0.607972860336304,-1.29114961624146,-0.607972860336304,-1.22611713409424,-0.843241691589355,0.0711372494697571,-0.702720999717712,0.0677190721035004,-0.702854752540588,0.0742993652820587,-0.701584219932556,0.00088164210319519,-0.701584219932556,-0.000948727130889893,-0.843241691589355,-0.000948727130889893,-0.602963924407959,-1.01177453994751,-0.602963924407959,-0.946962714195251,-0.8497234582901,0.661005735397339,-0.709004878997803,0.661436319351196,-0.751786470413208,-0.874016761779785,-0.749042987823486,-0.872084140777588,-0.749042987823486,-0.807286143302917,-0.751786470413208,-0.805353283882141,-0.562474966049194,-1.57247114181519,-0.559719681739807,-1.57053017616272,-0.559719920158386,-1.50545430183411,-0.562474966049194,-1.50351285934448,-1.5781272649765,2.64575147628784,-1.59183084964752,2.6812424659729,-1.60603606700897,2.65402126312256,-1.62136709690094,2.68053269386292,-1.60630929470062,2.71303510665894,-1.64370596408844,2.69613838195801,-1.56840264797211,
  647. 2.69613742828369,-1.63398087024689,2.64575242996216,-1.58697402477264,1.78522992134094,-1.55973899364471,1.79329991340637,-1.57360112667084,1.81986546516418,-1.54477679729462,1.81917297840118,-1.52297675609589,1.83440208435059,-1.55947124958038,1.85089159011841,-1.59646451473236,1.83440065383911,-1.5324672460556,1.78523087501526,-0.0109515190124512,-0.349729359149933,-0.274990975856781,-0.349729359149933,-0.274990737438202,-0.418190002441406,-0.0109515190124512,-0.418190002441406,-0.0190103650093079,0.362365245819092,-0.281825006008148,0.362365245819092,-0.280378937721252,0.295656144618988,-0.0190103650093079,0.294222116470337,0.130337983369827,-0.807286024093628,-0.148317933082581,-0.807286024093628,-0.148317933082581,-0.872084140777588,0.130338281393051,-0.872084140777588,0.323432743549347,-1.50545430183411,0.0435819029808044,-1.50545430183411,0.0435819029808044,-1.57053017616272,0.323432743549347,-1.57053017616272,-0.00900530815124512,-0.347898066043854,-0.00900506973266602,-0.420021295547485,-0.00900506973266602,-0.384289264678955,-0.84420645236969,-0.349729359149933,-0.846806049346924,-0.347898066043854,-0.846806049346924,-0.383959650993347,-0.846806049346924,-0.420021295547485,-0.84420645236969,-0.418190002441406,0.132392078638077,-0.805353045463562,0.132392078638077,-0.874016761779785,0.32549524307251,-1.50351285934448,0.32549524307251,-1.57247114181519,-0.0170732140541077,0.364188134670258,-0.0170732140541077,0.292399227619171,-0.0170732140541077,0.324881792068481,-0.84839928150177,0.362365245819092,-0.85098671913147,0.364188134670258,-0.85098671913147,0.32829350233078,-0.85098671913147,0.292399227619171,-0.84839928150177,0.29422202706337,-0.0109515190124512,-0.347898066043854,-0.274990975856781,-0.347898066043854,-0.0109515190124512,-0.420021295547485,-0.274990737438202,-0.420021295547485,-0.0190103650093079,0.292399227619171,-0.2803555727005,0.28716367483139,-0.0190103650093079,0.364188134670258,-0.281825006008148,0.364188134670258,0.324818998575211,-1.57247114181519,-0.845540642738342,-0.347898066043854,
  648. -0.0096701979637146,-0.420021295547485,-0.750423550605774,-0.805353283882141,-0.0177337527275085,0.292399227619171,-0.561106204986572,-1.50351285934448,-0.0180579423904419,0.344859421253204,-0.849727392196655,0.364188134670258,-0.341879963874817,-0.807286143302917,-0.341879963874817,-0.872084140777588,-0.464383244514465,0.364188134670258,-0.464383244514465,0.362365245819092,-0.464383244514465,0.294222116470337,-0.464383244514465,0.292399227619171,-0.150810480117798,-1.50545430183411,-0.150810480117798,-1.57053017616272,-0.458400309085846,-0.347898066043854,-0.458400309085846,-0.349729359149933,-0.454671263694763,-0.4143345952034,-0.454681873321533,-0.419844329357147,-0.70732569694519,0.29422202706337,-0.707787871360779,0.358354389667511,-0.84839928150177,0.292399227619171,-0.70732569694519,0.292399227619171,-0.409501373767853,-1.57053017616272,-0.409501373767853,-1.50545430183411,-0.84420645236969,-0.347898066043854,-0.703612685203552,-0.351317584514618,-0.703746318817139,-0.344734311103821,-0.702475547790527,-0.418190002441406,-0.702475547790527,-0.420021295547485,-0.84420645236969,-0.420021295547485,-0.59946596622467,-0.872084140777588,-0.59946596622467,-0.807286143302917,-0.84839928150177,0.364188134670258,-0.70763373374939,0.364618837833405,-0.849333643913269,-0.734325885772705,-0.846590638160706,-0.732393145561218,-0.846590638160706,-0.667595505714417,-0.849333643913269,-0.66566264629364,-0.562164306640625,-1.71303510665894,-0.559409141540527,-1.71109414100647,-0.559409260749817,-1.64601683616638,-0.562164545059204,-1.64407587051392,-1.5781272649765,2.51522302627563,-1.59183084964752,2.55071449279785,-1.60603559017181,2.52349281311035,-1.62136709690094,2.55000448226929,-1.60630929470062,2.58250665664673,-1.64370548725128,2.5656099319458,-1.56840264797211,2.56560897827148,-1.63398063182831,2.51522445678711,-1.62706029415131,2.04304337501526,-1.59982454776764,2.05111360549927,-1.61368668079376,2.07767987251282,-1.58486235141754,2.07698655128479,-1.56306183338165,2.09221649169922,-1.59955751895905,2.10870623588562,
  649. -1.6365510225296,2.0922155380249,-1.57255208492279,2.043044090271,-0.0109515190124512,-0.210038840770721,-0.274989485740662,-0.210038840770721,-0.274989426136017,-0.278499126434326,-0.0109515190124512,-0.278499007225037,-0.0190103650093079,0.213945031166077,-0.281830072402954,0.213945031166077,-0.280383884906769,0.147234916687012,-0.0190103650093079,0.145800769329071,0.0327848196029663,-0.667595386505127,-0.245869517326355,-0.667595386505127,-0.245868921279907,-0.732393145561218,0.0327850580215454,-0.732393145561218,0.323757320642471,-1.64601683616638,0.0439021289348602,-1.64601683616638,0.0439021289348602,-1.71109414100647,0.323757320642471,-1.71109414100647,-0.00900530815124512,-0.208207547664642,-0.00900506973266602,-0.280330419540405,-0.00900506973266602,-0.244598746299744,-0.844201803207397,-0.210038840770721,-0.84680163860321,-0.208207547664642,-0.84680163860321,-0.244269013404846,-0.84680163860321,-0.280330419540405,-0.844201803207397,-0.278499364852905,0.0348387062549591,-0.66566264629364,0.0348388850688934,-0.734325885772705,0.325820326805115,-1.64407587051392,0.325820326805115,-1.71303510665894,-0.0170732140541077,0.215767800807953,-0.0170732140541077,0.143977761268616,-0.0170732140541077,0.176460802555084,-0.848415017127991,0.213945031166077,-0.851002931594849,0.215767800807953,-0.851002931594849,0.179872542619705,-0.851002931594849,0.143977761268616,-0.848415017127991,0.14580050110817,-0.0109515190124512,-0.208207547664642,-0.274989485740662,-0.208207547664642,-0.0109515190124512,-0.280330419540405,-0.274989426136017,-0.280330419540405,-0.0190103650093079,0.143977761268616,-0.280360698699951,0.138742297887802,-0.0190103650093079,0.215767800807953,-0.281830072402954,0.215767800807953,0.32514351606369,-1.71303510665894,-0.84553587436676,-0.208207547664642,-0.0096701979637146,-0.280330419540405,-0.847970604896545,-0.66566264629364,-0.0177337527275085,0.143977761268616,-0.560795545578003,-1.64407587051392,-0.0180577039718628,0.196439057588577,-0.849743247032166,0.215767800807953,-0.439430058002472,-0.667595505714417,
  650. -0.439429819583893,-0.732393145561218,-0.464391708374023,0.215767800807953,-0.464391708374023,0.213945031166077,-0.464391708374023,0.145800769329071,-0.464391708374023,0.143977761268616,-0.150493502616882,-1.64601683616638,-0.150493502616882,-1.71109414100647,-0.458397686481476,-0.208207547664642,-0.458397686481476,-0.210038840770721,-0.454668939113617,-0.274643778800964,-0.454679191112518,-0.280153453350067,-0.70733916759491,0.14580050110817,-0.707801103591919,0.209934234619141,-0.848415017127991,0.143977761268616,-0.70733916759491,0.143977761268616,-0.409188270568848,-1.71109414100647,-0.409188508987427,-1.64601683616638,-0.844201803207397,-0.208207547664642,-0.703608512878418,-0.211627423763275,-0.703742027282715,-0.205043792724609,-0.702471256256104,-0.278499126434326,-0.702471256256104,-0.280330419540405,-0.844201803207397,-0.280330419540405,-0.697014808654785,-0.732393145561218,-0.697014808654785,-0.667595505714417,-0.848415017127991,0.215767800807953,-0.707647442817688,0.216198474168777,-0.756673693656921,-1.15339851379395,-0.753929138183594,-1.15146517753601,-0.753929138183594,-1.08664453029633,-0.756673693656921,-1.08471119403839,-0.761038899421692,-1.4327803850174,-0.7582848072052,-1.43084025382996,-0.7582848072052,-1.36579358577728,-0.761038899421692,-1.36385345458984,-1.44918155670166,2.5658712387085,-1.46288549900055,2.60136342048645,-1.47709095478058,2.57414054870605,-1.49242198467255,2.60065293312073,-1.47736430168152,2.63315653800964,-1.51476085186005,2.6162588596344,-1.43945646286011,2.6162576675415,-1.50503623485565,2.56587243080139,-1.62746059894562,2.17195177078247,-1.60022437572479,2.1800217628479,-1.61408722400665,2.20658779144287,-1.58526217937469,2.20589518547058,-1.56346070766449,2.22112464904785,-1.5999573469162,2.23761510848999,-1.63695132732391,2.22112369537354,-1.57295191287994,2.17195224761963,-0.0109425187110901,-0.0703777074813843,-0.274868845939636,-0.0703777074813843,-0.274868845939636,-0.138808906078339,-0.0109425187110901,-0.138808906078339,-0.0206040143966675,0.510764300823212,
  651. -0.283340096473694,0.510764300823212,-0.281894564628601,0.444075167179108,-0.0206040143966675,0.442641347646713,0.12575963139534,-1.08664429187775,-0.152993857860565,-1.08664429187775,-0.152993559837341,-1.15146517753601,0.12575963139534,-1.15146517753601,0.124469071626663,-1.36579358577728,-0.155255615711212,-1.36579358577728,-0.155255615711212,-1.43084013462067,0.124469071626663,-1.43084013462067,-0.00899720191955566,-0.0685470700263977,-0.00899696350097656,-0.140639543533325,-0.00899696350097656,-0.104922771453857,-0.843839764595032,-0.0703777074813843,-0.846438527107239,-0.0685470700263977,-0.846438527107239,-0.104593276977539,-0.846438527107239,-0.140639543533325,-0.843839764595032,-0.138809025287628,0.12781423330307,-1.08471071720123,0.12781423330307,-1.15339851379395,0.126530468463898,-1.36385333538055,0.126530468463898,-1.43278014659882,-0.0186676383018494,0.51258647441864,-0.0186676383018494,0.440819144248962,-0.0186676383018494,0.473291873931885,-0.849745273590088,0.510764300823212,-0.85233211517334,0.51258647441864,-0.85233211517334,0.476702719926834,-0.85233211517334,0.44081899523735,-0.849745273590088,0.442641258239746,-0.0109425187110901,-0.0685470700263977,-0.274868845939636,-0.0685470700263977,-0.0109425187110901,-0.140639543533325,-0.274868845939636,-0.140639543533325,-0.0206040143966675,0.440819144248962,-0.281871497631073,0.435585170984268,-0.0206040143966675,0.51258647441864,-0.283340096473694,0.51258647441864,0.125853955745697,-1.43278014659882,-0.845173239707947,-0.0685470700263977,-0.00966173410415649,-0.140639543533325,-0.75530993938446,-1.08471119403839,-1.47047686576843,1.17225396633148,-1.47410547733307,1.16896224021912,-1.3807407617569,1.17190337181091,-1.3854740858078,1.17810225486755,-1.3868271112442,1.19553518295288,-1.38270545005798,1.20213222503662,-1.47460675239563,1.19644784927368,-1.47027480602264,1.19133174419403,0.182593762874603,-1.13896954059601,0.181455701589584,-1.24407255649567,0.699083924293518,-1.24643564224243,0.699799418449402,-1.14061117172241,0.182690262794495,-0.970623016357422,
  652. 0.183838427066803,-1.07572448253632,0.701056659221649,-1.07402050495148,0.700329840183258,-0.968201637268066,1.40643835067749,1.25816917419434,1.40638208389282,1.23322415351868,2.02916288375854,1.23175930976868,2.02922081947327,1.25670433044434,2.02981019020081,1.42359352111816,2.0297532081604,1.44853854179382,1.40748429298401,1.44709742069244,1.40754199028015,1.4221522808075,-1.58062183856964,-0.315253376960754,-1.46015381813049,-0.315253376960754,-1.462641954422,-0.310037732124329,-1.57811152935028,-0.310039460659027,-1.46015381813049,-0.291834890842438,-1.58061611652374,-0.291834890842438,-1.57810699939728,-0.297048330307007,-1.4626396894455,-0.297049164772034,1.29483413696289,-1.07206416130066,1.29459083080292,-0.965421676635742,2.74412870407104,1.23007655143738,2.74418687820435,1.25502228736877,1.29333186149597,-1.24914836883545,1.29356217384338,-1.14249503612518,2.74418687820435,1.42524874210358,2.74413061141968,1.45019388198853,-1.5224746465683,-0.713221311569214,-1.52713167667389,-0.716864585876465,-1.39817893505096,-0.712037682533264,-1.40392351150513,-0.70506489276886,-1.40532839298248,-0.685706853866577,-1.40034925937653,-0.678194046020508,-1.52806341648102,-0.686733484268188,-1.52267420291901,-0.692396521568298,1.41327834129334,2.65788078308105,1.41226637363434,2.53625655174255,2.26121377944946,2.53238081932068,2.26179075241089,2.64719128608704,0.0307369530200958,2.52741360664368,0.0321096479892731,2.40175843238831,0.890361309051514,2.41562271118164,0.889941334724426,2.53001475334167,1.41179895401001,2.36729621887207,1.41172218322754,2.34234762191772,2.26139354705811,2.3403491973877,2.26145267486572,2.36367464065552,0.876259982585907,2.68749809265137,0.876205921173096,2.71082234382629,0.0271717011928558,2.70961737632751,0.0272287428379059,2.68476986885071,-1.56802260875702,-0.612096548080444,-1.43978130817413,-0.610964417457581,-1.44176292419434,-0.606274962425232,-1.56601107120514,-0.607027769088745,-1.4397759437561,-0.581708550453186,-1.56801474094391,-0.580561399459839,-1.5660046339035,-0.585628747940063,
  653. -1.44175732135773,-0.586395859718323,1.35799145698547,2.40639543533325,1.35808110237122,2.52891945838928,2.74416923522949,2.33887338638306,2.74418640136719,2.36439657211304,2.74408578872681,2.53094911575317,2.74418640136719,2.65717029571533,1.35862493515015,2.68751955032349,1.35856568813324,2.71303510665894,-1.56382167339325,0.26461198925972,-1.56837260723114,0.260971665382385,-1.46540093421936,0.264168798923492,-1.47110641002655,0.270990967750549,-1.47256469726563,0.290203273296356,-1.46753811836243,0.297506332397461,-1.56889593601227,0.291222870349884,-1.56362044811249,0.285607218742371,1.41032123565674,2.07440042495728,1.40886533260345,1.97828125953674,2.74418687820435,1.9721851348877,2.74065113067627,2.0682578086853,1.40885257720947,1.90591728687286,1.40990257263184,1.80979835987091,2.7402515411377,1.81036341190338,2.74418687820435,1.90641808509827,1.40884804725647,1.64250612258911,1.40878438949585,1.61736857891083,2.74413394927979,1.61422765254974,2.74418687820435,1.63936483860016,2.74418640136719,2.24576854705811,2.74412870407104,2.27094554901123,1.41168141365051,2.26770305633545,1.41173911094666,2.24283623695374,-1.57067334651947,0.57527631521225,-1.47087490558624,0.576831579208374,-1.47281539440155,0.581439316272736,-1.56842839717865,0.580355942249298,-1.47086703777313,0.605779349803925,-1.57066571712494,0.607350945472717,-1.5684210062027,0.602271318435669,-1.47280848026276,0.60117381811142,-1.46752882003784,1.49343419075012,-1.4728045463562,1.49731826782227,-1.47028982639313,1.4658055305481,-1.46537113189697,1.47079873085022,-1.38154244422913,1.46981811523438,-1.38737320899963,1.4747166633606,-1.38765370845795,1.49683976173401,-1.36537563800812,1.27692580223084,-1.36183619499207,1.27373027801514,-1.36189019680023,1.30451619625092,-1.36544227600098,1.30123209953308,-1.44896352291107,1.27840065956116,-1.45364081859589,1.27442038059235,-1.45368790626526,1.3040030002594,-1.44899380207062,1.29992270469666,-1.57714307308197,-0.512436389923096,-1.58161342144012,-0.516059041023254,-1.45963096618652,-0.510258078575134,
  654. -1.46560049057007,-0.504380822181702,-1.50310325622559,-0.505993723869324,-1.55004847049713,-0.504446864128113,-1.46565163135529,-0.486789345741272,-1.50104796886444,-0.485554695129395,-1.45964860916138,-0.480973660945892,-1.58182442188263,-0.477031350135803,-1.57691657543182,-0.482940256595612,-1.55516612529755,-0.4850133061409,0.029792457818985,2.24849152565002,0.0297427177429199,2.22316598892212,0.619972407817841,2.22174310684204,0.619976222515106,2.24772357940674,0.0460166931152344,0.0324758291244507,0.0492596626281738,-0.0572719573974609,0.607606649398804,-0.0608596205711365,0.607026696205139,0.0309698283672333,0.0471788942813873,-0.132201313972473,0.044644832611084,-0.222104787826538,0.605858206748962,-0.216077208518982,0.60609894990921,-0.124191761016846,0.0298317074775696,1.04902005195618,0.0298564732074738,1.02395486831665,0.74430114030838,1.0238276720047,0.74288272857666,1.05130124092102,1.38079655170441,1.16440415382385,1.37696480751038,1.07686257362366,2.13369035720825,1.07468223571777,2.13580298423767,1.16274499893188,-1.38235855102539,1.50163888931274,0.0321463346481323,1.97596764564514,0.0305706262588501,1.85657358169556,0.532996714115143,1.85427987575531,0.534994840621948,1.97305822372437,0.0340882837772369,1.42267084121704,0.0354473292827606,1.29824995994568,0.53582376241684,1.30345058441162,0.533564865589142,1.42172396183014,0.0336785018444061,1.69926595687866,0.033616840839386,1.67408514022827,0.535717248916626,1.67290365695953,0.535780072212219,1.69804084300995,0.622020244598389,1.48886120319366,0.622074902057648,1.51483845710754,0.0330866277217865,1.51587784290314,0.033034473657608,1.49048590660095,-1.49814116954803,1.00092768669128,-1.49848818778992,0.971013307571411,-1.49549412727356,0.975541710853577,-1.49507701396942,0.995340824127197,-1.40460133552551,0.968157172203064,-1.40747570991516,0.972796440124512,-1.40352642536163,0.997066915035248,-1.40674722194672,0.99262011051178,2.13433861732483,0.917914211750031,2.13224029541016,1.00571918487549,1.37364029884338,1.00355386734009,1.37751436233521,
  655. 0.91577285528183,0.744062960147858,0.654374122619629,0.744853675365448,0.680796802043915,0.0349822342395782,0.679620921611786,0.0349686741828918,0.656695425510406,-1.43216001987457,0.776081502437592,-1.4321722984314,0.803716421127319,-1.43613302707672,0.800880372524261,-1.43611812591553,0.778924584388733,-1.53115212917328,0.77610856294632,-1.52728593349457,0.778937101364136,-1.52729284763336,0.800853133201599,-1.53115808963776,0.803689181804657,0.533225893974304,2.04015898704529,0.533167481422424,2.06534218788147,0.0294613838195801,2.06395435333252,0.0295184552669525,2.03921294212341,-1.58152139186859,-0.4112908244133,-1.45963656902313,-0.410025000572205,-1.46166348457336,-0.405377924442291,-1.57965528964996,-0.406182825565338,-1.4596312046051,-0.380859434604645,-1.58151352405548,-0.379573881626129,-1.57964909076691,-0.384680807590485,-1.46165835857391,-0.385504543781281,1.3537871837616,1.48750352859497,1.35384321212769,1.51288747787476,1.30096316337585,-0.0609084367752075,1.30356121063232,0.0288333892822266,1.35603606700897,2.22308564186096,1.35600030422211,2.24850559234619,1.30170392990112,-0.213901579380035,1.2991007566452,-0.124153316020966,2.74418687820435,0.919639647006989,2.74351930618286,1.00746476650238,1.31999945640564,1.02372539043427,1.31745839118958,1.05313873291016,2.74345827102661,1.07292532920837,2.74418687820435,1.16140806674957,1.31545007228851,0.652503490447998,1.31686687469482,0.681743800640106,1.35274076461792,1.30682992935181,1.34925675392151,1.42425894737244,1.35507845878601,1.6707421541214,1.35514295101166,1.69585275650024,1.35220837593079,1.85510194301605,1.35521149635315,1.97304701805115,1.35522413253784,2.04207634925842,1.35516595840454,2.0672333240509,-1.4896320104599,1.06748569011688,-1.49326086044312,1.06419479846954,-1.39989352226257,1.0671352148056,-1.40462648868561,1.0733345746994,-1.40598022937775,1.0907678604126,-1.40185797214508,1.09736609458923,-1.49376213550568,1.09168076515198,-1.48943030834198,1.08656406402588,0.181309968233109,-1.31239354610443,0.180171936750412,-1.4174964427948,
  656. 0.697800099849701,-1.41985952854156,0.69851541519165,-1.31403481960297,0.18603327870369,-0.797074913978577,0.187181055545807,-0.902176856994629,0.704402387142181,-0.900472640991211,0.703675270080566,-0.794653534889221,1.40643835067749,1.35420739650726,1.4063823223114,1.32926177978516,2.02916383743286,1.32779669761658,2.02922081947327,1.35274171829224,2.02981233596802,1.51963090896606,2.02975511550903,1.5445761680603,1.40748727321625,1.54313492774963,1.4075448513031,1.51818943023682,-1.5806211233139,-0.227946639060974,-1.46015334129334,-0.227946639060974,-1.462641954422,-0.222730875015259,-1.57811081409454,-0.222732543945313,-1.46015334129334,-0.204528033733368,-1.58061516284943,-0.204528033733368,-1.57810628414154,-0.209741413593292,-1.4626396894455,-0.209742307662964,1.29818272590637,-0.898516535758972,1.29793965816498,-0.791873455047607,2.74412870407104,1.32611417770386,2.74418687820435,1.35105991363525,1.29204797744751,-1.42257213592529,1.29227828979492,-1.3159191608429,2.74418687820435,1.52128660678864,2.74413061141968,1.54623138904572,-1.57885539531708,-0.0325307250022888,-1.5831264257431,-0.035871684551239,-1.4648768901825,-0.0314452052116394,-1.47014379501343,-0.0250510573387146,-1.47143256664276,-0.00729966163635254,-1.46686613559723,-0.000410377979278564,-1.5839809179306,-0.00824117660522461,-1.57903897762299,-0.0134344100952148,0.0858281254768372,-0.432597398757935,0.0849050581455231,-0.543544769287109,0.859327554702759,-0.547080039978027,0.859854161739349,-0.442348062992096,0.0884801745414734,-0.614003896713257,0.08973228931427,-0.728628158569336,0.872637629508972,-0.715980768203735,0.872254252433777,-0.611631274223328,1.41180086135864,2.46333360671997,1.41172432899475,2.43838548660278,2.26139450073242,2.43638634681702,2.26145339012146,2.45971250534058,0.876270294189453,2.59598827362061,0.876215994358063,2.61931180953979,0.027199387550354,2.61810684204102,0.0272567272186279,2.59326028823853,-1.5829690694809,0.164934068918228,-1.46540594100952,0.165971726179123,-1.46722233295441,0.17027086019516,-1.5811253786087,
  657. 0.169580489397049,-1.46540093421936,0.192791759967804,-1.58296191692352,0.193843394517899,-1.58111941814423,0.189197719097137,-1.46721708774567,0.1884945333004,1.29921436309814,-0.724398374557495,1.29929614067078,-0.612630486488342,2.74416923522949,2.43491101264954,2.74418640136719,2.46043395996094,1.29981160163879,-0.548386454582214,1.29990363121033,-0.433245241641998,1.35862493515015,2.5960099697113,1.35856568813324,2.62152528762817,-1.56537854671478,0.674809396266937,-1.56974852085114,0.67131382226944,-1.47086703777313,0.674383640289307,-1.47634625434875,0.680934846401215,-1.47774648666382,0.699384212493896,-1.47291934490204,0.7063969373703,-1.57025134563446,0.700362801551819,-1.56518495082855,0.694970548152924,0.0379621088504791,0.341024577617645,0.036568284034729,0.249000698328018,0.85735946893692,0.245253801345825,0.855684995651245,0.337248921394348,0.0370827913284302,0.496293425559998,0.0380879640579224,0.404269635677338,0.855825364589691,0.404617190361023,0.857884645462036,0.496601223945618,1.40885865688324,1.73854303359985,1.4087952375412,1.71340560913086,2.26612567901611,1.71138870716095,2.26618266105652,1.73652613162994,2.26649618148804,2.14868402481079,2.26643800735474,2.17378807067871,1.40967774391174,2.17170333862305,1.40973544120789,2.14679861068726,-1.52799355983734,0.872119665145874,-1.4321676492691,0.873612403869629,-1.43403124809265,0.878037393093109,-1.52583754062653,0.876996874809265,-1.43216001987457,0.901408672332764,-1.52798593044281,0.902917385101318,-1.52583062648773,0.898040413856506,-1.43402397632599,0.89698588848114,-1.45086562633514,1.79686439037323,-1.45573163032532,1.80044674873352,-1.45341217517853,1.7713794708252,-1.44887542724609,1.77598512172699,-1.37155055999756,1.77508056163788,-1.37692868709564,1.77959907054901,-1.37718772888184,1.80000591278076,-1.47428727149963,0.473986625671387,-1.47043371200562,0.470507711172104,-1.47049272060394,0.504022300243378,-1.4743595123291,0.500447511672974,-1.56528389453888,0.4755919277668,-1.57037580013275,0.471258610486984,-1.57042753696442,0.503464043140411,
  658. -1.5653167963028,0.499021857976913,-1.57502806186676,-0.137103259563446,-1.57939183712006,-0.140639662742615,-1.46031033992767,-0.13497668504715,-1.46613764762878,-0.129239439964294,-1.50274860858917,-0.130813717842102,-1.5485771894455,-0.129303693771362,-1.46618807315826,-0.112066030502319,-1.50074219703674,-0.110860824584961,-1.4603271484375,-0.106388747692108,-1.5795978307724,-0.102540075778961,-1.57480680942535,-0.108308553695679,-1.55357325077057,-0.110332250595093,0.0317910611629486,2.33849883079529,0.0317413210868835,2.31317377090454,0.62197345495224,2.31175184249878,0.621977090835571,2.33773136138916,1.3686363697052,0.31073471903801,1.37218344211578,0.212565243244171,1.98292481899261,0.208640873432159,1.98229050636292,0.309087574481964,1.37193894386292,0.4728102684021,1.36916732788086,0.374470621347427,1.98304426670074,0.381063461303711,1.98330760002136,0.481571346521378,0.029836893081665,0.956362247467041,0.0298615694046021,0.931296408176422,0.744303226470947,0.931169211864471,0.742884755134583,0.958642244338989,0.0481549799442291,-0.28534984588623,0.0446366965770721,-0.365736901760101,0.739517986774445,-0.367739021778107,0.741458535194397,-0.286873042583466,-1.37230360507965,1.80443274974823,0.0336060523986816,1.23500466346741,0.0320697724819183,1.1186192035675,0.521832406520844,1.11638331413269,0.523780107498169,1.23216807842255,0.0315142273902893,0.866273880004883,0.032839298248291,0.744989037513733,0.520604193210602,0.750059485435486,0.518402218818665,0.865351557731628,0.033688873052597,1.7910350561142,0.0336271226406097,1.76585400104523,0.535727620124817,1.76467263698578,0.53579044342041,1.78980982303619,0.622018098831177,1.58048069477081,0.622072994709015,1.60645794868469,0.0330804288387299,1.60749745368958,0.0330282151699066,1.58210563659668,-1.57330977916718,0.401372462511063,-1.57368695735931,0.368845462799072,-1.57043182849884,0.373769581317902,-1.56997787952423,0.395297586917877,-1.47160172462463,0.365739583969116,-1.47472751140594,0.370784163475037,-1.47043371200562,0.397174447774887,-1.47393536567688,
  659. 0.392339080572128,0.743698716163635,0.0976872742176056,0.741771936416626,0.178317010402679,0.0451661944389343,0.17632845044136,0.048723042011261,0.0957211256027222,0.744065165519714,0.561888575553894,0.744855880737305,0.588311195373535,0.0349874198436737,0.587135434150696,0.0349738299846649,0.564209878444672,-1.38154244422913,1.36976790428162,-1.38155341148376,1.39526605606079,-1.38520765304565,1.39264965057373,-1.38519442081451,1.37239098548889,-1.47288012504578,1.36979246139526,-1.46931278705597,1.37240290641785,-1.46931970119476,1.39262461662292,-1.47288584709167,1.3952409029007,0.533224761486053,2.13142466545105,0.533166348934174,2.15660738945007,0.029459685087204,2.15521955490112,0.0295168459415436,2.13047885894775,-1.58385407924652,0.0688965618610382,-1.46488177776337,0.0701320767402649,-1.46686017513275,0.0746681690216064,-1.58203256130219,0.0738826990127563,-1.4648768901825,0.0986005961894989,-1.58384644985199,0.0998555123806,-1.58202636241913,0.0948706567287445,-1.46685552597046,0.0940666198730469,1.35379016399384,1.57912313938141,1.35384583473206,1.60450649261475,2.74134540557861,0.208587795495987,2.74418687820435,0.306750655174255,1.35804009437561,2.31309270858765,1.35800421237946,2.33851361274719,2.74418687820435,0.383443713188171,2.74133968353271,0.481613785028458,1.30370843410492,0.0992717444896698,1.30309545993805,0.179919630289078,1.31999945640564,0.931067049503326,1.31745791435242,0.960480213165283,1.29945254325867,-0.369352340698242,1.30012178421021,-0.288100719451904,1.31544971466064,0.560018420219421,1.31686639785767,0.589258193969727,1.31693184375763,0.753352701663971,1.31353580951691,0.86782169342041,1.35508918762207,1.76251137256622,1.35515356063843,1.78762125968933,1.32039618492126,1.11718463897705,1.32332336902618,1.23215699195862,1.35522413253784,2.13334155082703,1.35516595840454,2.15849852561951,1.31175804138184,0.404810965061188,1.31552588939667,0.496772885322571,2.74413394927979,1.71026456356049,2.74418687820435,1.73540103435516,1.31499552726746,0.243164509534836,1.31160974502563,0.335143595933914,
  660. 2.74418640136719,2.14973497390747,2.74412775039673,2.17495012283325,-1.07804369926453,-0.995602369308472,-1.07825028896332,-0.950839877128601,-1.24923431873322,-0.952141165733337,-1.24940323829651,-0.997005343437195,-1.12187552452087,1.53656339645386,-1.12066102027893,1.59708189964294,-1.32593953609467,1.60600507259369,-1.32790100574493,1.54568946361542,-1.17110514640808,-0.772181749343872,-1.17260646820068,-0.72735869884491,-1.34453773498535,-0.730167865753174,-1.3422577381134,-0.775075912475586,-1.26565849781036,1.79490566253662,-1.0594162940979,1.79387354850769,-1.05993354320526,1.85486388206482,-1.26685953140259,1.8552508354187,-0.796284437179565,1.53430712223053,-0.79513144493103,1.59212279319763,-0.808958411216736,-0.991926789283752,-0.80940854549408,-0.949285268783569,-0.731627345085144,1.79589951038361,-0.731715083122253,1.85182118415833,-0.902975559234619,-0.765127182006836,-0.903874278068542,-0.722647190093994,-1.68558466434479,-0.198521137237549,-1.63426268100739,-0.198521137237549,-1.63426268100739,-0.158804595470428,-1.68558466434479,-0.158804595470428,-1.61181652545929,1.03656685352325,-1.6056524515152,0.995147347450256,-1.55212914943695,0.998897850513458,-1.55829298496246,1.0403174161911,-1.21816027164459,0.416694492101669,-1.21827781200409,0.471372276544571,-1.41679191589355,0.470224499702454,-1.41668307781219,0.417541742324829,-1.21483254432678,0.0528415739536285,-1.21361148357391,0.101601749658585,-1.41008651256561,0.104595005512238,-1.41123533248901,0.058373898267746,-1.21812331676483,0.658968329429626,-1.21873092651367,0.713643431663513,-1.41722583770752,0.710163176059723,-1.41663634777069,0.657483160495758,-1.38608276844025,-0.539436340332031,-1.18958914279938,-0.541104674339294,-1.18965351581573,-0.492328703403473,-1.38613450527191,-0.493200480937958,-0.90597939491272,0.0441420078277588,-0.90464460849762,0.0968949198722839,-0.905973792076111,0.415361821651459,-0.906104326248169,0.473177492618561,-0.88059413433075,-0.543728232383728,-0.880676627159119,-0.490957677364349,-0.905951499938965,0.661304235458374,
  661. -0.906587719917297,0.719115972518921,-1.15104806423187,0.90857321023941,-1.15116512775421,0.963307499885559,-1.34988558292389,0.96215832233429,-1.34977614879608,0.90942120552063,-1.21513736248016,0.300309777259827,-1.21391475200653,0.349120318889618,-1.4105931520462,0.352116763591766,-1.4117431640625,0.30584791302681,-1.12779033184052,1.15096688270569,-1.12839877605438,1.20569860935211,-1.32709956169128,1.20221447944641,-1.32650911808014,1.14947998523712,-1.40645587444305,-0.191330254077911,-1.20975887775421,-0.193000257015228,-1.20982301235199,-0.144173502922058,-1.40650796890259,-0.14504611492157,-0.905964493751526,0.291601240634918,-0.904628276824951,0.34440889954567,-0.838537573814392,0.907239079475403,-0.838668346405029,0.96511447429657,-0.900442719459534,-0.195626437664032,-0.90052592754364,-0.14280116558075,-0.815294861793518,1.1533043384552,-0.815931558609009,1.211177110672,-1.63530147075653,0.878833293914795,-1.5816353559494,0.884315669536591,-1.58649432659149,0.931902050971985,-1.64016115665436,0.926422953605652,-1.68895328044891,0.161906898021698,-1.68895328044891,0.116276890039444,-1.63749516010284,0.116276890039444,-1.63749516010284,0.161906898021698,-1.68447172641754,0.446654319763184,-1.63065707683563,0.442900955677032,-1.62732827663422,0.490618944168091,-1.68114364147186,0.494373887777328,-1.6787873506546,0.379656046628952,-1.6787873506546,0.334026455879211,-1.62732827663422,0.334026455879211,-1.62732827663422,0.379656046628952,-1.07804369926453,-0.884637713432312,-1.07825028896332,-0.839875340461731,-1.24923431873322,-0.841176629066467,-1.24940323829651,-0.886040449142456,-1.12187552452087,1.40162038803101,-1.12066102027893,1.46213889122009,-1.32593953609467,1.47106170654297,-1.32790100574493,1.41074657440186,-1.17110514640808,-0.656508088111877,-1.17260646820068,-0.611685276031494,-1.34453773498535,-0.614494442939758,-1.34225845336914,-0.659402012825012,-1.31670820713043,1.67028248310089,-1.11046576499939,1.66925001144409,-1.11098253726959,1.73024046421051,-1.31790900230408,1.73062801361084,-0.796284437179565,
  662. 1.39936375617981,-0.79513144493103,1.45718002319336,-0.808958411216736,-0.880962133407593,-0.80940854549408,-0.838320851325989,-0.782676815986633,1.67127656936646,-0.782764792442322,1.72719848155975,-0.902975559234619,-0.64945387840271,-0.903874278068542,-0.606973528862,-1.68894469738007,-0.0955595970153809,-1.63762247562408,-0.0955595970153809,-1.63762247562408,-0.0558430552482605,-1.68894469738007,-0.0558430552482605,-1.60709035396576,1.14498162269592,-1.6009269952774,1.10356211662292,-1.547403216362,1.10731244087219,-1.55356729030609,1.14873206615448,-1.21816074848175,0.537755131721497,-1.21827781200409,0.592433571815491,-1.41679263114929,0.591285407543182,-1.41668343544006,0.538602530956268,-1.21026647090912,-0.0708566308021545,-1.20904541015625,-0.0220966339111328,-1.40552008152008,-0.0191033482551575,-1.40666890144348,-0.0653241872787476,-1.1794159412384,0.783846437931061,-1.1800240278244,0.838521003723145,-1.37851893901825,0.835040867328644,-1.37792944908142,0.782361388206482,-1.40593814849854,-0.423420548439026,-1.20944380760193,-0.425089061260223,-1.20950818061829,-0.376312971115112,-1.40598976612091,-0.377184689044952,-0.901414513587952,-0.0795561075210571,-0.900079965591431,-0.0268031358718872,-0.905973792076111,0.536422669887543,-0.906104326248169,0.59423828125,-0.900447368621826,-0.427712678909302,-0.900530576705933,-0.374941766262054,-0.867243885993958,0.786181926727295,-0.867880344390869,0.84399425983429,-1.14741408824921,1.02969396114349,-1.14753186702728,1.08442831039429,-1.34625208377838,1.08327901363373,-1.34614217281342,1.03054201602936,-1.21515369415283,0.17654886841774,-1.21393120288849,0.225359469652176,-1.41060960292816,0.228355884552002,-1.41175985336304,0.182087004184723,-1.10888612270355,1.2759085893631,-1.10949420928955,1.33064031600952,-1.30819463729858,1.32715654373169,-1.30760490894318,1.2744220495224,-1.40646028518677,-0.307400465011597,-1.2097635269165,-0.309070467948914,-1.20982766151428,-0.260243713855743,-1.40651297569275,-0.261116504669189,-0.905980706214905,0.167840361595154,-0.90464460849762,
  663. 0.220647990703583,-0.834903717041016,1.02835941314697,-0.835034489631653,1.08623480796814,-0.900447368621826,-0.311696708202362,-0.900530576705933,-0.258871376514435,-0.796390056610107,1.27824640274048,-0.797026991844177,1.3361189365387,-1.67755854129791,0.762519836425781,-1.62389266490936,0.768002092838287,-1.62875211238861,0.815588474273682,-1.68241846561432,0.810108661651611,-1.68908035755157,0.0530318021774292,-1.68908035755157,0.00740182399749756,-1.63762247562408,0.00740182399749756,-1.63762247562408,0.0530318021774292,-1.6814581155777,0.561372697353363,-1.62764346599579,0.557618916034698,-1.62431490421295,0.60533732175827,-1.67812979221344,0.609092175960541,-1.68806993961334,0.270781368017197,-1.68806993961334,0.22515207529068,-1.63661062717438,0.22515207529068,-1.63661062717438,0.270781368017197,-1.46726310253143,1.59644556045532,-1.47241342067719,1.60011458396912,-1.47032523155212,1.5705738067627,-1.46563899517059,1.57540607452393,-1.38154244422913,1.57604050636292,-1.38726794719696,1.58084762096405,-1.38798224925995,1.59982526302338,-0.813602685928345,0.755255460739136,-0.813587546348572,0.739851355552673,-0.374595403671265,0.734353721141815,-0.374636471271515,0.762007117271423,-0.738949537277222,1.32202363014221,-0.742748856544495,1.23522198200226,-0.282723844051361,1.23637771606445,-0.281718552112579,1.32322287559509,-1.38290321826935,1.60459685325623,-0.279504656791687,1.39167475700378,-0.28157913684845,1.47848510742188,-0.741489887237549,1.47407841682434,-0.73659336566925,1.38722908496857,-0.2601717710495,0.835769295692444,-0.25945907831192,0.859586298465729,-0.784453272819519,0.86992883682251,-0.784896016120911,0.842166066169739,-1.37155055999756,1.67534184455872,-1.37222385406494,1.70388078689575,-1.37608814239502,1.69955146312714,-1.37604796886444,1.68035364151001,-1.46104145050049,1.6760790348053,-1.4570837020874,1.68028402328491,-1.45697784423828,1.6994411945343,-1.46088325977325,1.70363557338715,-0.0208046436309814,1.4010306596756,-0.0206069946289063,1.48796367645264,-0.0221272706985474,0.732428252696991,
  664. -0.0221827030181885,0.765152454376221,-0.0215716361999512,1.23007655143738,-0.0228912830352783,1.31698739528656,-0.0228855609893799,0.828465700149536,-0.0221272706985474,0.85063362121582,-1.5838371515274,1.23546624183655,-1.5886093378067,1.23875761032104,-1.5863710641861,1.21197736263275,-1.58208119869232,1.21634650230408,-1.52824819087982,1.21623992919922,-1.53365170955658,1.22036027908325,-1.53426349163055,1.23757970333099,-1.36162984371185,2.1495189666748,-1.36160683631897,2.12691950798035,-1.23642218112946,2.12726640701294,-1.23644375801086,2.14946031570435,-0.757769703865051,1.16165542602539,-0.761653423309326,1.07292532920837,-0.590847373008728,1.07981026172638,-0.588319659233093,1.15749847888947,-1.52949011325836,1.24181723594666,-0.634349703788757,0.933263778686523,-0.637200593948364,0.995139181613922,-0.781262159347534,0.993446886539459,-0.777257919311523,0.933285593986511,-1.24256753921509,2.22261953353882,-1.24216210842133,2.24489784240723,-1.37706530094147,2.24754905700684,-1.3774288892746,2.2246527671814,-1.62389266490936,0.674959361553192,-1.62450468540192,0.699274957180023,-1.62786448001862,0.695362508296967,-1.62686455249786,0.678271174430847,-1.68070447444916,0.672337591648102,-1.6772495508194,0.676130354404449,-1.67815887928009,0.693182051181793,-1.68199050426483,0.696662843227386,-0.0250415802001953,0.938111782073975,-0.0238097310066223,1.0095009803772,-0.440256178379059,0.997452259063721,-0.438982367515564,0.933233916759491,-1.06530463695526,2.14937973022461,-1.06528306007385,2.12774133682251,-0.732285499572754,2.12842440605164,-0.732302308082581,2.14936518669128,-0.356667041778564,1.15181612968445,-0.357340097427368,1.08922362327576,-0.0238100290298462,1.08956325054169,-0.0250799059867859,1.1401264667511,-0.732927203178406,2.21276426315308,-0.732285499572754,2.23152446746826,-1.05773746967316,2.24127340316772,-1.05819964408875,2.21984028816223,-1.59059393405914,1.32564783096313,-1.59452402591705,1.32854151725769,-1.59265053272247,1.30506265163422,-1.58898556232452,1.30878257751465,-1.52652728557587,
  665. 1.3080518245697,-1.53087151050568,1.31170129776001,-1.53108084201813,1.32818508148193,-0.826952934265137,-0.577808856964111,-0.8269362449646,-0.59448230266571,-0.351689338684082,-0.594566702842712,-0.352632999420166,-0.576291680335999,0.382014095783234,-1.6101438999176,0.379461467266083,-1.66846036911011,0.883560061454773,-1.66991281509399,0.884967684745789,-1.61124897003174,-1.52713572978973,1.33176016807556,0.885883688926697,-1.54547214508057,0.884485840797424,-1.48697972297668,0.379136681556702,-1.48842215538025,0.381717264652252,-1.54689860343933,-0.35014271736145,-0.506082653999329,-0.349616467952728,-0.488489091396332,-0.822291016578674,-0.489271759986877,-0.82230007648468,-0.504536867141724,-1.56346070766449,2.30086040496826,-1.56347000598907,2.32144975662231,-1.56642115116119,2.31933665275574,-1.5664097070694,2.30297803878784,-1.63721644878387,2.30088043212891,-1.63433587551117,2.30298805236816,-1.63434112071991,2.31931638717651,-1.6372207403183,2.32142949104309,1.29214024543762,-1.5443229675293,1.2916955947876,-1.48581731319427,0.0312636196613312,-0.594634890556335,0.0295732617378235,-0.575069546699524,1.28976202011108,-1.67108297348022,1.29024720191956,-1.61213946342468,0.0303204357624054,-0.507328152656555,0.0312636196613312,-0.487858355045319,-0.987884879112244,-1.49604308605194,-0.987961888313293,-1.46017730236053,-1.08756744861603,-1.46881806850433,-1.08695685863495,-1.50288939476013,-1.56267964839935,-0.808921813964844,-1.5620619058609,-0.784257888793945,-1.66925609111786,-0.785706281661987,-1.66956007480621,-0.810524702072144,-0.983786940574646,-1.09698700904846,-0.984185576438904,-1.06111431121826,-1.08325684070587,-1.06258618831635,-1.08291685581207,-1.09657216072083,-1.4130345582962,-1.29219317436218,-1.30747509002686,-1.2930896282196,-1.30744004249573,-1.26845622062683,-1.41223084926605,-1.26789712905884,-1.39869225025177,-0.812901973724365,-1.39817893505096,-0.789860963821411,-0.814680576324463,-1.49740529060364,-0.814863562583923,-1.46141147613525,-1.14106643199921,-1.29207694530487,-1.14142668247223,
  666. -1.26872825622559,-0.810314893722534,-1.09629547595978,-0.810835719108582,-1.0602502822876,-1.76195681095123,-0.848232746124268,-1.72584140300751,-0.850751519203186,-1.72320139408112,-0.826368689537048,-1.75931632518768,-0.823848843574524,-1.50124609470367,-1.20280027389526,-1.50124609470367,-1.22615456581116,-1.46667730808258,-1.22615456581116,-1.46667730808258,-1.20280027389526,-1.11584854125977,-1.70618915557861,-1.11592590808868,-1.67032289505005,-1.21553122997284,-1.67896413803101,-1.21492087841034,-1.71303510665894,-1.30139982700348,-1.09703421592712,-1.3007824420929,-1.07237017154694,-1.40797746181488,-1.07381856441498,-1.40828108787537,-1.09863698482513,-0.987955808639526,-1.29695045948029,-0.988354325294495,-1.26107788085938,-1.08742523193359,-1.26254975795746,-1.08708488941193,-1.29653561115265,-1.41303622722626,-1.19615590572357,-1.3074768781662,-1.19705212116241,-1.30744159221649,-1.17241871356964,-1.41223275661469,-1.17185950279236,-1.13741159439087,-1.10101437568665,-1.13689804077148,-1.0779732465744,-0.942644834518433,-1.70755124092102,-0.942827701568604,-1.67155742645264,-1.141068816185,-1.19603955745697,-1.14142858982086,-1.17269086837769,-0.814485192298889,-1.29625928401947,-0.815006256103516,-1.26021385192871,-1.76195681095123,-0.758084654808044,-1.72584092617035,-0.760603785514832,-1.72320115566254,-0.736220598220825,-1.75931632518768,-0.733700513839722,-1.50144171714783,-1.37599885463715,-1.50144171714783,-1.39935290813446,-1.46687340736389,-1.39935290813446,-1.46687340736389,-1.37599885463715,-1.31441283226013,-1.5918173789978,-1.31448924541473,-1.55595135688782,-1.41409504413605,-1.5645923614502,-1.41348469257355,-1.59866333007813,-1.46754586696625,-0.904959440231323,-1.4669281244278,-0.880295395851135,-1.57412254810333,-0.881743669509888,-1.57442677021027,-0.906562328338623,-0.988150954246521,-1.39693200588226,-0.988549709320068,-1.36105990409851,-1.0876202583313,-1.3625316619873,-1.08728003501892,-1.39651715755463,-1.41317915916443,-1.48426806926727,-1.30761849880219,-1.48516440391541,-1.3075840473175,
  667. -1.46053087711334,-1.41237604618073,-1.45997178554535,-1.30355823040009,-0.908939599990845,-1.30304479598999,-0.885898470878601,-1.14120876789093,-1.59317946434021,-1.14139187335968,-1.55718541145325,-1.14120876789093,-1.48415195941925,-1.14156889915466,-1.4608029127121,-0.814680576324463,-1.39624071121216,-0.8152015209198,-1.36019539833069,-1.67422187328339,-0.57778787612915,-1.63810622692108,-0.580307245254517,-1.63546597957611,-0.555923938751221,-1.67158186435699,-0.553403615951538,-1.50138902664185,-1.46259796619415,-1.50138902664185,-1.48595178127289,-1.46682035923004,-1.48595178127289,-1.46682035923004,-1.46259796619415,-0.789320707321167,-1.60200023651123,-0.789397835731506,-1.56613445281982,-0.88900351524353,-1.57477569580078,-0.888392686843872,-1.60884642601013,-1.46754586696625,-1.0009970664978,-1.4669281244278,-0.976332664489746,-1.57412278652191,-0.977781295776367,-1.57442677021027,-1.0025999546051,-0.987957239151001,-1.19696891307831,-0.988355994224548,-1.16109621524811,-1.08742690086365,-1.1625679731369,-1.08708715438843,-1.19655418395996,-1.41323184967041,-1.38823056221008,-1.30767154693604,-1.3891270160675,-1.30763638019562,-1.36449337005615,-1.41242849826813,-1.36393451690674,-1.30355823040009,-1.00497698783875,-1.30304479598999,-0.981935858726501,-0.616116881370544,-1.6033627986908,-0.616299748420715,-1.56736874580383,-1.14126217365265,-1.38811445236206,-1.14162230491638,-1.36476564407349,-0.814485430717468,-1.19627726078033,-0.815006256103516,-1.16023206710815,-1.66041910648346,-0.667936444282532,-1.62430369853973,-0.670455455780029,-1.62166345119476,-0.646072268486023,-1.65777909755707,-0.64355206489563,-1.50144171714783,-1.28939950466156,-1.50144171714783,-1.31275367736816,-1.46687340736389,-1.31275367736816,-1.46687340736389,-1.28939950466156,-0.294729828834534,2.13365173339844,-0.294515311717987,2.16942262649536,-0.678424835205078,2.1653881072998,-0.678643941879272,2.12933778762817,-0.294072091579437,1.90974593162537,-0.293297111988068,1.94145452976227,-0.677221536636353,1.94685900211334,-0.677972435951233,
  668. 1.91489899158478,-0.293384432792664,1.79677617549896,-0.294172406196594,1.83254051208496,-0.677985787391663,1.82488250732422,-0.677186489105225,1.78884065151215,-0.67609715461731,2.46110343933105,-0.294102489948273,2.46640348434448,-0.29470294713974,2.49834489822388,-0.676275372505188,2.49287414550781,-0.023816704750061,1.90233969688416,-0.0230705738067627,1.93271446228027,-0.0243839621543884,2.13062882423401,-0.0241820216178894,2.16489744186401,-0.0229044556617737,2.4741382598877,-0.0240023136138916,2.50457239151001,-0.0230705738067627,1.8020406961441,-0.0238473415374756,1.83629906177521,-1.66617214679718,-0.945816516876221,-1.63028752803802,-0.948319554328918,-1.62806808948517,-0.916500449180603,-1.66395270824432,-0.913996815681458,-1.50204944610596,-1.54919695854187,-1.50204944610596,-1.57962250709534,-1.46773660182953,-1.57962250709534,-1.46773660182953,-1.54919695854187,-1.0940089225769,2.41826748847961,-1.09416615962982,2.46167182922363,-1.380091547966,2.47489833831787,-1.38128268718719,2.42593502998352,-1.09312653541565,2.31705904006958,-1.09231579303741,2.34942889213562,-1.37793803215027,2.35502195358276,-1.37908947467804,2.31921243667603,-1.09776258468628,2.56231760978699,-1.0982518196106,2.60572123527527,-1.38513112068176,2.58708047866821,-1.38317930698395,2.53814291954041,-0.678045153617859,2.23625731468201,-0.424577057361603,2.23410606384277,-0.425183415412903,2.2660653591156,-0.677519679069519,2.2678701877594,-0.73225462436676,2.31079459190369,-0.731686353683472,2.3382580280304,-0.729931831359863,2.43134498596191,-0.729917883872986,2.46949291229248,-0.0238990187644959,2.24935388565063,-0.0252137780189514,2.27980089187622,-0.733331084251404,2.5566041469574,-0.733906984329224,2.59475374221802,-1.67991745471954,-0.293586432933807,-1.6364825963974,-0.296089231967926,-1.63426315784454,-0.264270305633545,-1.67769801616669,-0.261765956878662,-1.67702496051788,-0.359334230422974,-1.67702496051788,-0.389759957790375,-1.63516247272491,-0.38975977897644,-1.63516247272491,-0.359334230422974,-0.327144742012024,1.68017947673798,
  669. -0.326910734176636,1.71899628639221,-0.728793978691101,1.71436083316803,-0.729035258293152,1.67534184455872,-0.308074057102203,2.02354526519775,-0.307297110557556,2.05529975891113,-0.678203940391541,2.06029033660889,-0.678946137428284,2.0283670425415,-0.32747483253479,1.56120073795319,-0.328330457210541,1.60000967979431,-0.730114102363586,1.59212183952332,-0.729246020317078,1.55311274528503,-0.676119089126587,2.34760427474976,-0.306825995445251,2.35260510444641,-0.307426631450653,2.38454627990723,-0.676276803016663,2.37937211990356,-0.0249286890029907,2.01583862304688,-0.0241803526878357,2.04619264602661,-0.020236074924469,1.67668187618256,-0.0200244188308716,1.71379113197327,-0.0229044556617737,2.36064267158508,-0.023985743522644,2.39107489585876,-0.0206129550933838,1.56742084026337,-0.0214439034461975,1.60452008247375,-1.67671287059784,-0.487449288368225,-1.6378687620163,-0.490158796310425,-1.63546597957611,-0.455715298652649,-1.67431032657623,-0.453004837036133,-1.66534864902496,-1.0115647315979,-1.66534864902496,-1.0446218252182,-1.62806808948517,-1.0446218252182,-1.62806808948517,-1.0115647315979,-1.0443822145462,1.91849625110626,-1.0441814661026,1.95199072360992,-1.33413696289063,1.95447015762329,-1.33436918258667,1.92130625247955,-1.07211554050446,2.67699313163757,-1.07133090496063,2.70910573005676,-1.38498175144196,2.71303510665894,-1.38581538200378,2.68123555183411,-1.04522728919983,2.03019094467163,-1.04596483707428,2.06367492675781,-1.33574080467224,2.05086898803711,-1.33497822284698,2.01771569252014,-0.679532527923584,2.57460236549377,-0.365451514720917,2.57896041870117,-0.36554741859436,2.6108934879303,-0.679689645767212,2.60645627975464,-0.734013319015503,2.66896605491638,-0.733331084251404,2.69926857948303,-0.731826424598694,1.92155075073242,-0.731613874435425,1.95314431190491,-0.0264421105384827,2.57736444473267,-0.0264803767204285,2.60774970054626,-0.732587218284607,2.03086686134338,-0.733330607414246,2.06246328353882,-1.50185680389404,-1.13724446296692,-1.46872627735138,-1.13955521583557,-1.46667730808258,
  670. -1.11017847061157,-1.49980771541595,-1.1078667640686,-1.49941694736481,-1.64286756515503,-1.49941694736481,-1.67095875740051,-1.46773660182953,-1.67095875740051,-1.46773660182953,-1.64286756515503,2.04985451698303,1.61586117744446,2.09095764160156,1.9023904800415,2.04991292953491,1.64099812507629,2.09097528457642,1.97893810272217,2.09003400802612,2.07503437995911,2.09046411514282,2.24425506591797,2.08961057662964,1.80630230903625,2.090407371521,2.26943063735962
  671. }
  672. UVIndex: *2980 {
  673. a: 82,47,48,81,80,63,64,78,70,71,83,84,44,45,52,53,0,1,2,3,85,79,55,56,52,45,60,61,60,45,44,68,69,68,44,53,53,52,61,69,50,48,47,51,64,63,66,67,58,56,55,59,74,71,70,75,4,5,6,7,12,13,14,15,15,16,19,12,22,16,15,14,23,22,14,13,19,23,13,12,32,33,89,90,34,35,86,88,36,37,92,87,93,38,39,91,29,28,37,36,25,24,35,34,21,20,33,32,38,18,17,39,3,8,9,0,2,10,8,3,11,10,2,1,0,9,11,1,40,41,7,6,42,40,6,5,4,43,42,5,41,43,4,7,24,25,96,94,20,21,98,97,101,99,17,18,28,29,95,100,66,106,104,67,108,107,50,51,110,109,74,75,59,105,111,58,112,113,114,115,116,117,118,119,120,121,122,123,46,49,54,57,128,129,130,131,132,133,134,135,54,49,62,65,62,49,46,72,73,72,46,57,57,54,65,73,152,114,113,153,118,117,154,155,156,135,134,157,158,121,120,159,160,161,162,163,124,125,126,127,127,136,137,124,141,136,127,126,142,141,126,125,137,142,125,124,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,193,192,202,203,189,188,204,205,185,184,197,206,207,198,131,208,209,128,130,210,208,131,211,210,130,129,128,209,211,129,216,217,163,162,218,216,162,161,160,219,218,161,217,219,160,163,203,202,177,176,205,204,173,172,170,169,207,206,201,200,181,180,154,140,143,155,139,138,152,153,151,150,158,159,157,145,144,156,224,225,226,227,228,229,230,231,232,233,234,235,236,237,232,238,233,238,236,233,235,237,239,234,235,239,233,236,234,234,236,235,240,241,242,243,244,245,240,242,246,246,242,245,243,247,244,241,247,243,242,241,245,241,243,245,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,248,251,265,266,267,268,269,270,271,272,256,259,273,274,260,263,275,276,252,255,277,278,279,280,281,282,283,248,284,285,249,286,251,250,287,288,255,254,289,252,290,291,253,275,263,292,268,267,293,265,251,294,227,226,295,296,277,255,231,230,297,252,276,298,280,279,299,300,301,258,257,302,303,253,291,303,304,254,253,304,305,289,254,306,307,262,261,308,309,249,285,309,310,250,249,250,310,311,287,279,283,312,313,283,314,315,312,230,229,316,317,318,267,319,320,267,271,321,319,322,321,271,323,226,225,324,325,326,279,313,327,317,316,307,306,
  674. 312,315,305,304,313,312,304,303,327,313,303,302,325,324,301,300,311,310,321,322,319,321,310,309,320,319,309,308,328,329,330,331,332,333,334,335,336,337,338,339,340,341,336,342,337,342,340,337,339,341,343,338,339,343,337,340,338,338,340,339,344,345,346,347,348,349,344,346,350,350,346,349,347,351,348,345,351,347,346,345,349,345,347,349,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,352,355,369,370,371,372,373,374,375,376,360,363,377,378,364,367,379,380,356,359,381,382,383,384,385,386,387,352,388,389,353,390,355,354,391,392,359,358,393,356,394,395,357,379,367,396,372,371,397,369,355,398,331,330,399,400,381,359,335,334,401,356,380,402,384,383,403,404,405,362,361,406,407,357,395,407,408,358,357,408,409,393,358,410,411,366,365,412,413,353,389,413,414,354,353,354,414,415,391,383,387,416,417,387,418,419,416,334,333,420,421,422,371,423,424,371,375,425,423,426,425,375,427,330,329,428,429,430,383,417,431,421,420,411,410,416,419,409,408,417,416,408,407,431,417,407,406,429,428,405,404,415,414,425,426,423,425,414,413,424,423,413,412,432,433,434,435,436,437,438,439,440,441,442,443,444,445,440,446,441,446,444,441,443,445,447,442,443,447,441,444,442,442,444,443,448,449,450,451,452,453,448,450,454,454,450,453,451,455,452,449,455,451,450,449,453,449,451,453,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,456,459,473,474,475,476,477,478,479,480,464,467,481,482,468,471,483,484,460,463,485,486,487,488,489,490,491,456,492,493,457,494,459,458,495,496,463,462,497,460,498,499,461,483,471,500,476,475,501,473,459,502,435,434,503,504,485,463,439,438,505,460,484,506,488,487,507,508,509,466,465,510,511,461,499,511,512,462,461,512,513,497,462,514,515,470,469,516,517,457,493,517,518,458,457,458,518,519,495,487,491,520,521,491,522,523,520,438,437,524,525,526,475,527,528,475,479,529,527,530,529,479,531,434,433,532,533,534,487,521,535,525,524,515,514,520,523,513,512,521,520,512,511,535,521,511,510,533,532,509,508,519,518,529,530,527,529,518,517,528,527,517,516,536,537,538,539,540,541,542,543,544,545,546,547,548,
  675. 549,544,550,545,550,548,545,547,549,551,546,547,551,545,548,546,546,548,547,552,553,554,555,556,557,552,554,558,558,554,557,555,559,556,553,559,555,554,553,557,553,555,557,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,560,563,577,578,579,580,581,582,583,584,568,571,585,586,572,575,587,588,564,567,589,590,591,592,593,594,595,560,596,597,561,598,563,562,599,600,567,566,601,564,602,603,565,587,575,604,580,579,605,577,563,606,539,538,607,183,589,567,543,542,182,564,588,179,592,591,178,175,174,570,569,171,168,565,603,168,167,566,565,167,166,601,566,165,164,574,573,149,148,561,597,148,147,562,561,562,147,146,599,591,595,31,30,595,27,26,31,542,541,223,222,221,579,220,103,579,583,102,220,77,102,583,76,538,537,215,214,213,591,30,212,222,223,164,165,31,26,166,167,30,31,167,168,212,30,168,171,214,215,174,175,146,147,102,77,220,102,147,148,103,220,148,149,608,609,610,611,612,613,614,615,615,614,609,608,612,615,608,611,616,617,618,619,620,621,622,623,624,625,626,627,610,613,612,611,628,629,630,631,632,633,634,635,636,637,638,639,633,636,639,634,635,638,637,632,635,634,639,638,623,622,640,641,627,626,642,643,619,618,644,645,646,647,629,628,648,649,650,651,652,653,654,655,655,654,649,648,652,655,648,651,656,657,658,659,660,661,662,663,664,665,666,667,650,653,652,651,668,669,670,671,672,673,674,675,676,677,678,679,673,676,679,674,675,678,677,672,675,674,679,678,663,662,680,681,667,666,682,683,659,658,684,685,686,687,669,668,688,689,690,691,692,693,694,695,695,694,689,688,692,695,688,691,696,697,1667,1668,700,701,1670,1665,704,705,1664,1666,690,693,692,691,1669,1671,710,711,712,713,714,715,716,717,718,719,713,716,719,714,715,718,717,712,715,714,719,718,720,721,722,723,723,722,724,725,725,726,720,723,727,728,729,730,731,732,728,727,730,729,733,734,731,727,730,734,735,736,737,738,739,740,739,738,741,742,741,743,744,745,746,742,745,744,736,735,740,746,745,735,742,746,740,739,747,748,749,750,751,752,753,754,755,756,757,758,733,732,731,733,731,734,759,760,761,762,763,764,765,766,767,721,720,726,724,767,726,725,768,
  676. 769,770,771,772,773,774,775,776,777,778,779,737,743,741,738,780,781,782,783,784,785,786,787,785,788,789,786,790,784,787,791,791,789,788,790,792,793,794,795,796,797,798,799,800,801,802,803,804,800,803,805,806,802,801,807,805,806,807,804,808,809,810,811,812,813,814,815,816,817,818,819,813,816,819,814,815,818,817,812,815,814,819,818,806,805,803,802,791,787,786,789,820,821,781,780,754,753,822,823,750,749,824,825,758,757,826,827,828,829,793,792,762,761,830,831,766,765,832,833,834,835,797,796,775,774,836,837,779,778,838,839,771,770,840,841,842,843,809,808,844,845,846,847,848,849,850,851,851,850,845,844,848,851,844,847,852,853,854,855,856,857,858,859,860,861,862,863,846,849,848,847,864,865,866,867,868,869,870,871,872,873,874,875,869,872,875,870,871,874,873,868,871,870,875,874,859,858,876,877,863,862,878,879,855,854,880,881,882,883,865,864,884,885,886,887,888,889,890,891,891,890,885,884,888,891,884,887,892,893,894,895,896,897,898,899,900,901,902,903,886,889,888,887,904,905,906,907,908,909,910,911,912,913,914,915,909,912,915,910,911,914,913,908,911,910,915,914,899,898,916,917,903,902,918,919,895,894,920,921,922,923,905,904,924,925,926,927,928,929,930,931,931,930,925,924,928,931,924,927,932,933,934,935,936,937,938,939,940,941,942,943,926,929,928,927,944,945,946,947,948,949,950,951,952,953,954,955,949,952,955,950,951,954,953,948,951,950,955,954,956,957,958,959,959,958,960,961,961,962,956,959,963,964,965,966,967,968,964,963,966,965,969,970,967,963,966,970,971,972,973,974,975,976,975,974,977,978,977,979,980,981,982,978,981,980,972,971,976,982,981,971,978,982,976,975,983,984,985,986,987,988,989,990,991,992,993,994,969,968,967,969,967,970,995,996,997,998,999,1000,1001,1002,1003,957,956,962,960,1003,962,961,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,973,979,977,974,1016,1017,1018,1019,1020,1021,1022,1023,1021,1024,1025,1022,1026,1020,1023,1027,1027,1025,1024,1026,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1036,1039,1041,1042,1038,1037,1043,1041,1042,1043,1040,1044,1045,1046,1047,1048,1049,1050,
  677. 1051,1052,1053,1054,1055,1049,1052,1055,1050,1051,1054,1053,1048,1051,1050,1055,1054,1042,1041,1039,1038,1027,1023,1022,1025,1056,1057,1017,1016,990,989,1058,1059,986,985,1060,1061,994,993,1062,1063,1064,1065,1029,1028,998,997,1066,1067,1002,1001,1068,1069,1070,1071,1033,1032,1011,1010,1072,1073,1015,1014,1074,1075,1007,1006,1076,1077,1078,1079,1045,1044,939,938,1080,1081,943,942,1082,1083,935,934,1084,1085,1086,1087,945,944,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1093,1092,1106,1107,1089,1088,1102,1101,1108,1109,1110,1111,1097,1096,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1125,1124,1138,1139,1121,1120,1134,1133,1140,1141,1142,1143,1129,1128,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1149,1148,1162,1163,1145,1144,1158,1157,1164,1165,1166,1167,1153,1152,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1189,1188,1202,1203,1185,1184,1198,1197,1204,1205,1206,1207,1193,1192,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1221,1220,1234,1235,1217,1216,1230,1229,1236,1237,1238,1239,1225,1224,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1245,1244,1258,1259,1241,1240,1254,1253,1260,1261,1262,1263,1249,1248,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1283,1282,1284,1285,1285,1286,1280,1283,1287,1288,1289,1290,1291,1292,1293,1294,1295,1281,1280,1286,1284,1295,1286,1285,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1304,1307,1309,1310,1306,1305,1311,1309,1310,1311,1308,1310,1309,1307,1306,1312,1313,1297,1296,1290,1289,1314,1315,1294,1293,1316,1317,1318,1319,1301,1300,1320,1321,1322,1323,1323,1322,1324,1325,1325,1326,1320,1323,
  678. 1327,1328,1329,1330,1331,1332,1333,1334,1335,1321,1320,1326,1324,1335,1326,1325,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1344,1347,1349,1350,1346,1345,1351,1349,1350,1351,1348,1350,1349,1347,1346,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1355,1354,1337,1336,1330,1329,1357,1356,1334,1333,1361,1360,1367,1366,1341,1340,1368,1369,1370,1371,1371,1370,1372,1373,1373,1374,1368,1371,1375,1376,1377,1378,1379,1380,1381,1382,1383,1369,1368,1374,1372,1383,1374,1373,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1392,1395,1397,1398,1394,1393,1399,1397,1398,1399,1396,1398,1397,1395,1394,1400,1401,1385,1384,1378,1377,1402,1403,1382,1381,1404,1405,1406,1407,1389,1388,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1413,1412,1426,1427,1409,1408,1422,1421,1428,1429,1430,1431,1417,1416,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1445,1444,1458,1459,1441,1440,1454,1453,1460,1461,1462,1463,1449,1448,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1477,1476,1490,1491,1473,1472,1486,1485,1492,1493,1494,1495,1481,1480,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1509,1508,1522,1523,1505,1504,1518,1517,1524,1525,1526,1527,1513,1512,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1541,1540,1554,1555,1537,1536,1550,1549,1556,1557,1558,1559,1545,1544,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1573,1572,1586,1587,1569,1568,1582,1581,1588,1589,1590,1591,1577,1576,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1605,1604,1618,1619,
  679. 1601,1600,1614,1613,1620,1621,1622,1623,1609,1608,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1637,1636,1650,1651,1633,1632,1646,1645,1652,1653,1654,1655,1641,1640,1656,1657,1658,1659,1660,1661,1662,1663,1666,1664,706,707,1668,1667,698,699,708,709,1671,1669,1665,1670,702,703
  680. }
  681. }
  682. LayerElementSmoothing: 0 {
  683. Version: 102
  684. Name: ""
  685. MappingInformationType: "ByEdge"
  686. ReferenceInformationType: "Direct"
  687. Smoothing: *1490 {
  688. a: 1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,
  689. 0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1
  690. }
  691. }
  692. LayerElementMaterial: 0 {
  693. Version: 101
  694. Name: ""
  695. MappingInformationType: "AllSame"
  696. ReferenceInformationType: "IndexToDirect"
  697. Materials: *1 {
  698. a: 0
  699. }
  700. }
  701. Layer: 0 {
  702. Version: 100
  703. LayerElement: {
  704. Type: "LayerElementNormal"
  705. TypedIndex: 0
  706. }
  707. LayerElement: {
  708. Type: "LayerElementBinormal"
  709. TypedIndex: 0
  710. }
  711. LayerElement: {
  712. Type: "LayerElementTangent"
  713. TypedIndex: 0
  714. }
  715. LayerElement: {
  716. Type: "LayerElementMaterial"
  717. TypedIndex: 0
  718. }
  719. LayerElement: {
  720. Type: "LayerElementSmoothing"
  721. TypedIndex: 0
  722. }
  723. LayerElement: {
  724. Type: "LayerElementUV"
  725. TypedIndex: 0
  726. }
  727. }
  728. }
  729. Geometry: 2267733767840, "Geometry::", "Mesh" {
  730. Vertices: *1311 {
  731. a: 142.111267089844,185.586532592773,-69.7579498291016,142.025482177734,199.289428710938,-57.0186157226563,142.047988891602,185.616363525391,-57.0704650878906,141.9326171875,199.152191162109,-69.6325378417969,-143.303192138672,186.158721923828,-57.0461883544922,-144.464630126953,199.768432617188,-57.022705078125,-144.706207275391,185.825714111328,-70.0079650878906,-145.247100830078,199.301513671875,-69.9079132080078,-146.182922363281,99.5181427001953,-56.9547576904297,-146.194290161133,99.7725296020508,-69.7609176635742,-146.189926147461,85.1190948486328,-69.7344207763672,-146.09326171875,85.0095443725586,-57.1723403930664,141.525314331055,85.462532043457,-57.0261154174805,141.585250854492,85.4798812866211,-69.8409805297852,141.692001342773,99.4954147338867,-57.0715408325195,141.5400390625,99.1317749023438,-69.661376953125,7.3447265625,184.963073730469,-67.5068359375,6.86865234375,184.963073730469,-54.986572265625,-142.141952514648,185.616973876953,69.2963562011719,-141.989013671875,199.163848876953,69.2354431152344,-142.012680053711,199.190841674805,56.6496429443359,-142.060928344727,185.663604736328,56.6727600097656,144.504623413086,200.116729736328,56.5984191894531,144.936492919922,186.106246948242,69.4398651123047,143.305557250977,186.087463378906,56.5243530273438,145.22265625,199.653625488281,69.177734375,146.200958251953,85.0966873168945,69.3158569335938,146.198776245117,99.521842956543,56.4805145263672,146.204010009766,99.7869644165039,69.3478698730469,146.09326171875,85.0095520019531,56.7448959350586,-141.587692260742,85.4740142822266,69.416389465332,-141.713760375977,99.5128936767578,56.6263580322266,-141.525985717773,85.4579467773438,56.598518371582,-141.5400390625,99.1317749023438,69.23388671875,17.6552734375,184.963073730469,66.059326171875,18.13134765625,184.963073730469,53.5390625,-122.270988464355,-1.53079986572266,82.1464462280273,-135.480453491211,-1.78302764892578,67.9045944213867,-121.825256347656,-1.58651733398438,68.0494689941406,-135.182388305664,-1.45861053466797,82.171760559082,
  732. -134.6982421875,212.858032226563,68.3311004638672,-121.903228759766,212.623748779297,82.4903106689453,-122.099510192871,212.558013916016,68.4835357666016,-134.694381713867,212.643493652344,82.0072631835938,-121.140693664551,212.747680664063,-69.3161163330078,-135.149368286133,212.927459716797,-82.2301330566406,-135.369537353516,212.835479736328,-69.1414489746094,-121.144622802734,212.635772705078,-81.9529724121094,-121.782699584961,-1.59355163574219,-82.0806732177734,-135.203720092773,-1.54756164550781,-69.4539947509766,-135.629852294922,-1.49147796630859,-82.1239242553711,-121.217269897461,-1.42560577392578,-69.789192199707,122.902374267578,212.747787475586,-68.5573272705078,135.821548461914,212.92219543457,-82.5630950927734,122.579032897949,212.819122314453,-82.7482604980469,135.539413452148,212.6357421875,-68.5612182617188,135.979293823242,-1.32154846191406,-69.0554351806641,123.364112854004,-1.48758697509766,-82.2628555297852,136.344512939453,-1.48674011230469,-82.4088592529297,123.484535217285,-1.47818756103516,-68.2515640258789,136.860794067383,-1.52660369873047,68.408332824707,122.360488891602,-1.90508270263672,81.7035598754883,122.966941833496,-1.5845947265625,68.468505859375,136.975555419922,-1.42135620117188,81.3462219238281,122.563209533691,213.028747558594,81.3273315429688,136.659957885742,212.574157714844,68.7822418212891,122.714942932129,212.581558227539,68.8412017822266,136.203506469727,212.744262695313,81.2027435302734,143.42431640625,204.967483520508,48.5197906494141,143.765594482422,205.001861572266,67.7160797119141,143.467758178711,199.494979858398,48.5009613037109,143.707733154297,199.54035949707,67.7236938476563,-143.010711669922,205.017654418945,49.1670684814453,-142.603942871094,199.516555786133,68.3167266845703,-142.86767578125,204.967498779297,68.2874908447266,-142.992980957031,199.533843994141,49.1662750244141,142.251953125,204.967483520508,21.2876129150391,142.608779907227,204.986541748047,47.7530212402344,142.359329223633,199.432281494141,21.2436828613281,142.52490234375,199.54167175293,47.7565765380859,
  733. -145.333633422852,199.649658203125,48.669677734375,-145.31462097168,204.850784301758,48.6389312744141,-145.038589477539,205.03092956543,21.5361175537109,-145.029067993164,199.516357421875,21.5652465820313,142.251953125,204.967483520508,-67.9700775146484,142.618743896484,205.012512207031,-47.201416015625,142.302490234375,199.477935791016,-68.0140075683594,142.5146484375,199.548461914063,-47.1986694335938,-145.874404907227,199.48876953125,-46.9214477539063,-145.006484985352,204.993011474609,-67.6930236816406,-145.006744384766,199.534332275391,-67.6967468261719,-145.85107421875,204.977935791016,-46.9253234863281,143.125961303711,199.274337768555,0.754440307617188,142.3330078125,199.541961669922,-18.7348327636719,142.363433837891,205.006988525391,-18.7424163818359,143.09001159668,205.226303100586,0.756393432617188,145.473358154297,204.999618530273,1.65385437011719,145.033798217773,204.993881225586,19.5367889404297,145.611343383789,199.490112304688,1.25860595703125,145.031433105469,199.519378662109,19.5099182128906,144.190811157227,199.485076904297,-20.1692810058594,144.039855957031,204.967315673828,-45.9850769042969,144.290802001953,204.993728637695,-20.1930389404297,143.913879394531,199.536224365234,-45.9604187011719,-143.0625,204.987579345703,21.3161926269531,-143.5107421875,204.967483520508,3.10877990722656,-143.56950378418,199.520462036133,3.02949523925781,-143.043365478516,199.527816772461,21.3288421630859,-141.238784790039,199.531295776367,-20.5232086181641,-141.897933959961,204.995269775391,-46.0337829589844,-141.898056030273,199.535736083984,-46.0334320068359,-141.285751342773,204.974029541016,-20.5268249511719,-145.105773925781,205.003845214844,0.74542236328125,-144.683898925781,199.510833740234,-18.7750549316406,-145.113525390625,199.511520385742,0.725265502929688,-144.677062988281,204.974807739258,-18.7792816162109,-143.7373046875,105.07088470459,-48.0159683227539,-144.078582763672,105.105247497559,-67.2123794555664,-143.780731201172,99.598388671875,-47.997314453125,-144.020721435547,99.6437454223633,-67.2200241088867,
  734. 142.5546875,105.07088470459,-67.7840347290039,142.697708129883,105.121063232422,-48.6632385253906,142.290985107422,99.6199569702148,-67.8132095336914,142.679992675781,99.6372375488281,-48.6625061035156,-142.6982421875,105.07088470459,-24.9046401977539,-142.784393310547,105.098136901855,-46.9497146606445,-142.733612060547,99.5958786010742,-24.8960647583008,-142.688232421875,99.6457824707031,-46.9358825683594,145.090560913086,99.7980651855469,-43.9879455566406,145.117980957031,104.894859313965,-43.9670181274414,144.569549560547,105.129425048828,-21.4177017211914,144.557022094727,99.6204452514648,-21.4491958618164,-142.56494140625,105.070892333984,67.9775619506836,-142.914749145508,105.091613769531,48.9557495117188,-142.638305664063,99.5795364379883,68.066780090332,-142.824066162109,99.6470184326172,48.9452896118164,144.697845458984,105.106254577637,67.7297286987305,145.566284179688,99.6005172729492,48.6476287841797,145.541885375977,105.096588134766,48.6896667480469,144.692993164063,99.6363296508789,67.7337341308594,-142.674728393555,105.109375,17.8012084960938,-143.443222045898,99.3805770874023,1.35225677490234,-142.64599609375,99.6453628540039,17.7903823852539,-143.404296875,105.3291015625,1.35296630859375,-146.002136230469,105.105606079102,0.778579711914063,-145.134765625,105.07088470459,-20.9930191040039,-145.253784179688,99.5989074707031,-21.0058898925781,-145.99641418457,99.6166610717773,0.779624938964844,-144.70719909668,99.5793151855469,23.6381530761719,-143.969421386719,99.6527328491211,48.1312484741211,-144.002334594727,105.088165283203,48.1439514160156,-144.700225830078,105.073745727539,23.6623687744141,142.820510864258,105.090789794922,-20.4034729003906,143.1259765625,105.07088470459,1.38307952880859,143.193450927734,99.6134185791016,1.45960998535156,142.80583190918,99.630989074707,-20.4179611206055,141.786956787109,105.091125488281,42.827018737793,140.672821044922,99.6347427368164,18.5918960571289,140.720901489258,105.077415466309,18.5943832397461,141.789916992188,99.6357574462891,42.8122100830078,144.373931884766,99.6147918701172,17.8268203735352,
  735. 144.790267944336,105.103424072266,1.35836791992188,144.36262512207,105.077491760254,17.8304214477539,144.804214477539,99.6162185668945,1.37781524658203,1.537109375,99.5937194824219,58.1677551269531,1.23115968704224,91.651123046875,-56.459716796875,1.537109375,91.9721069335938,58.167724609375,2.03345775604248,99.7258377075195,-56.4648361206055,13.99609375,99.5937194824219,58.1677551269531,13.99609375,91.9721069335938,58.167724609375,13.97265625,90.784423828125,-56.493408203125,15.46875,98.7330017089844,-56.4933776855469,-133.4296875,99.5459747314453,58.1677398681641,-133.64453125,87.9364395141602,-56.4485702514648,-133.4296875,88.4392242431641,58.1677398681641,-133.056076049805,99.7253112792969,-56.4723205566406,-122.41650390625,98.2916870117188,-56.493408203125,-123.599609375,86.7084350585938,-56.493408203125,-123.5810546875,99.5459747314453,58.1677398681641,-123.5810546875,88.4392242431641,58.1677398681641,125.3974609375,87.0160675048828,-56.4933929443359,134.88671875,99.3497619628906,-56.4933776855469,135.69677734375,87.7344818115234,-56.4934234619141,124.5869140625,98.63134765625,-56.493408203125,134.70458984375,99.7043914794922,58.1677093505859,124.85595703125,99.7043914794922,58.1677093505859,124.85595703125,88.5976409912109,58.1677093505859,134.70458984375,88.5976409912109,58.1677093505859,2.7971613407135,192.861968994141,57.1313781738281,2.4912109375,200.804565429688,-57.49609375,1.99486100673676,200.93669128418,57.1364440917969,2.4912109375,193.182952880859,-57.4960632324219,-9.9677734375,193.182952880859,-57.4960632324219,-9.9677734375,200.804565429688,-57.49609375,-9.9443359375,191.995269775391,57.1650695800781,-11.4404296875,199.94384765625,57.1650390625,137.6728515625,189.14729309082,57.1202545166016,137.4580078125,200.756820678711,-57.4961090087891,137.084396362305,200.936172485352,57.1439819335938,137.4580078125,189.65007019043,-57.4961090087891,126.44482421875,199.502532958984,57.1650695800781,127.6279296875,187.919281005859,57.1650695800781,127.609375,189.65007019043,-57.4961090087891,127.609375,200.756820678711,-57.4961090087891,
  736. -120.55859375,199.842193603516,57.1650695800781,-130.8583984375,200.560607910156,57.1650390625,-121.369140625,188.226913452148,57.1650238037109,-131.66845703125,188.945327758789,57.1650543212891,-130.67626953125,189.808486938477,-57.4960784912109,-130.67626953125,200.915237426758,-57.4960784912109,-120.82763671875,189.808486938477,-57.4960784912109,-120.82763671875,200.915237426758,-57.4960784912109,-133.204071044922,104.068084716797,78.5981063842773,-133.49609375,121.855224609375,78.3466796875,-138.981521606445,121.873794555664,78.3801345825195,-139.179565429688,104.050643920898,78.5491180419922,-133.425964355469,108.949363708496,-85.8132095336914,-138.996337890625,108.977470397949,-85.7582473754883,-133.457794189453,126.759140014648,-84.8412628173828,-138.88020324707,126.7177734375,-84.8162841796875,-134.127014160156,130.645294189453,80.9673156738281,-134.21142578125,144.333755493164,79.8811187744141,-138.037414550781,144.403564453125,80.0238647460938,-138.060623168945,130.562957763672,80.9607238769531,-138.611328125,128.032104492188,-86.9267578125,-138.63459777832,141.05078125,-87.9187622070313,-134.94758605957,127.980865478516,-86.9737243652344,-134.809478759766,141.064468383789,-87.9173431396484,135.457916259766,121.393203735352,-86.0132293701172,135.32177734375,135.878829956055,-84.7226715087891,139.403549194336,135.997772216797,-84.7976989746094,139.898971557617,121.503021240234,-86.0315856933594,135.205291748047,126.960578918457,85.8762817382813,139.64973449707,112.503608703613,85.469970703125,139.270874023438,127.065498352051,85.8207397460938,135.559326171875,112.431015014648,85.5018768310547,128.957504272461,189.991271972656,-30.4548950195313,129.19482421875,148.998779296875,-72.415771484375,134.335037231445,190.063827514648,-30.6999664306641,134.2353515625,148.998779296875,-72.415771484375,134.2353515625,154.275756835938,-77.69091796875,134.152694702148,195.575347900391,-36.2906341552734,129.19482421875,154.275756835938,-77.69091796875,128.653854370117,195.66877746582,-36.0671844482422,129.013122558594,150.559326171875,68.63623046875,
  737. 134.2353515625,190.798889160156,25.976318359375,134.463607788086,150.779327392578,68.7234039306641,129.19482421875,190.798889160156,25.976318359375,134.2353515625,196.283386230469,31.035400390625,134.153503417969,156.591094970703,73.9764556884766,128.658676147461,156.36669921875,74.075439453125,129.19482421875,196.283386230469,31.035400390625,-128.561996459961,150.559234619141,68.6362609863281,-123.33935546875,190.798889160156,25.976318359375,-123.111511230469,150.779312133789,68.7234039306641,-128.3798828125,190.798889160156,25.976318359375,-123.33935546875,196.283386230469,31.035400390625,-123.421211242676,156.591079711914,73.9764556884766,-128.916275024414,156.366653442383,74.0753936767578,-128.3798828125,196.283386230469,31.035400390625,-128.617614746094,189.991287231445,-30.4547576904297,-128.3798828125,148.998779296875,-72.415771484375,-123.240058898926,190.063903808594,-30.699951171875,-123.33935546875,148.998779296875,-72.415771484375,-123.33935546875,154.275756835938,-77.69091796875,-123.422004699707,195.57536315918,-36.2906036376953,-128.3798828125,154.275756835938,-77.69091796875,-128.921096801758,195.66877746582,-36.0671234130859,-132.67236328125,85.2016143798828,70.4028472900391,-132.35173034668,77.8108901977539,-70.7090682983398,-133.212890625,77.4564056396484,70.4028091430664,-133.011779785156,85.4303588867188,-70.6536865234375,-125.8046875,84.7225646972656,70.4028625488281,-126.3447265625,76.9773559570313,70.40283203125,-125.98388671875,78.0319671630859,-70.7340240478516,-125.98388671875,85.4380798339844,-70.7339782714844,-125.8046875,38.0399551391602,69.5975646972656,-133.212890625,29.1441345214844,69.5975036621094,-126.3447265625,28.6650924682617,69.5975799560547,-132.67236328125,38.5189895629883,69.5974731445313,-132.55078125,29.7196998596191,-71.5393371582031,-132.55078125,38.7554664611816,-71.5393371582031,-125.98388671875,29.7196998596191,-71.5393371582031,-125.98388671875,38.7554664611816,-71.5393371582031,126.59814453125,38.2260208129883,69.5974731445313,126.913299560547,29.526481628418,-71.5202102661133,
  738. 126.05810546875,29.1441345214844,69.5975036621094,126.266883850098,38.4777450561523,-71.4673233032227,133.46630859375,37.7469711303711,69.5975494384766,132.92578125,28.6650924682617,69.5975799560547,133.28662109375,29.7196998596191,-71.5393371582031,133.28662109375,38.4624824523926,-71.5392913818359,125.76416015625,83.6852111816406,70.4028625488281,127.04052734375,77.1848754882813,70.4028244018555,133.759765625,78.66015625,70.4028244018555,132.48388671875,85.1605682373047,70.4028167724609,126.7197265625,85.4552001953125,-70.7340087890625,133.28662109375,79.1418685913086,-70.7339859008789,126.7197265625,79.1418685913086,-70.7339859008789,133.28662109375,85.4552001953125,-70.7340087890625,-82.4169921875,185.206604003906,-56.74560546875,-122.25439453125,64.0000915527344,80.5503158569336,-121.39013671875,109.238800048828,68.6596984863281,-121.732574462891,89.5124130249023,81.0360336303711,-121.751953125,169.440689086914,80.9467926025391,-134.52734375,169.440734863281,69.136962890625,-134.095321655273,78.6424026489258,68.0654373168945,-134.459533691406,75.3516006469727,80.7112197875977,-135.4033203125,-1.11885833740234,81.7483291625977,18.97607421875,205.031661987305,21.1884613037109,41.8994140625,99.8427505493164,-24.5406723022461,-10.5634765625,201.043640136719,12.59375,127.13818359375,201.105224609375,12.59375,-138.10791015625,143.507446289063,3.02294921875,-134.32568359375,143.512817382813,3.0224609375,138.673828125,116.259941101074,-1.29102325439453,134.4658203125,116.161552429199,-1.23706817626953,-87.98046875,198.663269042969,-56.74560546875,3.76220703125,198.419738769531,-54.986572265625,4.91845703125,198.419738769531,-67.5068359375,-16.63232421875,85.5771560668945,-70.0930099487305,47.14208984375,98.5479965209961,-69.8392105102539,56.63232421875,84.8562622070313,-69.661376953125,-16.80859375,85.5771560668945,-57.5729904174805,55.82666015625,84.8562622070313,-57.141357421875,43.6254539489746,98.7054748535156,-57.3772277832031,84.6025390625,185.206604003906,68.83837890625,82.4169921875,185.206604003906,56.318115234375,
  739. 87.98046875,198.663269042969,56.318115234375,21.23779296875,198.419738769531,53.5390625,88.1796875,198.663269042969,68.83837890625,20.08154296875,198.419738769531,66.059326171875,41.63232421875,85.4782867431641,70.7397537231445,41.294921875,99.6648101806641,70.7397613525391,-56.63232421875,85.7058563232422,69.2338638305664,-60.11083984375,98.4319152832031,69.2339172363281,41.80859375,85.4782867431641,58.2197341918945,-55.82666015625,85.7058563232422,56.7138442993164,41.31591796875,99.6648101806641,58.2197418212891,-59.53857421875,98.4319152832031,56.7138977050781,-121.676544189453,-0.883697509765625,-69.1354064941406,-134.535781860352,33.2348480224609,-69.0082550048828,-122.241676330566,101.57780456543,-69.2567901611328,-122.7548828125,139.437591552734,-69.6708679199219,-121.55712890625,212.342056274414,-69.1000823974609,-121.55712890625,212.342056274414,-82.2263031005859,-135.37158203125,143.391876220703,-82.2729187011719,-122.57120513916,137.868438720703,-82.1742248535156,-134.595703125,92.8867568969727,-81.1247787475586,-122.07568359375,33.9970092773438,-81.7021484375,-134.16845703125,33.9969482421875,-81.944091796875,122.68701171875,212.342056274414,-68.9742279052734,123.25732421875,139.437591552734,-70.1719665527344,122.543029785156,36.5808143615723,-82.0009155273438,122.866302490234,100.778427124023,-69.6925201416016,122.75537109375,33.9969863891602,-69.7755355834961,135.81298828125,212.342056274414,-68.9737396240234,135.85986328125,143.391860961914,-82.7880706787109,135.575469970703,131.734832763672,-70.0062561035156,134.778396606445,59.328052520752,-81.6031646728516,136.552734375,-1.11885833740234,81.6022109985352,122.14453125,60.0458221435547,81.6490249633789,134.793228149414,67.5300750732422,81.3467864990234,122.92041015625,110.550933837891,80.5007629394531,135.999221801758,212.205352783203,81.4996032714844,123.34765625,169.440734863281,81.3199462890625,135.15771484375,169.440689086914,68.5445709228516,122.589134216309,70.7005310058594,68.3215026855469,134.905044555664,66.384033203125,68.3333129882813,11.09521484375,199.541961669922,68.4739074707031,
  740. 10.96728515625,199.541961669922,49.3307189941406,11.09521484375,204.967498779297,68.4700012207031,10.96728515625,204.967483520508,49.3275299072266,-42.3349609375,199.739349365234,23.6941223144531,-42.3349609375,204.770111083984,23.6920471191406,-4.732421875,204.967483520508,-47.8979339599609,-4.732421875,199.541961669922,-47.8936462402344,19.0595703125,199.477798461914,2.56727600097656,-19.93798828125,205.080062866211,-0.267227172851563,-19.9384765625,199.43049621582,-0.273544311523438,18.9765625,199.477798461914,21.1801910400391,-20.02294921875,204.967483520508,-19.7376556396484,-20.0234375,199.541961669922,-19.7430114746094,-11.408203125,99.6453628540039,-67.9701156616211,-11.2802734375,99.6453628540039,-48.8270492553711,-11.408203125,105.070899963379,-67.9662094116211,-11.2802734375,105.07088470459,-48.8235855102539,41.8994140625,104.873512268066,-24.5390853881836,41.78564453125,98.8435974121094,67.8065414428711,42.23876953125,98.8435974121094,48.7983627319336,41.78564453125,104.269119262695,67.8086013793945,42.23876953125,104.269119262695,48.800910949707,-19.44384765625,99.5811996459961,0.493309020996094,-19.443359375,105.135063171387,0.495964050292969,19.625,105.183464050293,2.21825408935547,19.6259765625,99.5338973999023,2.22365570068359,-19.2138671875,99.5811996459961,-21.7751235961914,-19.212890625,105.135063171387,-21.7851638793945,19.7099609375,105.07088470459,18.6361312866211,19.71044921875,99.6453628540039,18.6406021118164,14.591796875,91.8238677978516,-11.9221038818359,14.591796875,99.8327941894531,-11.9220886230469,134.490234375,87.8392639160156,-11.9220886230469,135.79638671875,99.4371490478516,-11.9221038818359,-123.10986328125,88.2232055664063,-11.922119140625,-123.10986328125,99.8943786621094,-11.9220886230469,-10.5634765625,193.034713745117,12.5937347412109,-130.4619140625,189.050109863281,12.59375,-131.76806640625,200.647994995117,12.5937347412109,127.13818359375,189.434051513672,12.5937805175781,138.244140625,130.741760253906,-0.545654296875,134.203125,130.646789550781,-0.493896484375,-125.55078125,78.319221496582,-12.289665222168,
  741. -126.42138671875,86.0528259277344,-12.2896423339844,133.72021484375,30.0396842956543,-10.3445930480957,132.84912109375,39.1099586486816,-10.3446311950684,133.72021484375,77.8237533569336,2.52407073974609,126.86279296875,77.1655120849609,2.52403259277344,125.99169921875,83.7580108642578,2.52406311035156,132.84912109375,84.416259765625,2.5240478515625,-133.7314453125,169.440719604492,68.1955413818359,-4.45361328125,199.541961669922,-68.6338806152344,-4.45361328125,204.967468261719,-68.637451171875,124.2060546875,88.9972686767578,-11.9221038818359,125.51220703125,100.595153808594,-11.922119140625,-120.177734375,190.208114624023,12.5937347412109,-121.48388671875,201.805999755859,12.5937805175781,-126.42138671875,36.8716773986816,14.7345924377441,-125.55078125,27.5084342956543,14.7346305847168,-132.408203125,26.7362632751465,14.7346153259277,-133.279296875,36.0995063781738,14.7346382141113,-135.218215942383,43.7311859130859,-81.0204010009766,134.550537109375,48.8961601257324,-82.6635284423828,122.069412231445,72.142822265625,68.6715698242188,-121.976875305176,99.2945556640625,-81.084228515625,-133.558685302734,101.12858581543,81.2943496704102,135.537887573242,100.120727539063,80.5372848510742
  742. }
  743. PolygonVertexIndex: *2178 {
  744. a: 0,1,-3,0,3,-2,4,5,-7,5,7,-7,8,9,-11,10,11,-9,12,13,-15,13,15,-15,2,16,-1,16,2,-18,18,19,-21,18,20,-22,22,23,-25,23,22,-26,26,27,-29,26,29,-28,30,31,-33,30,33,-32,21,34,-19,34,21,-36,36,37,-39,39,37,-37,40,41,-43,43,41,-41,44,45,-47,47,45,-45,48,49,-51,48,51,-50,52,53,-55,55,53,-53,56,57,-59,56,59,-58,60,61,-63,63,61,-61,64,65,-67,67,65,-65,68,69,-71,70,69,-72,72,73,-75,73,72,-76,76,77,-79,78,77,-80,77,80,-80,80,77,-82,82,80,-82,80,82,-84,84,85,-87,86,85,-88,88,89,-91,89,88,-92,92,93,-95,92,94,-96,96,97,-99,98,97,-100,100,101,-103,101,100,-104,104,105,-107,106,107,-105,108,109,-111,109,108,-112,112,113,-115,113,112,-116,101,111,-103,111,101,-110,102,108,-101,108,102,-112,108,103,-101,103,108,-111,109,101,-111,103,110,-102,116,117,-119,118,117,-120,120,121,-123,122,121,-124,124,125,-127,126,125,-128,125,128,-128,128,125,-130,129,130,-129,128,130,-132,132,133,-135,134,133,-136,136,137,-139,137,136,-140,140,141,-143,141,140,-144,144,145,-147,144,146,-148,148,149,-151,150,151,-149,152,153,-155,152,154,-156,156,157,-159,157,156,-160,160,161,-163,161,160,-164,150,158,-152,158,150,-157,151,157,-149,157,151,-159,148,157,-150,159,149,-158,156,149,-160,149,156,-151,164,165,-167,165,164,-168,168,164,-167,168,166,-170,170,167,-172,167,170,-166,172,173,-175,173,172,-176,173,176,-178,176,173,-176,178,172,-175,178,174,-180,180,181,-183,181,180,-184,184,185,-187,184,186,-188,188,189,-191,189,188,-192,192,193,-192,191,193,-190,194,190,-196,190,194,-189,196,197,-199,197,196,-200,198,200,-197,200,201,-197,202,203,-200,199,203,-198,204,205,-207,205,207,-207,208,209,-211,210,209,-212,212,213,-215,212,214,-216,215,216,-213,216,215,-218,212,216,-214,213,216,-219,214,217,-216,217,214,-220,213,219,-215,219,213,-219,217,218,-217,218,217,-220,220,221,-223,220,222,-224,224,225,-227,226,225,-228,223,226,-221,226,223,-225,228,229,-231,228,230,-232,232,233,-235,233,232,-236,236,237,-239,238,237,-240,240,238,-240,238,240,-242,242,243,-241,240,243,-242,237,243,-243,243,237,-237,241,243,-239,243,236,-239,242,239,-238,239,242,-241,
  745. 244,245,-247,245,244,-248,248,246,-246,246,248,-250,249,248,-251,250,248,-252,247,250,-252,250,247,-245,249,250,-247,250,244,-247,247,251,-246,245,251,-249,252,253,-255,253,252,-256,256,254,-254,254,256,-258,257,256,-259,258,256,-260,255,258,-260,258,255,-253,257,258,-255,258,252,-255,255,259,-254,253,259,-257,260,261,-263,262,261,-264,264,262,-264,262,264,-266,266,267,-265,264,267,-266,261,267,-267,267,261,-261,265,267,-263,267,260,-263,266,263,-262,263,266,-265,268,269,-271,269,268,-272,272,268,-274,268,270,-274,269,271,-275,274,271,-276,276,277,-279,277,276,-280,280,281,-283,282,281,-284,284,285,-287,285,284,-288,288,286,-290,286,288,-285,287,290,-286,290,287,-292,292,293,-295,292,294,-296,296,297,-299,297,296,-300,4,6,-301,16,300,-7,300,16,-18,36,38,-302,302,301,-39,301,302,-304,302,304,-304,304,302,-43,304,42,-42,40,305,-44,305,306,-44,307,43,-307,306,308,-308,308,306,-38,308,37,-40,309,97,-97,96,104,-310,104,96,-106,131,310,-129,310,126,-129,127,128,-127,311,195,-191,190,193,-312,193,190,-190,312,200,-199,198,203,-313,203,198,-198,223,222,-314,313,224,-224,224,313,-226,221,220,-315,220,226,-315,314,226,-228,228,231,-316,316,228,-316,233,316,-316,235,316,-234,317,5,-5,4,300,-318,300,318,-318,318,300,-18,1,318,-18,1,17,-3,7,5,-318,318,7,-318,7,318,-320,1,319,-319,319,1,-4,319,6,-8,6,319,-17,3,16,-320,16,3,-1,9,320,-11,320,9,-322,321,322,-321,321,13,-323,13,321,-16,10,323,-12,323,10,-321,320,324,-324,324,320,-323,322,12,-325,12,322,-14,323,8,-12,8,323,-326,324,325,-324,324,12,-326,14,325,-13,325,9,-9,9,325,-322,325,14,-322,15,321,-15,326,24,-24,24,326,-328,34,327,-327,327,34,-36,24,328,-23,24,327,-329,327,329,-329,329,327,-36,35,20,-330,35,21,-21,25,330,-24,326,23,-331,331,326,-331,326,331,-35,331,19,-35,18,34,-20,22,330,-26,330,22,-329,331,330,-329,331,328,-330,20,331,-330,331,20,-20,28,332,-27,332,28,-334,333,334,-333,334,333,-336,335,30,-335,30,335,-34,26,336,-30,336,26,-333,332,337,-337,337,332,-335,334,32,-338,32,334,-31,29,336,-28,338,27,-337,336,337,-339,339,338,-338,32,339,-338,339,32,-32,338,28,-28,28,
  746. 338,-334,339,333,-339,333,339,-336,31,335,-340,335,31,-34,340,49,-52,340,341,-50,341,340,-343,343,341,-343,46,341,-344,344,46,-344,44,46,-345,345,45,-48,345,346,-46,346,345,-348,347,348,-347,349,348,-348,348,349,-351,48,350,-350,50,350,-49,52,54,-352,351,54,-353,353,352,-55,352,353,-355,353,355,-355,57,355,-354,355,57,-60,356,53,-56,356,357,-54,357,356,-359,358,359,-358,358,56,-360,58,359,-57,360,61,-64,360,361,-62,361,360,-363,362,363,-362,364,363,-363,363,364,-366,64,365,-365,67,64,-365,366,66,-66,366,367,-67,367,366,-369,60,367,-369,367,60,-63,369,70,-72,70,369,-371,73,370,-370,370,73,-76,68,371,-70,371,68,-373,372,74,-372,74,372,-73,70,370,-69,372,68,-371,370,75,-373,72,372,-76,79,373,-79,373,79,-81,373,80,-84,76,374,-78,81,77,-375,81,374,-83,375,87,-86,87,375,-377,91,376,-376,376,91,-89,377,96,-99,106,96,-378,96,106,-106,378,92,-96,92,378,-380,112,379,-379,379,112,-115,97,380,-100,380,97,-310,309,107,-381,107,309,-105,93,381,-95,381,93,-383,382,115,-382,115,382,-114,119,383,-119,384,118,-384,383,122,-385,123,384,-123,116,385,-118,385,116,-387,386,120,-386,120,386,-122,384,116,-119,116,384,-387,123,386,-385,386,123,-122,124,129,-126,129,124,-388,129,387,-131,135,388,-135,388,135,-390,389,139,-389,139,389,-138,390,133,-133,133,390,-392,136,391,-391,391,136,-139,147,392,-145,393,144,-393,392,154,-394,153,393,-155,143,394,-142,395,141,-395,394,161,-396,163,395,-162,145,396,-147,396,145,-398,397,155,-397,155,397,-153,142,398,-141,398,142,-400,399,162,-399,162,399,-161,165,170,-401,169,165,-401,166,165,-170,167,401,-172,167,168,-402,168,167,-165,181,402,-183,402,181,-404,403,187,-403,187,403,-185,173,177,-405,179,173,-405,174,173,-180,175,405,-177,175,178,-406,178,175,-173,188,194,-407,406,192,-189,188,192,-192,205,407,-208,407,205,-409,408,208,-408,208,408,-210,196,201,-410,409,202,-197,196,202,-200,229,410,-231,410,229,-412,411,234,-411,234,411,-233,270,269,-274,273,269,-413,269,274,-413,413,268,-273,268,413,-272,271,413,-276,286,285,-290,289,285,-415,285,290,-415,415,284,-289,284,415,-288,287,415,-292,293,416,-295,
  747. 416,293,-418,417,297,-417,297,417,-299,292,417,-294,417,292,-419,418,298,-418,298,418,-297,418,292,-296,295,419,-419,419,296,-419,296,419,-300,38,42,-303,37,42,-39,42,37,-421,42,420,-41,306,420,-38,305,40,-421,420,306,-306,356,56,-359,56,356,-56,55,354,-57,354,55,-53,354,59,-57,354,355,-60,351,354,-53,354,351,-353,371,71,-70,71,371,-370,371,73,-370,73,371,-75,78,373,-77,374,76,-374,373,82,-375,82,373,-84,376,86,-88,86,376,-422,376,90,-422,90,376,-89,84,375,-86,375,84,-423,422,89,-376,91,375,-90,86,422,-85,422,86,-422,421,90,-423,89,422,-91,99,377,-99,377,99,-381,107,377,-381,377,107,-107,379,93,-93,93,379,-383,379,113,-383,113,379,-115,94,378,-96,378,94,-382,115,378,-382,378,115,-113,117,385,-120,383,119,-386,385,122,-384,122,385,-121,310,124,-127,124,310,-388,310,130,-388,130,310,-132,133,391,-136,389,135,-392,391,137,-390,137,391,-139,134,390,-133,390,134,-389,139,390,-389,390,139,-137,146,392,-148,392,146,-397,396,155,-393,154,392,-156,393,145,-145,145,393,-398,393,152,-398,152,393,-154,141,395,-143,399,142,-396,395,160,-400,160,395,-164,140,394,-144,394,140,-399,398,162,-395,161,394,-163,171,400,-171,400,171,-402,168,400,-402,169,400,-169,423,183,-181,424,183,-424,423,185,-425,185,423,-187,402,180,-183,423,180,-403,402,186,-424,186,402,-188,424,181,-184,181,424,-404,424,184,-404,184,424,-186,176,404,-178,404,176,-406,178,404,-406,179,404,-179,195,406,-195,406,195,-312,311,193,-407,406,193,-193,206,425,-205,204,425,-427,425,211,-427,211,425,-211,207,407,-207,206,407,-426,407,210,-426,210,407,-209,426,205,-205,205,426,-409,426,209,-409,209,426,-212,200,409,-202,409,200,-313,312,203,-410,409,203,-203,313,227,-226,314,227,-314,313,221,-315,221,313,-223,316,229,-229,411,229,-317,316,232,-412,232,316,-236,230,315,-232,315,230,-411,234,315,-411,315,234,-234,273,412,-273,272,412,-414,412,275,-414,275,412,-275,278,427,-277,427,278,-429,428,282,-428,427,282,-284,277,429,-279,278,429,-429,429,282,-429,282,429,-281,279,430,-278,430,429,-278,430,280,-430,280,430,-282,427,279,-277,279,427,-431,427,281,-431,281,427,-284,289,
  748. 414,-289,288,414,-416,414,291,-416,291,414,-291,294,419,-296,419,294,-417,416,297,-420,419,297,-300,46,49,-342,431,49,-47,431,46,-46,49,431,-51,431,45,-347,50,431,-351,431,346,-349,431,348,-351,54,57,-354,432,57,-55,432,54,-54,57,432,-59,432,53,-358,359,58,-433,432,357,-360,64,363,-366,363,64,-62,61,361,-364,66,61,-65,61,66,-434,62,61,-434,433,66,-368,367,62,-434,342,344,-344,344,342,-45,342,47,-45,340,51,-343,47,342,-435,342,51,-435,434,345,-48,48,434,-52,347,345,-435,349,434,-49,434,349,-348,303,36,-302,303,304,-42,435,36,-304,41,435,-304,36,435,-40,43,435,-42,435,308,-40,435,43,-308,308,435,-308,368,63,-61,366,65,-369,63,368,-437,65,436,-369,63,436,-361,436,65,-68,362,360,-437,364,436,-68,436,364,-363
  749. }
  750. Edges: *1089 {
  751. a: 0,1,2,3,4,6,7,8,9,10,12,13,14,15,16,18,19,20,21,22,24,25,28,29,30,31,32,34,35,36,37,38,40,41,42,43,44,45,46,48,49,50,51,52,54,55,58,59,60,61,62,63,65,66,67,68,69,71,72,73,74,75,77,78,79,80,81,82,84,85,86,87,89,90,91,92,93,94,96,97,98,99,101,102,103,104,105,107,108,109,110,112,113,114,115,116,118,119,120,121,122,124,125,126,127,130,131,132,134,136,137,138,139,140,142,143,144,145,146,148,149,150,151,152,154,155,156,157,158,160,161,162,163,164,166,167,168,169,170,171,172,174,175,176,178,179,180,181,182,184,185,186,187,190,192,193,198,203,205,210,211,212,214,215,216,217,218,220,221,222,223,224,226,227,228,229,232,233,234,235,238,239,240,241,242,244,245,246,247,248,250,251,252,253,254,256,257,258,259,260,262,263,264,265,266,267,268,270,271,272,274,275,276,277,278,280,281,282,283,284,286,287,288,289,292,294,295,301,303,306,312,313,314,316,317,318,320,322,323,324,325,326,328,330,331,332,334,335,336,337,338,341,342,344,346,347,348,349,350,352,353,354,355,356,358,359,360,361,362,364,365,366,367,368,370,372,373,374,376,378,379,380,382,383,384,385,387,388,390,391,392,394,396,397,398,399,400,402,403,404,406,407,408,409,410,412,413,414,415,418,419,421,424,425,426,430,431,432,437,438,444,445,446,448,449,450,451,452,454,455,456,457,460,462,463,464,466,467,468,469,470,472,473,474,475,476,478,479,480,482,484,485,486,487,488,490,492,494,497,499,504,510,511,512,514,515,516,518,520,521,523,524,526,527,528,530,533,535,541,546,547,548,550,551,552,554,556,557,559,560,562,563,564,566,569,571,577,582,583,584,586,587,588,590,592,593,594,595,596,598,600,602,605,607,612,618,619,620,622,623,624,625,626,628,631,632,634,635,636,637,638,640,641,642,643,644,646,647,648,649,650,652,653,654,655,656,658,660,661,664,665,666,667,668,670,671,672,673,674,676,677,679,680,681,683,686,688,689,690,692,694,695,696,697,700,701,704,705,706,708,709,711,713,714,715,718,719,722,723,725,726,727,730,732,733,735,736,741,743,744,745,750,752,753,754,760,761,762,766,769,770,772,776,778,779,780,782,783,785,786,789,791,793,795,796,800,801,803,809,810,814,
  752. 815,816,821,822,826,828,834,835,838,839,840,841,843,844,847,849,850,854,855,856,860,861,862,867,871,872,873,877,879,882,886,889,894,896,898,899,900,902,905,906,907,910,912,913,917,918,919,924,925,929,930,932,934,936,937,942,947,950,953,954,960,961,964,965,966,967,970,971,972,973,976,978,979,983,984,985,989,990,991,997,999,1001,1003,1005,1007,1008,1013,1014,1018,1020,1024,1026,1032,1034,1035,1036,1039,1040,1041,1043,1044,1046,1047,1049,1052,1053,1055,1056,1057,1060,1061,1062,1063,1065,1067,1069,1070,1071,1073,1074,1078,1079,1081,1082,1083,1085,1087,1088,1089,1090,1092,1094,1097,1098,1100,1101,1102,1105,1106,1107,1108,1110,1111,1113,1116,1118,1119,1120,1123,1124,1125,1126,1128,1130,1132,1133,1134,1136,1139,1140,1142,1143,1144,1147,1148,1149,1151,1154,1155,1157,1159,1160,1161,1163,1166,1167,1168,1171,1172,1173,1174,1177,1180,1184,1186,1191,1192,1196,1199,1200,1201,1205,1207,1209,1211,1213,1214,1215,1217,1220,1221,1223,1224,1226,1230,1232,1234,1235,1236,1238,1241,1242,1243,1247,1248,1249,1254,1255,1258,1259,1260,1261,1264,1266,1267,1269,1271,1272,1273,1275,1278,1279,1282,1283,1284,1285,1288,1290,1294,1296,1302,1306,1307,1309,1311,1312,1315,1316,1317,1318,1321,1323,1325,1327,1328,1329,1331,1334,1335,1336,1338,1340,1341,1342,1344,1347,1348,1350,1352,1353,1354,1356,1359,1360,1363,1364,1365,1366,1369,1371,1372,1375,1376,1377,1378,1381,1384,1385,1386,1388,1392,1393,1395,1396,1401,1402,1405,1406,1407,1408,1411,1414,1415,1416,1418,1422,1423,1425,1426,1432,1433,1434,1435,1440,1441,1444,1445,1446,1447,1450,1453,1454,1455,1456,1461,1462,1465,1466,1467,1468,1471,1474,1477,1478,1480,1482,1484,1486,1489,1492,1495,1496,1498,1500,1502,1504,1507,1509,1510,1513,1514,1515,1516,1519,1521,1525,1526,1527,1531,1535,1536,1537,1539,1543,1545,1548,1552,1553,1555,1557,1562,1566,1571,1572,1573,1577,1578,1584,1590,1594,1596,1603,1607,1608,1614,1618,1619,1620,1621,1626,1630,1631,1632,1633,1638,1643,1645,1650,1655,1656,1662,1666,1668,1674,1679,1680,1687,1691,1692,1698,1702,1704,1711,1715,1716,1722,1727,1728,1734,1739,1741,1746,1750,1752,1759,1763,
  753. 1764,1770,1775,1777,1782,1787,1788,1794,1796,1797,1799,1800,1801,1804,1806,1811,1812,1818,1822,1824,1830,1835,1836,1842,1847,1849,1854,1855,1858,1859,1860,1861,1864,1867,1870,1872,1878,1882,1884,1890,1895,1897,1902,1907,1908,1914,1919,1920,1926,1931,1932,1939,1942,1944,1950,1951,1954,1955,1956,1957,1961,1962,1963,1966,1968,1972,1974,1975,1977,1980,1984,1986,1990,1992,1999,2002,2004,2010,2015,2017,2022,2025,2027,2030,2032,2036,2038,2042,2046,2049,2051,2054,2056,2060,2063,2067,2071,2072,2076,2080,2081,2084,2087,2091,2095,2097,2101,2104,2105,2107,2109,2112,2117,2118,2124,2129,2130,2132,2133,2137,2139,2142,2147,2151,2155,2158,2159,2160,2164,2168,2171,2172
  754. }
  755. GeometryVersion: 124
  756. LayerElementNormal: 0 {
  757. Version: 102
  758. Name: ""
  759. MappingInformationType: "ByPolygonVertex"
  760. ReferenceInformationType: "Direct"
  761. Normals: *6534 {
  762. a: 0.848501980304718,-0.345685988664627,-0.400681465864182,0.835786461830139,0.31539112329483,0.449432343244553,0.836801648139954,-0.371034681797028,0.402612090110779,0.848501980304718,-0.345685988664627,-0.400681465864182,0.646070003509521,0.53576534986496,-0.54364424943924,0.835786461830139,0.31539112329483,0.449432343244553,-0.889212727546692,-0.299027293920517,0.346242129802704,-0.952962756156921,0.126011595129967,0.275650352239609,-0.962931215763092,-0.252572119235992,-0.0947145447134972,-0.952962756156921,0.126011595129967,0.275650352239609,-0.96048104763031,0.196819886565208,-0.196819886565208,-0.962931215763092,-0.252572119235992,-0.0947145447134972,-0.818466424942017,0.464322298765183,0.338404387235641,-0.858640551567078,0.354484617710114,-0.370239496231079,-0.834438860416412,-0.385731160640717,-0.39360323548317,-0.834438860416412,-0.385731160640717,-0.39360323548317,-0.605605006217957,-0.542684972286224,0.582009971141815,-0.818466424942017,0.464322298765183,0.338404387235641,0.782614827156067,-0.403165191411972,0.474312037229538,0.802155554294586,-0.385349243879318,-0.456127673387527,0.777194023132324,0.345419585704803,0.525979816913605,0.802155554294586,-0.385349243879318,-0.456127673387527,0.566490232944489,0.558622360229492,-0.605829894542694,0.777194023132324,0.345419585704803,0.525979816913605,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.950343310832977,-0.212060078978539,0.227768227458,-0.885742247104645,0.324244946241379,0.332153350114822,-0.936514437198639,0.243965968489647,-0.251835823059082,-0.950343310832977,-0.212060078978539,0.227768227458,-0.936514437198639,0.243965968489647,-0.251835823059082,-0.920746207237244,-0.291176170110703,-0.259697645902634,
  763. 0.800671339035034,0.219792142510414,-0.557330071926117,0.858880341053009,-0.409741044044495,0.307305812835693,0.762834191322327,-0.424670577049255,-0.487584739923477,0.858880341053009,-0.409741044044495,0.307305812835693,0.800671339035034,0.219792142510414,-0.557330071926117,0.526499271392822,0.597223043441772,0.605081260204315,0.834438860416412,-0.385731160640717,0.39360323548317,0.818466424942017,0.464322298765183,-0.338404387235641,0.858640551567078,0.354484617710114,0.370239496231079,0.834438860416412,-0.385731160640717,0.39360323548317,0.605605006217957,-0.542684972286224,-0.582009971141815,0.818466424942017,0.464322298765183,-0.338404387235641,-0.802155554294586,-0.385349243879318,0.456127673387527,-0.777194023132324,0.345419585704803,-0.525979816913605,-0.782614827156067,-0.403165191411972,-0.474312037229538,-0.802155554294586,-0.385349243879318,0.456127673387527,-0.566490232944489,0.558622360229492,0.605829894542694,-0.777194023132324,0.345419585704803,-0.525979816913605,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,
  764. 0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.614097118377686,0.747938811779022,-0.251937299966812,0.906383275985718,0.417724460363388,0.0630527511239052,0.888168394565582,-0.448014140129089,-0.102178663015366,0.888168394565582,-0.448014140129089,-0.102178663015366,0.906383275985718,0.417724460363388,0.0630527511239052,0.900911450386047,-0.426747560501099,0.0790273174643517,-0.904782950878143,0.41698694229126,-0.0865444615483284,-0.900911450386047,-0.426747560501099,0.0790273174643517,-0.52695494890213,0.833689987659454,0.165164992213249,-0.900911450386047,-0.426747560501099,0.0790273174643517,-0.904782950878143,0.41698694229126,-0.0865444615483284,-0.828313767910004,-0.552209138870239,-0.0946644246578217,0.457302898168564,0.859414100646973,-0.228651449084282,0.814617455005646,0.577350318431854,0.0553623549640179,0.799293518066406,-0.587715864181519,-0.125379368662834,0.799293518066406,-0.587715864181519,-0.125379368662834,0.814617455005646,0.577350318431854,0.0553623549640179,0.834930539131165,-0.543492496013641,0.0866437330842018,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,-0.905905067920685,0.417504072189331,-0.0708969160914421,-0.917605519294739,-0.395519614219666,0.0395519621670246,-0.541747450828552,0.832249760627747,0.117771193385124,-0.917605519294739,-0.395519614219666,0.0395519621670246,-0.905905067920685,0.417504072189331,-0.0708969160914421,-0.835474908351898,-0.543846845626831,-0.0788183808326721,
  765. 0.473440021276474,0.836410701274872,-0.276173323392868,0.813321232795715,0.576431572437286,0.0789632275700569,0.80305004119873,-0.574731886386871,-0.157460793852806,0.80305004119873,-0.574731886386871,-0.157460793852806,0.813321232795715,0.576431572437286,0.0789632275700569,0.836540937423706,-0.536648869514465,0.110486537218094,-0.914719521999359,-0.402161180973053,0.0394275672733784,-0.904810965061188,0.409131914377213,-0.118018828332424,-0.826233983039856,-0.550822615623474,-0.118033424019814,-0.904810965061188,0.409131914377213,-0.118018828332424,-0.914719521999359,-0.402161180973053,0.0394275672733784,-0.835474908351898,0.543846845626831,0.0788183808326721,0.899284183979034,-0.433865189552307,0.0552192069590092,0.668587028980255,-0.684318482875824,-0.291032016277313,0.887976288795471,0.440059065818787,-0.13358935713768,0.899284183979034,-0.433865189552307,0.0552192069590092,0.887976288795471,0.440059065818787,-0.13358935713768,0.905905067920685,0.417504072189331,0.0708969160914421,0.449684023857117,0.844143688678741,-0.291900157928467,0.880798280239105,0.463991940021515,0.0943712443113327,0.813321232795715,-0.576431572437286,-0.0789632275700569,0.813321232795715,-0.576431572437286,-0.0789632275700569,0.880798280239105,0.463991940021515,0.0943712443113327,0.871077418327332,-0.478700220584869,0.109865620732307,0.707871913909912,-0.700006663799286,0.0943829268217087,0.686188995838165,0.717737972736359,-0.118308454751968,0.588801503181458,0.800770044326782,0.109909616410732,0.686188995838165,0.717737972736359,-0.118308454751968,0.707871913909912,-0.700006663799286,0.0943829268217087,0.629843175411224,-0.763684809207916,-0.141714707016945,-0.858880341053009,0.496417075395584,0.126074180006981,-0.480538457632065,0.850789427757263,-0.212697356939316,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.837637186050415,-0.529449880123138,0.134338036179543,-0.858880341053009,0.496417075395584,0.126074180006981,-0.900321245193481,-0.42646798491478,0.0868731066584587,
  766. -0.914719521999359,0.402161180973053,-0.0394275672733784,-0.835968494415283,-0.54416811466217,-0.0709784477949142,-0.914719521999359,0.402161180973053,-0.0394275672733784,-0.900321245193481,-0.42646798491478,0.0868731066584587,-0.855672121047974,0.510263204574585,0.0863522365689278,-0.908332049846649,0.41072404384613,0.0789853930473328,-0.915545403957367,-0.386739015579224,-0.110496863722801,-0.874341070652008,-0.472616791725159,0.110277250409126,-0.915545403957367,-0.386739015579224,-0.110496863722801,-0.908332049846649,0.41072404384613,0.0789853930473328,-0.856332004070282,0.502800464630127,-0.117843858897686,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.614097118377686,0.747938811779022,0.251937299966812,-0.906383275985718,0.417724460363388,-0.0630527511239052,-0.888168394565582,-0.448014140129089,0.102178663015366,-0.888168394565582,-0.448014140129089,0.102178663015366,-0.906383275985718,0.417724460363388,-0.0630527511239052,-0.900911450386047,-0.426747560501099,-0.0790273174643517,0.52695494890213,0.833689987659454,-0.165164992213249,0.904782950878143,0.41698694229126,0.0865444615483284,0.900911450386047,-0.426747560501099,-0.0790273174643517,0.900911450386047,-0.426747560501099,-0.0790273174643517,0.904782950878143,0.41698694229126,0.0865444615483284,0.828313767910004,-0.552209138870239,0.0946644246578217,-0.455606669187546,0.856226325035095,0.243513911962509,-0.813321232795715,0.576431572437286,-0.0789632275700569,
  767. -0.795620977878571,-0.590807676315308,0.133916392922401,-0.795620977878571,-0.590807676315308,0.133916392922401,-0.813321232795715,0.576431572437286,-0.0789632275700569,-0.833689987659454,-0.542684972286224,-0.10224499553442,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.550294697284698,0.825442135334015,-0.125781655311584,0.903441667556763,0.416368782520294,0.102128185331821,0.918841898441315,-0.392667472362518,-0.0392667464911938,0.918841898441315,-0.392667472362518,-0.0392667464911938,0.903441667556763,0.416368782520294,0.102128185331821,0.831267714500427,-0.546261608600616,0.102918848395348,-0.465187430381775,0.835760474205017,0.291727721691132,-0.815441846847534,0.572377502918243,-0.0862486585974693,-0.800967633724213,-0.573241531848907,0.172757729887962,-0.800967633724213,-0.573241531848907,0.172757729887962,-0.815441846847534,0.572377502918243,-0.0862486585974693,-0.835786461830139,-0.536164879798889,-0.118271671235561,0.90394401550293,0.408739924430847,0.12576612830162,0.914406895637512,-0.402023702859879,-0.0472969077527523,0.831353366374969,0.549006938934326,-0.0862725228071213,0.914406895637512,-0.402023702859879,-0.0472969077527523,0.90394401550293,0.408739924430847,0.12576612830162,0.824601709842682,-0.54973441362381,0.133506938815117,-0.880145311355591,0.447931081056595,0.157168805599213,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.646893739700317,-0.694227457046509,0.315557897090912,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.880145311355591,0.447931081056595,0.157168805599213,-0.902384161949158,0.423728227615356,-0.0784681886434555,-0.906383275985718,0.417724460363388,0.0630527511239052,-0.394631624221802,0.891867518424988,-0.220993712544441,-0.828313767910004,-0.552209138870239,-0.0946644246578217,
  768. -0.906383275985718,0.417724460363388,0.0630527511239052,-0.828313767910004,-0.552209138870239,-0.0946644246578217,-0.890067338943481,-0.448972016572952,0.0787670239806175,-0.716158151626587,-0.69254857301712,-0.08656857162714,-0.622781336307526,-0.764680862426758,0.165549457073212,-0.676745891571045,0.723960757255554,0.133775353431702,-0.676745891571045,0.723960757255554,0.133775353431702,-0.58412766456604,0.805148959159851,-0.102617025375366,-0.716158151626587,-0.69254857301712,-0.08656857162714,0.861209571361542,0.497763335704803,-0.102713063359261,0.488128453493118,0.850288271903992,0.196825981140137,0.786938190460205,-0.613811790943146,0.0629550591111183,0.861209571361542,0.497763335704803,-0.102713063359261,0.786938190460205,-0.613811790943146,0.0629550591111183,0.838886797428131,-0.533124268054962,-0.109760887920856,0.915175020694733,0.402361452579498,0.0236683208495378,0.898222744464874,-0.425473928451538,-0.110308058559895,0.852271616458893,0.512941241264343,-0.10258824378252,0.898222744464874,-0.425473928451538,-0.110308058559895,0.915175020694733,0.402361452579498,0.0236683208495378,0.836801648139954,-0.544710457324982,0.0552604869008064,0.913839221000671,-0.3860182762146,0.126046791672707,0.907087981700897,0.410161525011063,-0.0946526676416397,0.851582467556,0.504641473293304,0.141930401325226,0.907087981700897,0.410161525011063,-0.0946526676416397,0.913839221000671,-0.3860182762146,0.126046791672707,0.867541432380676,-0.481091171503067,-0.126187846064568,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,
  769. 0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.023615462705493,-2.21982705345433e-016,0.999721229076386,-1,0,0,-0.996883630752563,0.0784947723150253,-0.00784947723150253,-1,0,0,-0.996883630752563,0.0784947723150253,-0.00784947723150253,-1,0,0,-0.996883630752563,0.0784947723150253,-0.00784947723150253,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-1,0,0,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-1,0,0,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-1,0,0,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.996883630752563,0.0784947723150253,0.00784947723150253,1,0,0,0.996883630752563,0.0784947723150253,0.00784947723150253,1,0,0,0.996883630752563,0.0784947723150253,0.00784947723150253,1,0,0,0,2.22044604925031e-016,-1,
  770. 0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.999225914478302,0.0393396019935608,8.73514638256818e-018,1,0,0,0.999225914478302,0.0393396019935608,8.73514638256818e-018,1,0,0,0.999225914478302,0.0393396019935608,8.73514638256818e-018,1,0,0,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.432588368654251,-0.0943829193711281,0.896637678146362,0.668587028980255,0.291032016277313,0.684318482875824,-0.456198185682297,0.125847786664963,0.880934476852417,0.432588368654251,-0.0943829193711281,0.896637678146362,-0.456198185682297,0.125847786664963,0.880934476852417,-0.40949958562851,-0.110249891877174,0.905624091625214,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,
  771. -0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,0,0.999504387378693,0.0314804539084435,0,0.999504387378693,0.0314804539084435,0,0.999504387378693,0.0314804539084435,0,0.999504387378693,0.0314804539084435,0,0.999504387378693,0.0314804539084435,0,0.999225914478302,0.0393396019935608,-0.385707229375839,-0.0551010333001614,-0.920974373817444,0.394226640462875,0.149806126952171,-0.906721293926239,0.503251075744629,-0.110086180269718,-0.857099533081055,0.394226640462875,0.149806126952171,-0.906721293926239,-0.385707229375839,-0.0551010333001614,-0.920974373817444,-0.488249510526657,0.157499849796295,-0.858374178409576,0.486143708229065,-0.0784102752804756,0.870354056358337,0.653340816497803,0.354220926761627,0.669083952903748,-0.55109566450119,0.196819886565208,0.810897946357727,0.486143708229065,-0.0784102752804756,0.870354056358337,-0.55109566450119,0.196819886565208,0.810897946357727,-0.576054573059082,-0.0868027433753014,0.812789261341095,-0.772252261638641,-0.315205007791519,-0.551608741283417,-0.581668317317963,0.0786038190126419,-0.809619307518005,0.566314995288849,-0.188771679997444,-0.802279591560364,0.566314995288849,-0.188771679997444,-0.802279591560364,-0.581668317317963,0.0786038190126419,-0.809619307518005,0.567774593830109,0.0709718242287636,-0.82011890411377,0,-0.999876022338867,0.0157460793852806,0,-0.999876022338867,0.0157460793852806,0,-0.999876022338867,0.0157460793852806,0,-0.999876022338867,0.0157460793852806,0,-0.999876022338867,0.0157460793852806,0,-0.999876022338867,0.0157460793852806,-0.440780937671661,-0.0236132647842169,-0.897304058074951,-0.699985027313232,0.306735008955002,-0.644930005073547,0.426428079605103,0.189523592591286,-0.884443402290344,-0.440780937671661,-0.0236132647842169,-0.897304058074951,
  772. 0.426428079605103,0.189523592591286,-0.884443402290344,0.409005284309387,-0.0157309733331203,-0.912396430969238,-0.385707229375839,0.0551010333001614,0.920974373817444,0.400372684001923,-0.102055780589581,0.910651624202728,0.504061996936798,0.0945116281509399,0.858480632305145,0.400372684001923,-0.102055780589581,0.910651624202728,-0.385707229375839,0.0551010333001614,0.920974373817444,-0.480956494808197,-0.173459723591805,0.859414100646973,0.0315744653344154,-0.726212739944458,0.686744570732117,0.0787596926093102,-0.70883721113205,0.700961291790009,0.039457019418478,-0.72600919008255,0.686552107334137,0.039457019418478,-0.72600919008255,0.686552107334137,0.0787596926093102,-0.70883721113205,0.700961291790009,0.0787596926093102,-0.70883721113205,0.700961291790009,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.0787596926093102,0.700961291790009,-0.70883721113205,-0.039243757724762,0.722085177898407,-0.690690159797668,-0.0787596926093102,0.700961291790009,-0.70883721113205,-0.0787596926093102,0.700961291790009,-0.70883721113205,-0.039243757724762,0.722085177898407,-0.690690159797668,-0.039457019418478,0.72600919008255,-0.686552107334137,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999845147132874,-0.0157455932348967,0.00787279661744833,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,-0.707106828689575,-0.707106828689575,
  773. 0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0787011310458183,-0.731920540332794,-0.676829695701599,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0787011310458183,-0.731920540332794,-0.676829695701599,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0787011310458183,-0.731920540332794,-0.676829695701599,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,-0.0394668504595757,0.718296706676483,0.694616615772247,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.0394668504595757,0.718296706676483,0.694616615772247,-0.0394668504595757,0.718296706676483,0.694616615772247,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0.0394668504595757,-0.718296706676483,-0.694616615772247,
  774. 0.0787011310458183,-0.731920540332794,-0.676829695701599,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0787011310458183,-0.731920540332794,-0.676829695701599,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0787011310458183,-0.731920540332794,-0.676829695701599,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,-0.0394668504595757,0.718296706676483,0.694616615772247,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.0394668504595757,0.718296706676483,0.694616615772247,-0.0394668504595757,0.718296706676483,0.694616615772247,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,-0.678935587406158,0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0,0.678935587406158,-0.734197854995728,0.0315744653344154,-0.726212739944458,0.686744570732117,0.0787596926093102,-0.70883721113205,0.700961291790009,0.039457019418478,-0.72600919008255,0.686552107334137,0.039457019418478,-0.72600919008255,0.686552107334137,0.0787596926093102,-0.70883721113205,0.700961291790009,
  775. 0.0787596926093102,-0.70883721113205,0.700961291790009,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.0787596926093102,0.700961291790009,-0.70883721113205,-0.039243757724762,0.722085177898407,-0.690690159797668,-0.0787596926093102,0.700961291790009,-0.70883721113205,-0.0787596926093102,0.700961291790009,-0.70883721113205,-0.039243757724762,0.722085177898407,-0.690690159797668,-0.039457019418478,0.72600919008255,-0.686552107334137,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999845147132874,-0.0157455932348967,0.00787279661744833,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,0.707106828689575,0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,
  776. 0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.998361051082611,-0.0157222207635641,0.0550277717411518,0.999845147132874,-0.0157455932348967,-0.00787279661744833,
  777. 0.998854994773865,-0.00786499958485365,0.047189999371767,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.998854994773865,-0.00786499958485365,0.047189999371767,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.998854994773865,-0.00786499958485365,0.047189999371767,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.998885869979858,-1.04786090217166e-017,0.047191459685564,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.998885869979858,-1.04786090217166e-017,0.047191459685564,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.998854994773865,0.00786499958485365,-0.047189999371767,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.998854994773865,0.00786499958485365,-0.047189999371767,0.998607933521271,0.023589164018631,0.047178328037262,-0.998361051082611,0.0157222207635641,-0.0550277717411518,-0.999194979667664,-0.00786767713725567,-0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.0393383838236332,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.999225914478302,-8.73514638256818e-018,0.0393396019935608,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.999225914478302,-8.73514638256818e-018,0.0393396019935608,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.999225914478302,-8.73514638256818e-018,0.0393396019935608,-0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.76290500164032,-0.385384976863861,0.519089996814728,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,
  778. 0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999597251415253,0.0157416891306639,0,1,2.22044604925031e-016,-0.0078735277056694,0.999938011169434,0.0078735277056694,0,1,2.22044604925031e-016,-0.0236125327646732,0.999597251415253,0.0157416891306639,0,1,2.22044604925031e-016,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.047178328037262,0.998607933521271,0.023589164018631,-0.0393347330391407,0.999102234840393,0.0157338920980692,-0.0393347330391407,0.999102234840393,0.0157338920980692,0,0.999969005584717,-0.00787377171218395,-0.023614726960659,0.999690115451813,0.00787157565355301,0,0.999969005584717,-0.00787377171218395,-0.0393347330391407,0.999102234840393,0.0157338920980692,0,0.999969005584717,-0.00787377171218395,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999752104282379,0.0157441273331642,0.0157441273331642,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999876022338867,3.49633197622281e-018,-0.0157460793852806,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,
  779. 0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.0235687755048275,-0.997744739055634,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.0628500655293465,0.0235796887427568,-0.998206853866577,-0.055019274353981,0.0235796887427568,-0.998206853866577,-0.055019274353981,0.0235687755048275,-0.997744739055634,-0.0628500655293465,0.0235796887427568,-0.998206853866577,-0.055019274353981,0.0235971882939339,-0.99894767999649,-0.0393286496400833,0.0235796887427568,-0.998206853866577,-0.055019274353981,0.0235796887427568,-0.998206853866577,-0.055019274353981,0.0235971882939339,-0.99894767999649,-0.0393286496400833,0.0235796887427568,-0.998206853866577,-0.055019274353981,0.0235971882939339,-0.99894767999649,-0.0393286496400833,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0157455932348967,-0.00787279661744833,0.999845147132874,0,-2.22044604925031e-016,1,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0,-2.22044604925031e-016,1,-0.0157455932348967,-0.00787279661744833,0.999845147132874,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.0157460793852806,0.999876022338867,2.22017076354246e-016,
  780. 0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.0157460793852806,0.999876022338867,2.22017076354246e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,2.22044604925031e-016,-1,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,
  781. 0,-1,-2.22044604925031e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0236147306859493,-0.00787157658487558,-0.999690234661102,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0314794778823853,-0.00786986947059631,-0.999473392963409,
  782. 0.0236147306859493,-0.00787157658487558,-0.999690234661102,0.0314794778823853,-0.00786986947059631,-0.999473392963409,0,2.22044604925031e-016,-1,0.0236147306859493,-0.00787157658487558,-0.999690234661102,0,2.22044604925031e-016,-1,0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.0236147306859493,0.00787157658487558,0.999690234661102,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.0314794778823853,0.00786986947059631,0.999473392963409,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.0236147306859493,0.00787157658487558,0.999690234661102,0,-2.22044604925031e-016,1,-0.0314794778823853,0.00786986947059631,0.999473392963409,-0.0236147306859493,0.00787157658487558,0.999690234661102,-0.0314794778823853,0.00786986947059631,0.999473392963409,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,
  783. -0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0,-2.22044604925031e-016,1,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0,-2.22044604925031e-016,1,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,0.00787377171218395,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,
  784. 0,2.22044604925031e-016,-1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.0078735277056694,0.999938011169434,-0.0078735277056694,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,0,1,2.22044604925031e-016,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.0706540048122406,-0.0314017832279205,0.997006595134735,0.497639030218124,-0.529235184192657,0.687215805053711,0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,-0.0706540048122406,-0.0314017832279205,0.997006595134735,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.047191459685564,-2.21797218364874e-016,0.998885869979858,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,
  785. 0.047191459685564,-2.21797218364874e-016,0.998885869979858,0,-2.22044604925031e-016,1,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0,-2.22044604925031e-016,1,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.566911518573761,0.433057457208633,0.7007657289505,0,-2.22044604925031e-016,1,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0471856184303761,0.0157285407185555,-0.998762309551239,0.495311200618744,0.369517862796783,-0.786208212375641,0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393347330391407,-0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0550277717411518,-0.0157222207635641,-0.998361051082611,-0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0550277717411518,-0.0157222207635641,-0.998361051082611,-0.7007657289505,0.433057457208633,0.566911518573761,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,
  786. -0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.998854994773865,-0.00786499958485365,-0.047189999371767,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.998854994773865,-0.00786499958485365,-0.047189999371767,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.998854994773865,-0.00786499958485365,-0.047189999371767,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.99839198589325,-0.0314454175531864,-0.0471681281924248,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.998854994773865,-0.00786499958485365,-0.047189999371767,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.99839198589325,-0.0314454175531864,-0.0471681281924248,-0.998114347457886,-0.0392958410084248,0.0471550077199936,0.999194979667664,0.00786767713725567,0.0393383838236332,0.998762309551239,0.0157285407185555,-0.0471856184303761,0.786208212375641,0.369517862796783,0.495311200618744,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,-0.00786767713725567,-0.0393383838236332,0.998762309551239,0.0157285407185555,-0.0471856184303761,0.999194979667664,-0.00786767713725567,-0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999380588531494,-0.0157382767647505,0.031476553529501,0.999380588531494,-0.0157382767647505,0.031476553529501,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999194979667664,-0.00786767713725567,-0.0393383838236332,0.999380588531494,-0.0157382767647505,0.031476553529501,0.999102234840393,0.0157338920980692,0.0393347330391407,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999102234840393,0.0157338920980692,0.0393347330391407,
  787. 0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0550277717411518,-0.0157222207635641,0.998361051082611,0.495311200618744,-0.369517862796783,0.786208212375641,0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0550277717411518,-0.0157222207635641,0.998361051082611,-0.0393383838236332,0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.031476553529501,0.0157382767647505,0.999380588531494,0.031476553529501,0.0157382767647505,0.999380588531494,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999194979667664,0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0393383838236332,0.00786767713725567,0.999194979667664,0.031476553529501,0.0157382767647505,0.999380588531494,-0.0393383838236332,0.00786767713725567,0.999194979667664,0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0628364831209183,0.0314182415604591,0.997529208660126,-0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.560551524162292,0.54476135969162,0.623712301254272,-0.0628364831209183,0.0314182415604591,0.997529208660126,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0314804539084435,2.21934556816337e-016,-0.999504387378693,-0.047189999371767,0.00786499958485365,-0.998854994773865,0.047178328037262,0.023589164018631,-0.998607933521271,0.0314804539084435,2.21934556816337e-016,-0.999504387378693,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.047189999371767,0.00786499958485365,-0.998854994773865,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0314804539084435,2.21934556816337e-016,-0.999504387378693,0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.047191459685564,2.21797218364874e-016,-0.998885869979858,
  788. -0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0157455932348967,-0.00787279661744833,-0.999845147132874,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,
  789. 0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,
  790. 0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,-1,-2.22044604925031e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,
  791. 0,-1,-2.22044604925031e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0,1,2.22044604925031e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,
  792. -0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.031476553529501,-0.999380588531494,0.0157382767647505,-0.0078735277056694,-0.999938011169434,0.0078735277056694,0,-1,-2.22044604925031e-016,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.0078735277056694,-0.999938011169434,0.0078735277056694,0,-1,-2.22044604925031e-016,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0,-1,-2.22044604925031e-016,0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0078735277056694,0.999938011169434,-0.0078735277056694,0.031476553529501,0.999380588531494,-0.0157382767647505,0.0236125327646732,0.999597251415253,-0.0157416891306639,0,1,2.22044604925031e-016,0.0078735277056694,0.999938011169434,-0.0078735277056694,0,1,2.22044604925031e-016,0.0236125327646732,0.999597251415253,-0.0157416891306639,0,1,2.22044604925031e-016,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.998453617095947,-0.0550328753888607,0.00786183960735798,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.998453617095947,-0.0550328753888607,0.00786183960735798,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.998453617095947,-0.0550328753888607,0.00786183960735798,
  793. -0.0393347330391407,-0.999102234840393,0.0157338920980692,-0.047178328037262,-0.998607933521271,0.023589164018631,-0.023614726960659,-0.999690115451813,0.00787157565355301,0,-1,-2.22044604925031e-016,-0.0393347330391407,-0.999102234840393,0.0157338920980692,-0.023614726960659,-0.999690115451813,0.00787157565355301,0,-1,-2.22044604925031e-016,-0.0393347330391407,-0.999102234840393,0.0157338920980692,0,-1,-2.22044604925031e-016,0.0393347330391407,0.999102234840393,-0.0157338920980692,0.023614726960659,0.999690115451813,-0.00787157565355301,0.047178328037262,0.998607933521271,-0.023589164018631,0.0393347330391407,0.999102234840393,-0.0157338920980692,0,0.999969005584717,0.00787377171218395,0.023614726960659,0.999690115451813,-0.00787157565355301,0,0.999969005584717,0.00787377171218395,0.0393347330391407,0.999102234840393,-0.0157338920980692,0,0.999969005584717,0.00787377171218395,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.031476553529501,-0.999380588531494,-0.0157382767647505,0.0078735277056694,-0.999938011169434,-0.0078735277056694,0.0078735277056694,-0.999938011169434,-0.0078735277056694,0,-1,-2.22044604925031e-016,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,0.0393347330391407,-0.999102234840393,-0.0157338920980692,
  794. 0.047178328037262,-0.998607933521271,-0.023589164018631,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.023614726960659,-0.999690115451813,-0.00787157565355301,0,-1,-2.22044604925031e-016,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.0235687755048275,0.997744739055634,0.0628500655293465,-0.0235796887427568,0.998206853866577,0.055019274353981,-0.0235687755048275,0.997744739055634,0.0628500655293465,-0.0235796887427568,0.998206853866577,0.055019274353981,-0.0235687755048275,0.997744739055634,0.0628500655293465,-0.0235796887427568,0.998206853866577,0.055019274353981,-0.0235796887427568,0.998206853866577,0.055019274353981,-0.0235971882939339,0.99894767999649,0.0393286496400833,-0.0235796887427568,0.998206853866577,0.055019274353981,-0.0235971882939339,0.99894767999649,0.0393286496400833,-0.0235796887427568,0.998206853866577,0.055019274353981,-0.0235971882939339,0.99894767999649,0.0393286496400833,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.0550345741212368,0.998484432697296,2.21708081382065e-016,-0.0550345741212368,0.998484432697296,2.21708081382065e-016,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,
  795. -0.0550328753888607,0.998453617095947,-0.00786183960735798,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.0550345741212368,0.998484432697296,2.21708081382065e-016,-0.0550345741212368,0.998484432697296,2.21708081382065e-016,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.0550328753888607,0.998453617095947,-0.00786183960735798,0.15798556804657,-0.987409830093384,0.00789927877485752,0.102626599371433,-0.994688630104065,-0.00789435394108295,0.15798556804657,-0.987409830093384,0.00789927877485752,0.102626599371433,-0.994688630104065,-0.00789435394108295,0.15798556804657,-0.987409830093384,0.00789927877485752,0.102626599371433,-0.994688630104065,-0.00789435394108295,0.102626599371433,-0.994688630104065,-0.00789435394108295,0.047178328037262,-0.998607933521271,-0.023589164018631,0.102626599371433,-0.994688630104065,-0.00789435394108295,0.047178328037262,-0.998607933521271,-0.023589164018631,0.102626599371433,-0.994688630104065,-0.00789435394108295,0.047178328037262,-0.998607933521271,-0.023589164018631,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,
  796. -0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,-0.993883728981018,-0.110431522130966,-2.45207237028402e-017,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,-0.102626599371433,0.994688630104065,0.00789435394108295,-0.15798556804657,0.987409830093384,-0.00789927877485752,-0.15798556804657,0.987409830093384,-0.00789927877485752,-0.15798556804657,0.987409830093384,-0.00789927877485752,-0.102626599371433,0.994688630104065,0.00789435394108295,-0.102626599371433,0.994688630104065,0.00789435394108295,-0.102626599371433,0.994688630104065,0.00789435394108295,-0.0471856184303761,0.998762309551239,0.0157285407185555,-0.102626599371433,0.994688630104065,0.00789435394108295,-0.0471856184303761,0.998762309551239,0.0157285407185555,-0.102626599371433,0.994688630104065,0.00789435394108295,-0.0471856184303761,0.998762309551239,0.0157285407185555,0.0862884521484375,-0.00784440524876118,-0.996239423751831,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.0862884521484375,-0.00784440524876118,-0.996239423751831,0.0550328753888607,0.00786183960735798,-0.998453617095947,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.0550328753888607,0.00786183960735798,-0.998453617095947,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.165631830692291,0.0236616898328066,-0.985903739929199,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,
  797. -0.999194979667664,-0.00786767713725567,-0.0393383838236332,-0.165631830692291,0.0236616898328066,-0.985903739929199,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.999194979667664,-0.00786767713725567,-0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.0948090925812721,-2.21044404598112e-016,0.995495498180389,0.977074861526489,-0.00787963625043631,0.212750166654587,0.0948090925812721,-2.21044404598112e-016,0.995495498180389,0.999194979667664,0.00786767713725567,0.0393383838236332,0.0236147306859493,-0.00787157658487558,0.999690234661102,0.0236147306859493,-0.00787157658487558,0.999690234661102,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,0.0948090925812721,-2.21044404598112e-016,0.995495498180389,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,0.0236147306859493,-0.00787157658487558,0.999690234661102,-0.0784947723150253,-0.00784947723150253,0.996883630752563,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,-0.0393383838236332,0.00786767713725567,0.999194979667664,0.0948090925812721,-2.21044404598112e-016,0.995495498180389,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,-0.0784947723150253,-0.00784947723150253,0.996883630752563,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,-0.998885869979858,-1.04786090217166e-017,0.047191459685564,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,
  798. 0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.023615462705493,2.21982705345433e-016,-0.999721229076386,0,2.22044604925031e-016,-1,0.023615462705493,2.21982705345433e-016,-0.999721229076386,0,2.22044604925031e-016,-1,0.023615462705493,2.21982705345433e-016,-0.999721229076386,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,
  799. 0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,1,2.22044604925031e-016,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,
  800. 0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,0.00787377171218395,0,-1,-2.22044604925031e-016,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,1,2.22044604925031e-016,
  801. 0,0.999969005584717,0.00787377171218395,0,1,2.22044604925031e-016,0,0.999969005584717,0.00787377171218395,0,1,2.22044604925031e-016,0.995464503765106,-0.0948061496019363,0.00790051184594631,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.995464503765106,-0.0948061496019363,0.00790051184594631,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.995464503765106,-0.0948061496019363,0.00790051184594631,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.999721229076386,0.023615462705493,5.243686086563e-018,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.0393383838236332,-0.999194979667664,0.00786767713725567,-0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.047189999371767,-0.998854994773865,0.00786499958485365,-0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.0393383838236332,-0.999194979667664,0.00786767713725567,-0.0393383838236332,-0.999194979667664,0.00786767713725567,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.047189999371767,-0.998854994773865,0.00786499958485365,
  802. -0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.0393383838236332,-0.999194979667664,0.00786767713725567,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0393383838236332,0.999194979667664,-0.00786767713725567,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0393383838236332,0.999194979667664,-0.00786767713725567,0.0393383838236332,0.999194979667664,-0.00786767713725567,0.0393383838236332,0.999194979667664,-0.00786767713725567,0.0550328753888607,0.998453617095947,0.00786183960735798,0.0393383838236332,0.999194979667664,-0.00786767713725567,0.0550328753888607,0.998453617095947,0.00786183960735798,0.0393383838236332,0.999194979667664,-0.00786767713725567,0.0550328753888607,0.998453617095947,0.00786183960735798,0.998854994773865,-0.047189999371767,0.00786499958485365,0.999690115451813,-0.023614726960659,0.00787157565355301,0.998854994773865,-0.047189999371767,0.00786499958485365,0.999690115451813,-0.023614726960659,0.00787157565355301,0.998854994773865,-0.047189999371767,0.00786499958485365,0.999690115451813,-0.023614726960659,0.00787157565355301,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999690115451813,-0.023614726960659,0.00787157565355301,0.999690115451813,-0.023614726960659,0.00787157565355301,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999690115451813,-0.023614726960659,0.00787157565355301,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.995464503765106,-0.0948061496019363,-0.00790051184594631,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.995464503765106,-0.0948061496019363,-0.00790051184594631,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.995464503765106,-0.0948061496019363,-0.00790051184594631,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,
  803. -0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.047189999371767,-0.998854994773865,-0.00786499958485365,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.047189999371767,-0.998854994773865,-0.00786499958485365,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0236088801175356,0.999442577362061,0.0236088801175356,-0.0236088801175356,0.999442577362061,0.0236088801175356,-0.0236088801175356,0.999442577362061,0.0236088801175356,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999194979667664,0.00786767713725567,
  804. -0.0550328753888607,0.998453617095947,-0.00786183960735798,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0550328753888607,0.998453617095947,-0.00786183960735798,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0550328753888607,0.998453617095947,-0.00786183960735798,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0,0.999721229076386,-0.023615462705493,0,0.999721229076386,-0.023615462705493,0,0.999721229076386,-0.023615462705493,0,0.999721229076386,-0.023615462705493,0,0.999721229076386,-0.023615462705493,0,0.999721229076386,-0.023615462705493,0,0.999721229076386,-0.023615462705493,0,0.999876022338867,-0.0157460793852806,0,0.999721229076386,-0.023615462705493,0,0.999876022338867,-0.0157460793852806,0,0.999721229076386,-0.023615462705493,0,0.999876022338867,-0.0157460793852806,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999690115451813,-0.023614726960659,0.00787157565355301,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999690115451813,-0.023614726960659,0.00787157565355301,
  805. -0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999690115451813,-0.023614726960659,0.00787157565355301,0.999380588531494,0.031476553529501,0.0157382767647505,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999380588531494,0.031476553529501,0.0157382767647505,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999380588531494,0.031476553529501,0.0157382767647505,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999690115451813,0.023614726960659,-0.00787157565355301,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999690115451813,0.023614726960659,-0.00787157565355301,0.999690115451813,0.023614726960659,-0.00787157565355301,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.999225914478302,0.0393396019935608,8.73514638256818e-018,0.999225914478302,0.0393396019935608,8.73514638256818e-018,
  806. 0.998885869979858,0.047191459685564,1.04786090217166e-017,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0550073832273483,-0.99799108505249,-0.0314327888190746,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0550073832273483,-0.99799108505249,-0.0314327888190746,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0550073832273483,-0.99799108505249,-0.0314327888190746,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.0236037615686655,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.999225914478302,-0.0314716808497906,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.055019274353981,0.998206853866577,0.0235796887427568,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,
  807. -0.055019274353981,0.998206853866577,0.0235796887427568,-0.0393396019935608,0.999225914478302,2.21872723411188e-016,-0.055019274353981,0.998206853866577,0.0235796887427568,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.986179888248444,0.165678218007088,3.6787954462067e-017,0.993883728981018,0.110431522130966,2.45207237028402e-017,0.986179888248444,0.165678218007088,3.6787954462067e-017,0.993883728981018,0.110431522130966,2.45207237028402e-017,0.986179888248444,0.165678218007088,3.6787954462067e-017,0.993883728981018,0.110431522130966,2.45207237028402e-017,0.993883728981018,0.110431522130966,2.45207237028402e-017,0.997498512268066,0.0706888660788536,1.56960813410775e-017,0.993883728981018,0.110431522130966,2.45207237028402e-017,0.993883728981018,0.110431522130966,2.45207237028402e-017,0.997498512268066,0.0706888660788536,1.56960813410775e-017,0.997498512268066,0.0706888660788536,1.56960813410775e-017,-0.996883630752563,0.00784947723150253,0.0784947723150253,-0.998021900653839,-1.39593941383265e-017,0.0628675222396851,-0.275761604309082,-2.13435084116453e-016,0.961226165294647,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.998021900653839,-1.39593941383265e-017,0.0628675222396851,-0.996883630752563,0.00784947723150253,0.0784947723150253,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.996883630752563,0.00784947723150253,0.0784947723150253,
  808. -0.998854994773865,0.00786499958485365,-0.047189999371767,-0.998021900653839,-1.39593941383265e-017,0.0628675222396851,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.987409830093384,-0.00789927877485752,-0.15798556804657,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.998854994773865,0.00786499958485365,-0.047189999371767,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.987409830093384,-0.00789927877485752,-0.15798556804657,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0784947723150253,0.00784947723150253,-0.996883630752563,-0.0628655776381493,-0.00785819720476866,-0.99799108505249,-0.96119624376297,-0.00787865743041039,-0.275752991437912,0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0628655776381493,-0.00785819720476866,-0.99799108505249,-0.0784947723150253,0.00784947723150253,-0.996883630752563,0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0784947723150253,0.00784947723150253,-0.996883630752563,0.047189999371767,0.00786499958485365,-0.998854994773865,-0.0628655776381493,-0.00785819720476866,-0.99799108505249,0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.165657594799995,-0.015776913613081,-0.986057102680206,0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.047189999371767,0.00786499958485365,-0.998854994773865,0.999194979667664,-0.00786767713725567,-0.0393383838236332,0.96119624376297,0.00787865743041039,-0.275752991437912,0.165657594799995,-0.015776913613081,-0.986057102680206,0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.0393383838236332,-0.00786767713725567,-0.999194979667664,
  809. 0.999194979667664,-0.00786767713725567,-0.0393383838236332,0.96119624376297,0.00787865743041039,-0.275752991437912,-0.997467637062073,0.00785407610237598,0.0706866830587387,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.997467637062073,0.00785407610237598,0.0706866830587387,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.997467637062073,0.00785407610237598,0.0706866830587387,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.998484432697296,1.22201302679674e-017,-0.0550345741212368,-0.996638000011444,-0.0235426295548677,-0.0784754380583763,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.998484432697296,1.22201302679674e-017,-0.0550345741212368,-0.998484432697296,1.22201302679674e-017,-0.0550345741212368,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.173335865139961,2.18683485546098e-016,-0.984862864017487,-0.173335865139961,2.18683485546098e-016,-0.984862864017487,-0.996638000011444,-0.0235426295548677,-0.0784754380583763,-0.998484432697296,1.22201302679674e-017,-0.0550345741212368,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.996883630752563,-0.00784947723150253,0.0784947723150253,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.999690115451813,-0.00787157565355301,-0.023614726960659,0.996883630752563,-0.00784947723150253,0.0784947723150253,
  810. 0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.999690115451813,-0.00787157565355301,0.023614726960659,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.999690115451813,-0.00787157565355301,-0.023614726960659,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.999690115451813,-0.00787157565355301,0.023614726960659,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.999690115451813,-0.00787157565355301,-0.023614726960659,0.995464503765106,-0.00790051184594631,-0.0948061496019363,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999690115451813,-0.00787157565355301,0.023614726960659,0.23692661523819,-0.0157951079308987,-0.971399128437042,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.0314794778823853,0.00786986947059631,-0.999473392963409,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.995464503765106,-0.00790051184594631,-0.0948061496019363,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.0314794778823853,0.00786986947059631,-0.999473392963409,0.23692661523819,-0.0157951079308987,-0.971399128437042,0.0784971937537193,-2.21359447914931e-016,0.996914327144623,0.110431522130966,-2.20686519943007e-016,0.993883728981018,0.998854994773865,-0.00786499958485365,0.047189999371767,0.0784971937537193,-2.21359447914931e-016,0.996914327144623,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,0.110431522130966,-2.20686519943007e-016,0.993883728981018,0.0784971937537193,-2.21359447914931e-016,0.996914327144623,0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,
  811. 0.0784971937537193,-2.21359447914931e-016,0.996914327144623,0.110431522130966,-2.20686519943007e-016,0.993883728981018,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.125972539186478,-2.20275735433368e-016,0.992033720016479,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.999225914478302,-8.73514638256818e-018,0.0393396019935608,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.125972539186478,-2.20275735433368e-016,0.992033720016479,-0.975320279598236,0.0157309714704752,0.220233619213104,-0.999225914478302,-8.73514638256818e-018,0.0393396019935608,-0.0314804539084435,-2.21934556816337e-016,0.999504387378693,-0.975320279598236,0.0157309714704752,0.220233619213104,0.994688630104065,0.00789435394108295,-0.102626599371433,0.999380588531494,0.0157382767647505,0.031476553529501,0.989918947219849,0.00785649940371513,-0.141416981816292,0.0314804539084435,2.21934556816337e-016,-0.999504387378693,0.998854994773865,-0.00786499958485365,-0.047189999371767,0.994688630104065,0.00789435394108295,-0.102626599371433,0.999380588531494,0.0157382767647505,0.031476553529501,0.994688630104065,0.00789435394108295,-0.102626599371433,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.998854994773865,-0.00786499958485365,-0.047189999371767,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.994688630104065,0.00789435394108295,-0.102626599371433,0.999380588531494,0.0157382767647505,0.031476553529501,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.998854994773865,-0.00786499958485365,-0.047189999371767,0.997498512268066,-1.56960813410775e-017,0.0706888660788536,0.259096622467041,0.0157028250396252,0.965723752975464,
  812. 0.0393383838236332,-0.00786767713725567,0.999194979667664,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.370021402835846,-0.00787279568612576,0.928989887237549,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.997498512268066,-1.56960813410775e-017,0.0706888660788536,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.370021402835846,-0.00787279568612576,0.928989887237549,0.259096622467041,0.0157028250396252,0.965723752975464
  813. }
  814. NormalsW: *2178 {
  815. 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,
  816. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  817. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  818. }
  819. }
  820. LayerElementBinormal: 0 {
  821. Version: 102
  822. Name: "UVmap_0"
  823. MappingInformationType: "ByPolygonVertex"
  824. ReferenceInformationType: "Direct"
  825. Binormals: *6534 {
  826. a: 0.380183160305023,0.924883544445038,0.00715501606464386,-0.354728609323502,0.934962630271912,0.00355665432289243,0.402425765991211,0.915424227714539,0.00721181835979223,0.354234337806702,0.933523178100586,-0.0552492886781693,-0.65672367811203,0.753162860870361,-0.038206722587347,-0.328385293483734,0.943156123161316,-0.0511825308203697,0.352202028036118,0.0355804897844791,0.935247421264648,0.281354665756226,0.0296109952032566,0.959146916866302,-0.0971617326140404,-0.00279516167938709,0.995264708995819,0.278356164693832,0.0040416345000267,0.960469484329224,-0.203759357333183,-0.0154464207589626,0.97889918088913,-0.0949715003371239,-0.0112025132402778,0.99541699886322,0.377408027648926,-0.00961771607398987,0.925997138023376,-0.399322241544724,-0.00974357780069113,0.916758894920349,-0.422950804233551,-0.00963841285556555,0.90610134601593,-0.424766659736633,-0.00488202227279544,0.905289709568024,0.691719651222229,0.00257304310798645,0.722161531448364,0.382156044244766,0.000135928392410278,0.924097836017609,0.519333899021149,0.00274571776390076,-0.854567050933838,-0.488850831985474,0.0148408710956573,-0.872241139411926,0.559868216514587,0.001996710896492,-0.828579246997833,-0.481697469949722,0.0338082164525986,-0.875685214996338,-0.74149477481842,0.0247752070426941,-0.670501053333282,0.549340903759003,0.0352394469082356,-0.834855020046234,0.00534160668030381,4.20598953496665e-005,0.999985754489899,0.00534160668030381,4.20598953496665e-005,0.999985754489899,0.00534160668030381,4.20598953496665e-005,0.999985754489899,0.00566812185570598,4.46308804384898e-005,0.999983906745911,0.00566812185570598,4.46308804384898e-005,0.999983906745911,0.00566812185570598,4.46308804384898e-005,0.999983906745911,0.231190517544746,0.0088564557954669,0.972868204116821,0.35337245464325,0.0070379376411438,0.935456275939941,-0.256185859441757,0.0142772030085325,0.966522216796875,0.232137635350227,0.00440232781693339,0.972672998905182,-0.258188754320145,0.00612721964716911,0.966075122356415,-0.273258715867996,0.00615896936506033,0.961920857429504,
  827. -0.569363296031952,-0.0103024607524276,-0.822021424770355,0.299377828836441,-0.0852003321051598,-0.950323104858398,-0.54379004240036,-0.0133800636976957,-0.839114606380463,0.280351459980011,-0.126031085848808,-0.951587796211243,-0.550278842449188,-0.0980404019355774,-0.829205214977264,0.793204665184021,-0.0889173373579979,-0.602428495883942,0.424947082996368,-0.00440779281780124,-0.905207514762878,-0.379984259605408,-0.00433719158172607,-0.924982786178589,0.397500365972519,-0.00446125818416476,-0.917591214179993,0.404794931411743,-0.0556598976254463,-0.912711918354034,-0.70899909734726,-0.0358693152666092,-0.704296588897705,-0.356466978788376,-0.051550455391407,-0.932884693145752,0.480640470981598,0.0365647226572037,0.876155138015747,-0.553804337978363,0.0214149802923203,0.832371413707733,-0.526577353477478,0.0223763883113861,0.849832713603973,0.494846850633621,-0.00150200724601746,0.868978917598724,0.729303598403931,-0.00242914236150682,0.684185981750488,-0.559759020805359,0.0023534893989563,0.828652083873749,-0.0107226092368364,8.4429993876256e-005,-0.999942481517792,-0.0107226092368364,8.4429993876256e-005,-0.999942481517792,-0.0107226092368364,8.4429993876256e-005,-0.999942481517792,-0.0113374004140496,8.92708703759126e-005,-0.999935746192932,-0.0113374004140496,8.92708703759126e-005,-0.999935746192932,-0.0113374004140496,8.92708703759126e-005,-0.999935746192932,-0.177496910095215,2.18518843516975e-016,-0.984121382236481,-0.177496910095215,2.18518843516975e-016,-0.984121382236481,-0.177496910095215,2.18518843516975e-016,-0.984121382236481,0.189784005284309,2.18009141440965e-016,-0.981825888156891,0.189784005284309,2.18009141440965e-016,-0.981825888156891,0.189784005284309,2.18009141440965e-016,-0.981825888156891,-0.298827409744263,2.1189876487348e-016,-0.954307198524475,-0.298827409744263,2.1189876487348e-016,-0.954307198524475,-0.298827409744263,2.1189876487348e-016,-0.954307198524475,-0.0306501090526581,2.21940287523621e-016,-0.99953019618988,-0.0306501090526581,2.21940287523621e-016,-0.99953019618988,-0.0306501090526581,2.21940287523621e-016,-0.99953019618988,
  828. -0.986147940158844,3.68301075860827e-017,-0.165868058800697,-0.986147940158844,3.68301075860827e-017,-0.165868058800697,-0.986147940158844,3.68301075860827e-017,-0.165868058800697,-0.980073392391205,-4.41060047977114e-017,0.198635786771774,-0.980073392391205,-4.41060047977114e-017,0.198635786771774,-0.980073392391205,-4.41060047977114e-017,0.198635786771774,-0.950075089931488,-6.92826694914164e-017,0.312021404504776,-0.950075089931488,-6.92826694914164e-017,0.312021404504776,-0.950075089931488,-6.92826694914164e-017,0.312021404504776,-0.999909937381744,2.97991484799983e-018,-0.0134203433990479,-0.999909937381744,2.97991484799983e-018,-0.0134203433990479,-0.999909937381744,2.97991484799983e-018,-0.0134203433990479,0.16083425283432,2.19153906469179e-016,-0.986981451511383,0.16083425283432,2.19153906469179e-016,-0.986981451511383,0.16083425283432,2.19153906469179e-016,-0.986981451511383,-0.198577478528023,2.17622629719221e-016,-0.98008519411087,-0.198577478528023,2.17622629719221e-016,-0.98008519411087,-0.198577478528023,2.17622629719221e-016,-0.98008519411087,-0.318967163562775,2.10446275422507e-016,-0.94776576757431,-0.318967163562775,2.10446275422507e-016,-0.94776576757431,-0.318967163562775,2.10446275422507e-016,-0.94776576757431,0.0193304028362036,2.22003113545506e-016,-0.999813139438629,0.0193304028362036,2.22003113545506e-016,-0.999813139438629,0.0193304028362036,2.22003113545506e-016,-0.999813139438629,-0.984302341938019,-3.91887535457736e-017,0.17649045586586,-0.984302341938019,-3.91887535457736e-017,0.17649045586586,-0.984302341938019,-3.91887535457736e-017,0.17649045586586,-0.982313573360443,4.15763508269038e-017,-0.187243238091469,-0.982313573360443,4.15763508269038e-017,-0.187243238091469,-0.982313573360443,4.15763508269038e-017,-0.187243238091469,-0.953313767910004,-6.70533581835819e-017,0.30198147892952,-0.953313767910004,-6.70533581835819e-017,0.30198147892952,-0.953313767910004,-6.70533581835819e-017,0.30198147892952,-0.999418258666992,-7.5727284929015e-018,0.0341045372188091,-0.999418258666992,-7.5727284929015e-018,0.0341045372188091,
  829. -0.999418258666992,-7.5727284929015e-018,0.0341045372188091,-0.778578996658325,0.626381874084473,-0.0382150821387768,-0.413714110851288,0.907890915870667,-0.0676368474960327,0.441432565450668,0.893620550632477,-0.0811146125197411,0.443488270044327,0.893944382667542,-0.0646656602621078,-0.414820462465286,0.908280730247498,-0.0543161742389202,0.431827247142792,0.899619400501251,-0.0648857057094574,0.415493994951248,0.908904314041138,0.0354659110307693,-0.424588561058044,0.904354870319366,0.0432068407535553,0.846548438072205,0.532098531723022,0.0150619968771935,-0.426314324140549,0.904279410839081,0.0231263060122728,0.418076574802399,0.908392012119293,0.00599716324359179,-0.556477010250092,0.83049875497818,0.0245983153581619,-0.885192930698395,0.464597642421722,-0.0241395272314548,-0.574931204319,0.816403388977051,-0.0542205795645714,0.5841304063797,0.808839559555054,-0.0676046013832092,0.585884034633636,0.808528661727905,-0.0549678951501846,-0.57545804977417,0.816470205783844,-0.0471640154719353,0.548776149749756,0.834070980548859,-0.0563067719340324,0.00326217990368605,-0.999994695186615,-2.22043427019839e-016,0.00326217990368605,-0.999994695186615,-2.22043427019839e-016,0.00326217990368605,-0.999994695186615,-2.22043427019839e-016,0.00272950646467507,-0.999996304512024,-2.22043784361864e-016,0.00272950646467507,-0.999996304512024,-2.22043784361864e-016,0.00272950646467507,-0.999996304512024,-2.22043784361864e-016,0.417870551347733,0.908448338508606,0.0102940648794174,-0.395753115415573,0.918354630470276,0.00207347050309181,0.83880615234375,0.544294476509094,0.0121606923639774,-0.395430594682693,0.918437302112579,0.0103835044428706,0.417231231927872,0.908594846725464,0.0193258970975876,-0.546019077301025,0.837740123271942,0.00739560648798943,-0.873083472251892,0.487096190452576,-0.0215088427066803,-0.574164509773254,0.817137181758881,-0.0512064509093761,0.571331262588501,0.817668616771698,-0.0707008838653564,0.574058651924133,0.817006826400757,-0.0543756633996964,-0.575057744979858,0.817061722278595,-0.0414564684033394,
  830. 0.544287383556366,0.837079584598541,-0.0552182048559189,-0.40248903632164,0.915424823760986,-0.000411761051509529,0.408162474632263,0.912298560142517,0.033389288932085,-0.553868353366852,0.832563698291779,-0.00821847375482321,0.410839736461639,0.911645948886871,0.0106012178584933,-0.403184860944748,0.914842009544373,-0.0224997606128454,0.546569168567657,0.837249159812927,0.0166141968220472,0.435835719108582,0.899517416954041,-0.0302587933838367,0.706482291221619,0.706675112247467,-0.0386415831744671,-0.443344205617905,0.896333396434784,0.00569258257746696,0.436496198177338,0.898269891738892,-0.0508174411952496,-0.446133106946945,0.894786834716797,-0.0179398767650127,-0.417215347290039,0.908597528934479,-0.0195450000464916,-0.887195408344269,0.459933221340179,-0.036683414131403,-0.462432086467743,0.885791778564453,-0.0391099527478218,0.577516496181488,0.816309690475464,-0.0106414873152971,0.579508125782013,0.81467479467392,0.0218080673366785,-0.465112686157227,0.885182023048401,-0.0110932029783726,0.479698032140732,0.877230107784271,0.0188969355076551,0.702590525150299,0.711550533771515,0.00790431629866362,-0.720941483974457,0.692683219909668,0.0208179913461208,-0.806775510311127,0.590534925460815,0.019542895257473,-0.722032606601715,0.69179892539978,0.00912475120276213,0.703546345233917,0.710622847080231,-0.00614504795521498,0.770812809467316,0.637023270130157,-0.00701327715069056,0.492475301027298,0.868046998977661,-0.0629471689462662,0.874930858612061,0.481649428606033,-0.0500979796051979,-0.613037705421448,0.789464712142944,-0.0304981246590614,-0.614442408084869,0.788898646831512,-0.00998384598642588,-0.535861790180206,0.844186961650848,-0.0141665246337652,0.495008885860443,0.86774730682373,-0.0445069819688797,-0.42661041021347,0.904259204864502,0.0178556181490421,0.40259775519371,0.915370404720306,-0.00348987337201834,-0.546648979187012,0.837112128734589,0.0204505827277899,0.40300390124321,0.91505640745163,-0.0161146894097328,-0.427779972553253,0.903874695301056,0.00384714221581817,0.51072758436203,0.859547913074493,-0.0183003284037113,
  831. 0.412725865840912,0.910798192024231,0.0101968655362725,-0.388348877429962,0.921482384204865,-0.00744077190756798,-0.476416289806366,0.879169285297394,-0.00943246483802795,-0.388453215360641,0.921445846557617,-0.00644803699105978,0.412788778543472,0.910758852958679,0.0111246649175882,0.504950344562531,0.863049983978271,0.0130408573895693,-0.00372824911028147,-2.22043056442925e-016,0.999993026256561,-0.00372824911028147,-2.22043056442925e-016,0.999993026256561,-0.00372824911028147,-2.22043056442925e-016,0.999993026256561,-0.00517697166651487,-2.22041627074826e-016,0.999986588954926,-0.00517697166651487,-2.22041627074826e-016,0.999986588954926,-0.00517697166651487,-2.22041627074826e-016,0.999986588954926,0.0024359617382288,-0.999997019767761,-2.22043943180541e-016,0.0024359617382288,-0.999997019767761,-2.22043943180541e-016,0.0024359617382288,-0.999997019767761,-2.22043943180541e-016,0.00263463100418448,-0.999996542930603,-2.22043837301423e-016,0.00263463100418448,-0.999996542930603,-2.22043837301423e-016,0.00263463100418448,-0.999996542930603,-2.22043837301423e-016,0.0012399812694639,2.22044432871464e-016,-0.999999225139618,0.0012399812694639,2.22044432871464e-016,-0.999999225139618,0.0012399812694639,2.22044432871464e-016,-0.999999225139618,0.00136648025363684,2.22044393166794e-016,-0.999999046325684,0.00136648025363684,2.22044393166794e-016,-0.999999046325684,0.00136648025363684,2.22044393166794e-016,-0.999999046325684,-0.00219344347715378,0.999997615814209,2.22044075529439e-016,-0.00219344347715378,0.999997615814209,2.22044075529439e-016,-0.00219344347715378,0.999997615814209,2.22044075529439e-016,-0.00292493216693401,0.999995708465576,2.22043652012966e-016,-0.00292493216693401,0.999995708465576,2.22043652012966e-016,-0.00292493216693401,0.999995708465576,2.22043652012966e-016,0.778616786003113,0.626317799091339,0.0384975448250771,0.413678467273712,0.907876193523407,0.0680517926812172,-0.441380470991135,0.893609464168549,0.0815188437700272,-0.443430215120316,0.893938362598419,0.0651441439986229,0.414781779050827,0.90826952457428,0.0547976642847061,
  832. -0.431848138570786,0.899574637413025,0.0653656050562859,-0.846548557281494,0.532098352909088,-0.0150631442666054,-0.415493875741959,0.908904314041138,-0.0354666411876678,0.424588590860367,0.904354870319366,-0.0432065576314926,0.426314413547516,0.904279410839081,-0.0231249872595072,-0.418076545000076,0.908392012119293,-0.00599744822829962,0.556476950645447,0.830498933792114,-0.024596780538559,0.886644601821899,0.460847616195679,0.0384838245809078,0.572120547294617,0.817041575908661,0.0715622529387474,-0.586410284042358,0.80658233165741,0.0744848325848579,-0.588171005249023,0.806297242641449,0.0627666041254997,0.572862684726715,0.817113876342773,0.0644460096955299,-0.549970328807831,0.832661926746368,0.0648601204156876,-0.00311389402486384,-0.999995172023773,-2.45188512053574e-005,-0.00311364280059934,-0.999995172023773,-4.90337442897726e-005,-0.00311389402486384,-0.999995172023773,-2.45188512053574e-005,-0.00291851116344333,-0.999995768070221,-4.59608054370619e-005,-0.00291874911636114,-0.999995827674866,-2.2982278096606e-005,-0.00291851116344333,-0.999995768070221,-4.59608054370619e-005,-0.833593726158142,0.551765084266663,-0.0260138362646103,-0.416649788618088,0.908855974674225,-0.0195877496153116,0.392970263957977,0.919551193714142,-7.89295881986618e-006,0.392797142267227,0.919613242149353,-0.00467963144183159,-0.41623654961586,0.908949375152588,-0.0236243549734354,0.549153089523315,0.835721731185913,0.000286098569631577,0.877058506011963,0.479781657457352,0.024043146520853,0.56952166557312,0.819986462593079,0.0571604296565056,-0.569279193878174,0.818555772304535,0.0767317190766335,-0.572295606136322,0.817825675010681,0.0603238455951214,0.570433437824249,0.8199303150177,0.0481671765446663,-0.545066595077515,0.836152791976929,0.061244685202837,-0.410874247550964,0.911640703678131,-0.00967380963265896,0.403478533029556,0.914607584476471,0.0264210216701031,-0.552188515663147,0.833552777767181,-0.0166626088321209,0.402493178844452,0.915422916412354,0.000440264120697975,-0.407509386539459,0.912469208240509,-0.0365514159202576,
  833. 0.553670883178711,0.832687139511108,0.00897926837205887,0.45290219783783,0.891548037528992,-0.00465962290763855,-0.436407685279846,0.898912787437439,0.0387839265167713,-0.719642996788025,0.692644894123077,0.0485506951808929,-0.437150180339813,0.897401213645935,0.0597564876079559,0.456306546926498,0.889598786830902,0.0199604295194149,0.423356533050537,0.90569269657135,0.0221406575292349,0.418878376483917,0.908024489879608,0.005714510101825,0.911152601242065,0.410888522863388,0.0311706438660622,-0.551896631717682,0.833304226398468,-0.031845323741436,0.418486356735229,0.908222258090973,-0.00123081356287003,-0.551780104637146,0.833334863185883,-0.0330437123775482,-0.45232018828392,0.891329228878021,-0.0306415632367134,-0.696209788322449,0.71759170293808,0.0188201665878296,-0.772931158542633,0.634129583835602,0.0213813334703445,0.728102028369904,0.685049116611481,-0.023985218256712,0.726662874221802,0.686022281646729,-0.0365324504673481,0.811090528964996,0.583775222301483,-0.0365866459906101,-0.695359885692596,0.718654096126556,0.00328983296640217,-0.495060950517654,0.867292523384094,0.052137553691864,-0.870409190654755,0.490848779678345,0.0381481386721134,0.613132357597351,0.789336860179901,0.0318792723119259,-0.496908962726593,0.867073059082031,0.0355788394808769,0.614300429821014,0.788955807685852,0.0135634578764439,0.537835597991943,0.842886805534363,0.016579968854785,-0.402891010046005,0.914904296398163,0.0250793285667896,0.426909595727921,0.904221832752228,-0.0114487670361996,-0.512833774089813,0.857982695102692,0.0294481106102467,0.424842059612274,0.904758453369141,-0.0303545203059912,-0.402628690004349,0.915331125259399,0.0076779848895967,0.546836733818054,0.836500287055969,-0.0351682119071484,0.388459265232086,0.921448826789856,0.00560720963403583,-0.413277268409729,0.910479009151459,-0.015164477750659,-0.507580637931824,0.861429035663605,-0.0173753648996353,-0.412916302680969,0.910705924034119,-0.0107223195955157,0.387904137372971,0.921643078327179,0.0102269649505615,0.486351102590561,0.873669743537903,0.0127980280667543,
  834. -0.0153484418988228,2.22018452782785e-016,-0.999882221221924,-0.0153484418988228,2.22018452782785e-016,-0.999882221221924,-0.0153484418988228,2.22018452782785e-016,-0.999882221221924,-0.0139948595315218,2.22022860001089e-016,-0.999902069568634,-0.0139948595315218,2.22022860001089e-016,-0.999902069568634,-0.0139948595315218,2.22022860001089e-016,-0.999902069568634,-0.00239686388522387,-0.999997138977051,3.77458854927681e-005,-0.00239686388522387,-0.999997138977051,3.77458854927681e-005,-0.00239686388522387,-0.999997138977051,3.77458854927681e-005,-0.00255344831384718,-0.999996721744537,4.02117875637487e-005,-0.00255344831384718,-0.999996721744537,4.02117875637487e-005,-0.00255344831384718,-0.999996721744537,4.02117875637487e-005,0.0175445843487978,-2.22010432439566e-016,0.99984610080719,0.0175445843487978,-2.22010432439566e-016,0.99984610080719,0.0175445843487978,-2.22010432439566e-016,0.99984610080719,0.0176209434866905,-2.220101280371e-016,0.99984472990036,0.0176209434866905,-2.220101280371e-016,0.99984472990036,0.0176209434866905,-2.220101280371e-016,0.99984472990036,0.00226151500828564,0.999997437000275,-3.56144082616083e-005,0.00226118392311037,0.999997496604919,-5.34137907379773e-005,0.00226151500828564,0.999997437000275,-3.56144082616083e-005,0.00218315073288977,0.999997675418854,-5.15704923600424e-005,0.00218347017653286,0.999997615814209,-3.43853571393993e-005,0.00218315073288977,0.999997675418854,-5.15704923600424e-005,0,0.999979019165039,0.00647734431549907,0.0784467682242393,0.996898770332336,0.00624801078811288,0,0.999979019165039,0.00647734431549907,0.0784611850976944,0.996907114982605,0.00450023449957371,0,0.999991416931152,0.00414993753656745,0.0784611850976944,0.996907114982605,0.00450023449957371,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.000214708605199121,1,2.22044604925031e-016,0.000214708605199121,1,2.22044604925031e-016,0.000214708605199121,1,2.22044604925031e-016,-3.03608048852766e-005,1,2.22044604925031e-016,
  835. -3.03608048852766e-005,1,2.22044604925031e-016,-3.03608048852766e-005,1,2.22044604925031e-016,0,0.999981224536896,-0.00612520473077893,0.0393388457596302,0.999206721782684,-0.00619419943541288,0,0.999981224536896,-0.00612520473077893,0.0393386259675026,0.999201118946075,0.00704550696536899,0,0.999976098537445,0.00691215926781297,0.0393386259675026,0.999201118946075,0.00704550696536899,-1,-0.000149018262163736,-3.30887011487615e-020,-1,-0.000149018262163736,-3.30887011487615e-020,-1,-0.000149018262163736,-3.30887011487615e-020,-0.999999940395355,-0.000345043954439461,-7.66151485452807e-020,-0.999999940395355,-0.000345043954439461,-7.66151485452807e-020,-0.999999940395355,-0.000345043954439461,-7.66151485452807e-020,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999983608722687,-0.00572616327553988,-1.27146366225347e-018,-0.999983608722687,-0.00572616327553988,-1.27146366225347e-018,-0.999983608722687,-0.00572616327553988,-1.27146366225347e-018,-0.999996662139893,0.00259153661318123,5.75436723422581e-019,-0.999996662139893,0.00259153661318123,5.75436723422581e-019,-0.999996662139893,0.00259153661318123,5.75436723422581e-019,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.0784479603171349,0.996899604797363,-0.00610416661947966,0,0.999983489513397,-0.00574640883132815,-0.0784479603171349,0.996899604797363,-0.00610416661947966,0,0.999988675117493,-0.00475542573258281,-0.0784609243273735,0.996906876564026,-0.00453135184943676,0,0.999988675117493,-0.00475542573258281,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00112902652472258,0.999999344348907,2.22044459341244e-016,0.00112902652472258,0.999999344348907,2.22044459341244e-016,0.00112902652472258,0.999999344348907,2.22044459341244e-016,-5.57011953787878e-005,1,2.22044604925031e-016,-5.57011953787878e-005,1,2.22044604925031e-016,-5.57011953787878e-005,1,2.22044604925031e-016,-0.0393386259675026,0.999201118946075,-0.00704564154148102,0,0.999976098537445,-0.00691229430958629,
  836. -0.0393386259675026,0.999201118946075,-0.00704564154148102,-0,0.999981224536896,0.00612513534724712,-0.0393388457596302,0.999206721782684,0.00619413005188107,-0,0.999981224536896,0.00612513534724712,0.999999701976776,0.000764523050747812,1.69758218759378e-019,0.999999701976776,0.000764523050747812,1.69758218759378e-019,0.999999701976776,0.000764523050747812,1.69758218759378e-019,1,-0.000281594868283719,-6.25266212769746e-020,1,-0.000281594868283719,-6.25266212769746e-020,1,-0.000281594868283719,-6.25266212769746e-020,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.99999874830246,-0.00156412471551448,-3.4730545450989e-019,0.99999874830246,-0.00156412471551448,-3.4730545450989e-019,0.99999874830246,-0.00156412471551448,-3.4730545450989e-019,0.999998807907104,-0.00152550439815968,-3.38730021400764e-019,0.999998807907104,-0.00152550439815968,-3.38730021400764e-019,0.999998807907104,-0.00152550439815968,-3.38730021400764e-019,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.898578464984894,0.0361038222908974,0.437325119972229,-0.722040891647339,0.0339147448539734,0.69101870059967,-0.886436879634857,0.0227108336985111,-0.462292045354843,-0.896911263465881,0.0561519488692284,0.438631057739258,-0.884235322475433,0.0472001992166042,-0.464650452136993,-0.912310361862183,0.0493617057800293,-0.406513690948486,0.9997838139534,0.000654570525512099,-0.0207826122641563,0.9997838139534,0.000654570525512099,-0.0207826122641563,0.9997838139534,0.000654570525512099,-0.0207826122641563,0.999951303005219,-0.000310868781525642,0.00987008400261402,0.999951303005219,-0.000310868781525642,0.00987008400261402,0.999951303005219,-0.000310868781525642,0.00987008400261402,-0.00786993931978941,0.999482274055481,0.031200772151351,-0.00786993931978941,0.999482274055481,0.031200772151351,-0.00786993931978941,0.999482274055481,0.031200772151351,-0.00786969158798456,0.999450862407684,0.0321900323033333,-0.00786969158798456,0.999450862407684,0.0321900323033333,-0.00786969158798456,0.999450862407684,0.0321900323033333,-0.00786678958684206,-0.999082267284393,-0.0421057380735874,
  837. -0.00786678958684206,-0.999082267284393,-0.0421057380735874,-0.00786678958684206,-0.999082267284393,-0.0421057380735874,-0.00786641333252192,-0.999034404754639,-0.0432264879345894,-0.00786641333252192,-0.999034404754639,-0.0432264879345894,-0.00786641333252192,-0.999034404754639,-0.0432264879345894,-0.999803423881531,-0.000624217442236841,0.0198189038783312,-0.999803423881531,-0.000624217442236841,0.0198189038783312,-0.999803423881531,-0.000624217442236841,0.0198189038783312,-0.999844372272491,-0.000555571401491761,0.0176393911242485,-0.999844372272491,-0.000555571401491761,0.0176393911242485,-0.999844253063202,-0.000694300688337535,0.0176352374255657,-0.922058701515198,-0.0118337385356426,0.386869370937347,-0.918481707572937,0.0306718517094851,-0.394272327423096,-0.859724640846252,0.0363566316664219,-0.509462118148804,-0.918358385562897,0.0269763097167015,-0.394829273223877,-0.921968817710876,-0.0145126972347498,0.38699197769165,-0.870645880699158,-0.0203970950096846,0.491487175226212,-0.868239521980286,0.0696277767419815,0.491235375404358,-0.733988881111145,0.0798350870609283,0.67445296049118,-0.828843712806702,-0.0167356636375189,-0.559229791164398,-0.869696199893951,0.053917333483696,0.490633696317673,-0.828970611095428,-0.0180308613926172,-0.559001624584198,-0.814712762832642,-0.0197588764131069,-0.579527974128723,-0.591213524341583,0.0386972576379776,0.805586159229279,-0.811428368091583,0.0136444121599197,0.584292709827423,-0.822832524776459,-0.0736724510788918,-0.563488185405731,-0.822381973266602,-0.0650021955370903,-0.565210282802582,-0.811154544353485,0.018280453979969,0.584546089172363,-0.817779779434204,-0.0653427913784981,-0.571809887886047,0.999982595443726,-9.29583329707384e-005,-0.00590285379439592,0.999982595443726,-9.29583329707384e-005,-0.00590285379439592,0.999982595443726,-9.29583329707384e-005,-0.00590285379439592,0.999986171722412,-8.28801566967741e-005,-0.00526288989931345,0.999986171722412,-8.28801566967741e-005,-0.00526288989931345,0.999986171722412,-8.28801566967741e-005,-0.00526288989931345,
  838. 0.894424080848694,0.0726576969027519,-0.441278278827667,0.695827126502991,0.0896400138735771,-0.712593376636505,0.901216983795166,-0.00551827857270837,0.433332890272141,0.892511367797852,0.0949160754680634,-0.440924435853958,0.898868024349213,0.0203616600483656,0.437746047973633,0.91240531206131,0.0237172730267048,0.408600389957428,0.922589182853699,0.0147171877324581,0.385502994060516,0.916294872760773,0.033453181385994,-0.399104714393616,0.860153675079346,0.0346362814307213,-0.508857488632202,0.916285872459412,0.0326133146882057,-0.399194866418839,0.922570288181305,0.0125428177416325,0.385625153779984,0.871867060661316,0.00862636417150497,0.489666700363159,0.999345898628235,0.0350569821894169,-0.00887518841773272,0.996721029281616,0.0690771117806435,-0.0421378612518311,0.999068021774292,0.0406951047480106,-0.014383795671165,0.999040603637695,0.0417300164699554,-0.0132878283038735,0.996695518493652,0.0700098723173141,-0.0411917567253113,0.996695518493652,0.0700098723173141,-0.0411917567253113,-0.0444971770048141,0.70199453830719,-0.710790991783142,-0.0222651213407516,0.70248931646347,-0.711345970630646,-0.0444971770048141,0.70199453830719,-0.710790991783142,-0.0222634579986334,0.69715291261673,-0.7165766954422,-0.0444938205182552,0.696607112884521,-0.716071844100952,-0.0222634579986334,0.69715291261673,-0.7165766954422,-0.996845364570618,-0.0623775459825993,0.0490761287510395,-0.999194025993347,-0.0341968610882759,0.0210211202502251,-0.996845364570618,-0.0623775459825993,0.0490761287510395,-0.996891736984253,-0.056762408465147,0.0546340309083462,-0.999229550361633,-0.0287659056484699,0.0267009530216455,-0.99922126531601,-0.0289150159806013,0.026849715039134,0.0445967763662338,-0.712772369384766,0.699976205825806,0.0222646035254002,-0.713449716567993,0.700352609157562,0.0445967763662338,-0.712772369384766,0.699976205825806,0.0222616456449032,-0.720062494277954,0.693552076816559,0.0446975342929363,-0.719462394714355,0.693091690540314,0.0168025065213442,-0.720153570175171,0.693611204624176,0.999730408191681,0.0164195895195007,-0.0164195895195007,
  839. 0.999730408191681,0.0164195895195007,-0.0164195895195007,0.999730408191681,0.0164195895195007,-0.0164195895195007,0.999938666820526,0.0078339446336031,-0.0078339446336031,0.999938666820526,0.0078339446336031,-0.0078339446336031,0.999938666820526,0.0078339446336031,-0.0078339446336031,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999077260494232,0.016578821465373,0.0396217405796051,0.996735453605652,0.0455038286745548,0.0666918456554413,0.999077260494232,0.016578821465373,0.0396217405796051,0.996734142303467,0.0454523637890816,0.0667473375797272,0.999077916145325,0.0166059657931328,0.0395937077701092,0.996734142303467,0.0454523637890816,0.0667473375797272,-0.0444634407758713,0.733735740184784,0.677978575229645,-0.0222481451928616,0.73433917760849,0.678418040275574,-0.0444634407758713,0.733735740184784,0.677978575229645,-0.0222328472882509,0.744207799434662,0.667578041553497,-0.0444326549768448,0.743686139583588,0.667050778865814,-0.0222328472882509,0.744207799434662,0.667578041553497,-0.999220848083496,-0.0280169360339642,-0.0278018489480019,-0.996898889541626,-0.0568321384489536,-0.0544325709342957,-0.999220848083496,-0.0280169360339642,-0.0278018489480019,-0.999186515808105,-0.0225973110646009,-0.0334042869508266,-0.996850550174713,-0.0515703968703747,-0.0602457374334335,-0.996850550174713,-0.0515703968703747,-0.0602457374334335,0.0444767288863659,-0.727947592735291,-0.684188663959503,0.0222550220787525,-0.728348970413208,-0.68484491109848,0.0444767288863659,-0.727947592735291,-0.684188663959503,0.0222603119909763,-0.722112655639648,-0.691417276859283,0.0444875136017799,-0.721619069576263,-0.690859496593475,0.0222603119909763,-0.722112655639648,-0.691417276859283,0.999920606613159,0.00925164390355349,0.0085552828386426,0.999920606613159,0.00925164390355349,0.0085552828386426,0.999920606613159,0.00925164390355349,0.0085552828386426,0.999834895133972,0.0133461076766253,0.0123415607959032,0.999834895133972,0.0133461076766253,0.0123415607959032,0.999834895133972,0.0133461076766253,0.0123415607959032,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,
  840. 1,0,0,0.999010026454926,0.0140840653330088,0.0421977266669273,0.996664524078369,0.0430671684443951,0.0693185850977898,0.999010026454926,0.0140840653330088,0.0421977266669273,0.99672257900238,0.0450255535542965,0.067207545042038,0.999067008495331,0.0161682981997728,0.0400456748902798,0.99672257900238,0.0450255535542965,0.067207545042038,-0.0444491468369961,0.738768041133881,0.672492444515228,-0.0222409684211016,0.739374220371246,0.67292732000351,-0.0444491468369961,0.738768041133881,0.672492444515228,-0.0222328491508961,0.744207680225372,0.667578220367432,-0.0444326549768448,0.743685960769653,0.667050957679749,-0.0222328491508961,0.744207680225372,0.667578220367432,-0.999191045761108,-0.0229920465499163,-0.0329963490366936,-0.996856689453125,-0.0519912429153919,-0.0597810633480549,-0.999191045761108,-0.0229920465499163,-0.0329963490366936,-0.999186456203461,-0.0225943885743618,-0.0334073007106781,-0.996850490570068,-0.0515675581991673,-0.0602488778531551,-0.996850490570068,-0.0515675581991673,-0.0602488778531551,0.0444767326116562,-0.727946996688843,-0.68418937921524,0.0222550220787525,-0.728348255157471,-0.684845626354218,0.0444767326116562,-0.727946996688843,-0.68418937921524,0.0222603157162666,-0.72211229801178,-0.691417694091797,0.0444875136017799,-0.72161877155304,-0.690859794616699,0.0222603157162666,-0.72211229801178,-0.691417694091797,0.999921262264252,0.00921291764825583,0.00851947162300348,0.999921262264252,0.00921291764825583,0.00851947162300348,0.999921262264252,0.00921291764825583,0.00851947162300348,0.999835252761841,0.0133306719362736,0.0123272864148021,0.999835252761841,0.0133306719362736,0.0123272864148021,0.999835252761841,0.0133306719362736,0.0123272864148021,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999335765838623,0.035449106246233,-0.00846005603671074,0.996710300445557,0.0694777816534042,-0.0417314916849136,0.999057948589325,0.0410872064530849,-0.0139685831964016,0.999022245407104,0.0423763692378998,-0.0126032773405313,0.996676445007324,0.0706690773367882,-0.0405230149626732,0.996676445007324,0.0706690773367882,-0.0405230149626732,
  841. -0.0444971770048141,0.701993823051453,-0.710791707038879,-0.0222651213407516,0.702488720417023,-0.711346566677094,-0.0444971770048141,0.701993823051453,-0.710791707038879,-0.0222634598612785,0.697153151035309,-0.716576516628265,-0.0444938205182552,0.696607351303101,-0.716071605682373,-0.0222634598612785,0.697153151035309,-0.716576516628265,-0.996845364570618,-0.0623805299401283,0.0490731820464134,-0.999193966388702,-0.0341997481882572,0.0210181009024382,-0.996845364570618,-0.0623805299401283,0.0490731820464134,-0.996891736984253,-0.0567623265087605,0.0546341128647327,-0.999229550361633,-0.0287658199667931,0.0267010424286127,-0.999221205711365,-0.0289149265736341,0.026849802583456,0.0446007549762726,-0.713032722473145,0.699710845947266,0.0222645252943039,-0.713710427284241,0.700086951255798,0.0446007549762726,-0.713032722473145,0.699710845947266,0.0222640670835972,-0.715073347091675,0.698694825172424,0.0446227118372917,-0.71447479724884,0.698236763477325,0.0167644526809454,-0.715165734291077,0.698753893375397,0.999731540679932,0.0163839962333441,-0.0163839962333441,0.999731540679932,0.0163839962333441,-0.0163839962333441,0.999731540679932,0.0163839962333441,-0.0163839962333441,0.999926865100861,0.00855116173624992,-0.00855116173624992,0.999926865100861,0.00855116173624992,-0.00855116173624992,0.999926865100861,0.00855116173624992,-0.00855116173624992,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0236103162169456,-0.999503374099731,-0.0208698958158493,0.055184680968523,-0.998263478279114,-0.0206102393567562,0.0236103162169456,-0.999503374099731,-0.0208698958158493,0.0551944375038147,-0.998231649398804,-0.0220722984522581,0.023609759286046,-0.999479830265045,-0.0219681691378355,0.0551944375038147,-0.998231649398804,-0.0220722984522581,0.999941468238831,0.0108220279216766,2.40297291435635e-018,0.999941468238831,0.0108220279216766,2.40297291435635e-018,0.999941468238831,0.0108220279216766,2.40297291435635e-018,0.999942064285278,0.0107650468125939,2.39032056650189e-018,0.999942064285278,0.0107650468125939,2.39032056650189e-018,
  842. 0.999942064285278,0.0107650468125939,2.39032056650189e-018,0.999524414539337,0.0308368001133204,6.84714509831438e-018,0.999524414539337,0.0308368001133204,6.84714509831438e-018,0.999524414539337,0.0308368001133204,6.84714509831438e-018,1,-0,0,1,-0,0,1,-0,0,0.999913394451141,-0.0131622022017837,-2.92259598783843e-018,0.999913394451141,-0.0131622022017837,-2.92259598783843e-018,0.999913394451141,-0.0131622022017837,-2.92259598783843e-018,0.999939858913422,0.0109674762934446,2.43526894060256e-018,0.999939858913422,0.0109674762934446,2.43526894060256e-018,0.999939858913422,0.0109674762934446,2.43526894060256e-018,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0157411154359579,-0.999560832977295,-0.025106742978096,0.0473721027374268,-0.998568296432495,-0.0248476415872574,0.0157411154359579,-0.999560832977295,-0.025106742978096,0.0473820902407169,-0.998529195785522,-0.026350274682045,0.015740655362606,-0.99953156709671,-0.0262464415282011,0.0473820902407169,-0.998529195785522,-0.026350274682045,0.999986112117767,0.00527570210397244,1.17144118937872e-018,0.999986112117767,0.00527570210397244,1.17144118937872e-018,0.999986112117767,0.00527570210397244,1.17144118937872e-018,0.999848663806915,-0.0173958837985992,-3.86266214538172e-018,0.999848663806915,-0.0173958837985992,-3.86266214538172e-018,0.999848663806915,-0.0173958837985992,-3.86266214538172e-018,0.999933660030365,-0.0115199489519,-2.55794251378117e-018,0.999933660030365,-0.0115199489519,-2.55794251378117e-018,0.999933660030365,-0.0115199489519,-2.55794251378117e-018,1,-0,0,1,-0,0,1,-0,0,0.965589046478271,0.26007267832756,5.77477351110379e-017,0.965589046478271,0.26007267832756,5.77477351110379e-017,0.965589046478271,0.26007267832756,5.77477351110379e-017,0.965607047080994,0.26000589132309,5.77329054170161e-017,0.965607047080994,0.26000589132309,5.77329054170161e-017,0.965607047080994,0.26000589132309,5.77329054170161e-017,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0105602126568556,-0.000166302561410703,0.999944269657135,0.0105602126568556,-0.000166302561410703,0.999944269657135,
  843. 0.010561547242105,-8.31617871881463e-005,0.99994421005249,-0.0267785396426916,-2.21964983827989e-016,0.999641418457031,-0.0267772953957319,0.000210844853427261,0.999641418457031,-0.0267760530114174,0.000421670119976625,0.999641358852386,-0.0442994199693203,0.000348814355675131,0.999018251895905,-0.0443003736436367,-2.21826613055122e-016,0.999018251895905,-0.0443003736436367,-2.21826613055122e-016,0.999018251895905,0.0547357760369778,-0.0184356383979321,-0.99833071231842,-0.008163096383214,-0.018458491191268,-0.999796271324158,0.0470385402441025,-0.0184423644095659,-0.998722851276398,-0.0314804427325726,-0.000742442498449236,-0.999504089355469,0.0471829511225224,-0.00107915070839226,-0.998885691165924,-0.00788705982267857,-0.000844001304358244,-0.999968528747559,0.0473255515098572,0.0180461425334215,-0.998716533184052,-0.0314743630588055,0.0196692049503326,-0.999311029911041,0.047183770686388,0.0180491674691439,-0.998723149299622,-0.0314804315567017,-0.00112359225749969,-0.9995037317276,0.031480435281992,-0.00110832741484046,-0.999503791332245,0.0471914298832417,-0.00110382761340588,-0.998885273933411,0.0314804539084435,0.000285215966869146,-0.999504387378693,-0.0314804539084435,-0.000146599195431918,-0.999504387378693,-0.0471894592046738,-0.000254381739068776,-0.998885989189148,0.0314602591097355,0.0358131788671017,-0.998863160610199,-0.0474407076835632,0.0355145893990994,-0.998242557048798,0.0463162809610367,0.0358445048332214,-0.998283565044403,-0.0547377951443195,0.0183144602924585,0.998332798480988,-0.0394775122404099,0.0183878615498543,0.99905127286911,0.0391857251524925,0.0186976008117199,0.999057054519653,-0.03924261033535,-0.0119779398664832,0.999157905578613,-0.0395251326262951,-0.0119791524484754,0.99914675951004,0.0394281819462776,-0.0116035882383585,0.999155104160309,0.0313747934997082,-0.00667158933356404,0.999485492706299,0.0393910631537437,-0.00665660342201591,0.999201714992523,-0.0394453853368759,-0.0067851971834898,0.999198734760284,-0.0391150750219822,0.0140332598239183,0.99913614988327,0.0393362455070019,0.0130650857463479,0.999140620231628,
  844. 0.0316848121583462,0.0131631884723902,0.999411225318909,0.039339505136013,0.00223995000123978,0.999223411083221,-0.0392828658223152,0.00359218823723495,0.999221682548523,-0.0550644844770432,0.00386144150979817,0.998475432395935,0.0391377620398998,0.101168550550938,0.994099199771881,-0.0553257912397385,0.0438360087573528,0.997505664825439,0.416931748390198,0.320363253355026,0.850608766078949,0.000492610968649387,-2.22044578455252e-016,0.99999988079071,0.000492610968649387,-2.22044578455252e-016,0.99999988079071,0.000492610968649387,-2.22044578455252e-016,0.99999988079071,0.000788277015089989,-2.22044538750582e-016,0.999999701976776,0.000788277015089989,-2.22044538750582e-016,0.999999701976776,0.000788277015089989,-2.22044538750582e-016,0.999999701976776,0.00092551251873374,-2.22044512280803e-016,0.999999582767487,0.00092551251873374,-2.22044512280803e-016,0.999999582767487,0.00092551251873374,-2.22044512280803e-016,0.999999582767487,-0.0133624095469713,-2.2202477906011e-016,0.999910712242126,-0.0133624095469713,-2.2202477906011e-016,0.999910712242126,-0.0133624095469713,-2.2202477906011e-016,0.999910712242126,-0.0122134834527969,-2.2202804807789e-016,0.999925434589386,-0.0122134834527969,-2.2202804807789e-016,0.999925434589386,-0.0122134834527969,-2.2202804807789e-016,0.999925434589386,-0.0136016299948096,-2.2202406437606e-016,0.999907493591309,-0.0136016299948096,-2.2202406437606e-016,0.999907493591309,-0.0136016299948096,-2.2202406437606e-016,0.999907493591309,-0.999817788600922,-0.00773517694324255,-0.0174502525478601,-0.99935108423233,-0.0311918947845697,-0.0180168114602566,-0.999568819999695,-0.0233311057090759,-0.0178280044347048,-0.999721050262451,-0.0236192662268877,0.000241948117036372,-1,-3.67539158247641e-020,0.000165524921612814,-0.999969005584717,-0.00787527579814196,0.000191016646567732,-0.999974310398102,1.5909567971781e-018,-0.00716503243893385,-0.999698340892792,-0.023502541705966,-0.00713596539571881,-0.999974310398102,1.5909567971781e-018,-0.00716503243893385,-0.999496698379517,-0.0234418343752623,-0.0213773641735315,
  845. -0.998664081096649,-0.04665632173419,-0.0222105644643307,-0.998998999595642,-0.0389852114021778,-0.0219364650547504,-0.999186396598816,-0.0391878448426723,-0.00953790079802275,-0.999952495098114,-7.67266683396883e-005,-0.00974428746849298,-0.999676644802094,-0.0235386434942484,-0.00962227210402489,-0.999995172023773,2.44456132350024e-005,0.00310459290631115,-0.999218940734863,-0.0393891520798206,0.00316384457983077,-0.999995172023773,2.44456132350024e-005,0.00310459290631115,-0.00778893148526549,-0.999912202358246,0.0107178743928671,-0.0155763309448957,-0.999821126461029,0.0107240155339241,-0.00787331908941269,-0.999911546707153,0.0107179433107376,-0.00787360314279795,-0.999947547912598,-0.00654842192307115,-5.17463231517468e-005,-0.999978423118591,-0.0065717832185328,-0.00792516116052866,-0.999947130680084,-0.00654826639220119,0.000137985494802706,-0.999846458435059,0.0175241567194462,-0.00787255633622408,-0.999814629554749,0.0175700969994068,0.000137985494802706,-0.999846458435059,0.0175241567194462,0.000181226118002087,0.999933838844299,0.0115078585222363,9.06142086023465e-005,0.999933779239655,0.0115080047398806,0.00787325203418732,0.999902963638306,0.011495036073029,-0.000186928053153679,0.999718129634857,-0.0237398631870747,0.00768432579934597,0.999687790870667,-0.0237784050405025,0.00787154491990805,0.999686241149902,-0.023779297247529,0.00787363573908806,0.999951720237732,0.00587904499843717,0.00791992247104645,0.999951362609863,0.0058788126334548,0.00791992247104645,0.999951362609863,0.0058788126334548,-0.999618589878082,-0.0226145349442959,-0.0158512741327286,-0.999618589878082,-0.0226145349442959,-0.0158512741327286,-0.999615728855133,-0.0227388571947813,-0.0158589258790016,-0.999680757522583,-0.023043317720294,-0.0103630004450679,-0.999682664871216,-0.0229620784521103,-0.0103580085560679,-0.999680757522583,-0.023043317720294,-0.0103630004450679,-0.999685883522034,-0.0239104554057121,0.00751404697075486,-0.999683082103729,-0.0240284390747547,0.00750890839844942,-0.999683082103729,-0.0240284390747547,0.00750890839844942,
  846. -0.999577224254608,-0.0242439731955528,0.0160506311804056,-0.999571263790131,-0.0244959983974695,0.0160397104918957,-0.999577224254608,-0.0242439731955528,0.0160506311804056,0.000290567142656073,1,4.57586065749638e-006,0.00029057843494229,1,2.28801900448161e-006,0.00029057843494229,1,2.28801900448161e-006,0.00127030874136835,0.999999165534973,1.00024308267166e-005,0.0012311190366745,0.99996817111969,0.0078931525349617,0.00127025903202593,0.999999165534973,2.00040794879897e-005,0.000118583455332555,0.999969065189362,0.00787563994526863,0.000269744865363464,1,2.22044604925031e-016,0.000269663345534354,1,4.24666677645291e-006,-0.000919557467568666,0.999999582767487,2.22044512280803e-016,-0.00107444869354367,0.999968647956848,0.00785684864968061,-0.000919700192753226,0.999999582767487,7.24173378330306e-006,-1.09606544356211e-005,1,1.72608736193069e-007,-1.09631873783655e-005,1,2.22044604925031e-016,-1.0961920452246e-005,1,8.63143370111175e-008,-1.62073793035233e-005,1,2.5523434032948e-007,-1.62093492690474e-005,1,1.27632674207234e-007,-1.62073793035233e-005,1,2.5523434032948e-007,-0.0105660045519471,0.000166393772815354,-0.99994421005249,-0.0105660045519471,0.000166393772815354,-0.99994421005249,-0.0105676790699363,8.3210070442874e-005,-0.999944150447845,-0.00925395358353853,2.22035102274154e-016,-0.999957203865051,-0.00925373379141092,0.000145728088682517,-0.999957203865051,-0.00925384368747473,7.28649101802148e-005,-0.999957203865051,-0.010313275270164,0.00016241378034465,-0.99994683265686,-0.0103142261505127,2.22032799403329e-016,-0.99994683265686,-0.0103142261505127,2.22032799403329e-016,-0.99994683265686,-0.00198984309099615,-1.56680562213296e-005,-0.999998033046722,-0.00198994157835841,2.22044168173668e-016,-0.999998033046722,-0.00198994157835841,2.22044168173668e-016,-0.999998033046722,-0.00122871482744813,2.22044432871464e-016,-0.999999225139618,-0.00122866162564605,-9.67450068856124e-006,-0.999999225139618,-0.00122866162564605,-9.67450068856124e-006,-0.999999225139618,-8.23847658466548e-005,-1,-2.22044604925031e-016,
  847. -8.23639638838358e-005,-1,-1.29707041196525e-006,-8.23639638838358e-005,-1,-1.29707041196525e-006,3.64076804544311e-005,-1,5.73349325350137e-007,3.64171246474143e-005,-1,-2.22044604925031e-016,3.64171246474143e-005,-1,-2.22044604925031e-016,0.00217585219070315,-0.999997615814209,-3.42653911502566e-005,0.00217638374306262,-0.999997615814209,-2.22044075529439e-016,0.00217638374306262,-0.999997615814209,-2.22044075529439e-016,0.00137904298026115,-0.999999046325684,-2.22044393166794e-016,0.00137867976445705,-0.999999046325684,-2.1711492081522e-005,0.00137867976445705,-0.999999046325684,-2.1711492081522e-005,0.00353555753827095,-0.999993741512299,-2.22043215261602e-016,0.00353555753827095,-0.999993741512299,-2.22043215261602e-016,0.00353555753827095,-0.999993741512299,-2.22043215261602e-016,0.00279294606298208,-0.99999612569809,-2.22043744657194e-016,0.00279294606298208,-0.99999612569809,-2.22043744657194e-016,0.00279294606298208,-0.99999612569809,-2.22043744657194e-016,0.00777464173734188,-0.999969780445099,-2.22037894835902e-016,0.00777464173734188,-0.999969780445099,-2.22037894835902e-016,0.00777464173734188,-0.999969780445099,-2.22037894835902e-016,0.00229622307233512,-0.99999737739563,-2.2204402258988e-016,0.00229622307233512,-0.99999737739563,-2.2204402258988e-016,0.00229622307233512,-0.99999737739563,-2.2204402258988e-016,0.00166480452753603,-0.99999862909317,-2.22044300522566e-016,0.00166480452753603,-0.99999862909317,-2.22044300522566e-016,0.00166480452753603,-0.99999862909317,-2.22044300522566e-016,-0.0544901788234711,-0.00786207336932421,0.99848335981369,-0.0544901788234711,-0.00786207336932421,0.99848335981369,-0.0544901788234711,-0.00786207336932421,0.99848335981369,-0.0561928860843182,-0.00786133110523224,0.998389005661011,-0.0561928860843182,-0.00786133110523224,0.998389005661011,-0.0561928860843182,-0.00786133110523224,0.998389005661011,-0.0359884835779667,-0.00786867085844278,0.999321222305298,-0.0359115675091743,-2.21901376947607e-016,0.999354958534241,-0.0359884835779667,-0.00786867085844278,0.999321222305298,
  848. -0.0395455025136471,-2.21870936701065e-016,0.999217867851257,-0.0396217294037342,-0.00786758866161108,0.999183773994446,-0.0395455025136471,-2.21870936701065e-016,0.999217867851257,-0.0381622761487961,-2.21882861336775e-016,0.9992715716362,-0.0381601490080357,-0.000300473620882258,0.99927169084549,-0.0381622761487961,-2.21882861336775e-016,0.9992715716362,-0.0388324521481991,-0.000305767345707864,0.999245762825012,-0.038834672421217,-2.21877104159712e-016,0.999245643615723,-0.0388324521481991,-0.000305767345707864,0.999245762825012,0.00612990697845817,0.999981224536896,2.22040435934744e-016,0.00612990697845817,0.999981224536896,2.22040435934744e-016,0.00612990697845817,0.999981224536896,2.22040435934744e-016,0.00892687495797873,0.99996018409729,2.22035764018644e-016,0.00892687495797873,0.99996018409729,2.22035764018644e-016,0.00892687495797873,0.99996018409729,2.22035764018644e-016,0.00398737518116832,0.999992072582245,2.22042844684688e-016,0.00398737518116832,0.999992072582245,2.22042844684688e-016,0.00398737518116832,0.999992072582245,2.22042844684688e-016,0.00299908732995391,0.999995529651642,2.22043612308296e-016,0.00299908732995391,0.999995529651642,2.22043612308296e-016,0.00299908732995391,0.999995529651642,2.22043612308296e-016,0.00878104194998741,0.99996143579483,2.2203604195133e-016,0.00878104194998741,0.99996143579483,2.2203604195133e-016,0.00878104194998741,0.99996143579483,2.2203604195133e-016,0.00109232915565372,-8.60101681610104e-006,-0.999999403953552,0.00112656317651272,0.0078737661242485,-0.999968349933624,0.00112656317651272,0.0078737661242485,-0.999968349933624,-0.00148528453428298,0.00787376239895821,-0.999967873096466,-0.0015352217014879,1.20883596537169e-005,-0.999998807907104,-0.0015352985356003,2.22044340227235e-016,-0.999998807907104,0.0391548238694668,-0.000308305694488809,-0.999233186244965,0.039149533957243,0.000308264046907425,-0.999233365058899,0.0391521789133549,2.21874351302633e-016,-0.999233245849609,0.0339567512273788,0.000267376017291099,-0.999423265457153,0.0339586511254311,2.21916544131318e-016,-0.999423265457153,
  849. 0.0339567512273788,0.000267376017291099,-0.999423265457153,-0.0118305590003729,-9.31540125748143e-005,-0.999930024147034,-0.0118291722610593,-0.000186286182724871,-0.999930083751678,-0.0118291722610593,-0.000186286182724871,-0.999930083751678,-0.0110674314200878,-0.000174290253198706,-0.999938786029816,-0.011068694293499,-8.71550728334114e-005,-0.999938726425171,-0.011068694293499,-8.71550728334114e-005,-0.999938726425171,0.0736968517303467,2.21440802782537e-016,-0.997280716896057,0.0736947506666183,0.000580273626837879,-0.997280776500702,0.0736947506666183,0.000580273626837879,-0.997280776500702,0.0772648528218269,0.000608384667430073,-0.997010469436646,0.0772671550512314,2.2138078255729e-016,-0.997010409832001,0.0772671550512314,2.2138078255729e-016,-0.997010409832001,-0.000507287797518075,0.99999988079071,-3.99439204556984e-006,-0.000469157414045185,0.999968767166138,-0.00788485258817673,-0.000507287797518075,0.99999988079071,-3.99439204556984e-006,-9.2999885964673e-005,1,-7.32282558146835e-007,-6.61634330754168e-005,0.999969065189362,-0.00787585601210594,-6.61652229609899e-005,0.999969005584717,-0.00787533540278673,-4.25581238232553e-005,0.999969065189362,-0.0078751128166914,-0.000370921072317287,0.999999940395355,2.22044591690142e-016,-4.25720900238957e-005,0.999969005584717,-0.00787477754056454,-0.000384878308977932,0.999999940395355,2.22044591690142e-016,-4.41573502030224e-005,0.999969065189362,-0.00787516310811043,-0.0003850094799418,0.999999940395355,3.03157071357418e-006,3.2281328458339e-005,1,-2.54183674996966e-007,3.22764899465255e-005,1,-5.08291179812659e-007,3.22861669701524e-005,1,2.22044604925031e-016,0.000287027098238468,1,-2.26005590775458e-006,0.000286982918623835,1,-4.51941650680965e-006,0.000286982918623835,1,-4.51941650680965e-006,-0.00562408892437816,-0.999984204769135,-4.428416286828e-005,-0.00567371258512139,-0.999954044818878,0.0077396291308105,-0.00562408892437816,-0.999984204769135,-4.428416286828e-005,-3.66651256626938e-005,-0.999969065189362,0.007872617803514,4.21286640630569e-005,-1,3.31721764723625e-007,
  850. -3.66679996659514e-005,-0.999969065189362,0.00787290651351213,0.00357614317908883,-0.999993622303009,-2.22043188791823e-016,0.00325053278356791,-0.999962985515594,0.00797610450536013,0.00325157702900469,-0.999963164329529,0.00795053411275148,-0.00317266350612044,-0.999964833259583,0.00777381332591176,-0.0028496750164777,-0.999995946884155,-2.22043704952525e-016,-0.00285060796886683,-0.999995946884155,2.24457307922421e-005,-0.00191196927335113,-0.999998152256012,-2.22044194643447e-016,-0.00191137962974608,-0.999998152256012,3.01004674838623e-005,-0.00191167450975627,-0.999998152256012,1.50525556819048e-005,0.00155903247650713,-0.999998807907104,-2.45516930590384e-005,0.00155928148888052,-0.999998807907104,-1.22778064906015e-005,0.00155903247650713,-0.999998807907104,-2.45516930590384e-005,0.013070878572762,0.000205840609851293,0.999914646148682,0.0130727374926209,0.000102934944152366,0.999914526939392,0.013070878572762,0.000205840609851293,0.999914646148682,0.0105849327519536,8.3345927123446e-005,0.999943971633911,0.010582790710032,0.000166658122907393,0.999944031238556,0.0105849327519536,8.3345927123446e-005,0.999943971633911,-0.00210425234399736,-2.22044115234109e-016,0.999997794628143,-0.00210419320501387,-1.65684505191166e-005,0.999997794628143,-0.00210419320501387,-1.65684505191166e-005,0.999997794628143,-0.00213786796666682,-2.22044101999219e-016,0.999997735023499,-0.00213780649937689,-1.68331225722795e-005,0.999997735023499,-0.00213786796666682,-2.22044101999219e-016,0.999997735023499,0.00829767901450396,-6.53360548312776e-005,0.99996554851532,0.00829798821359873,-2.22036955158726e-016,0.99996554851532,0.00829798821359873,-2.22036955158726e-016,0.99996554851532,0.00754662323743105,-2.22038278647707e-016,0.999971508979797,0.00754634896293283,-5.9420068282634e-005,0.999971508979797,0.00754634896293283,-5.9420068282634e-005,0.999971508979797,-0.008037437684834,-0.999967694282532,0.00012657382467296,-0.00803916156291962,-0.999967694282532,-2.22037431614759e-016,-0.008037437684834,-0.999967694282532,0.00012657382467296,
  851. -0.00755814556032419,-0.999971449375153,-2.22038265412817e-016,-0.00755656696856022,-0.999971449375153,0.000119001058919821,-0.00755814556032419,-0.999971449375153,-2.22038265412817e-016,-0.0116267530247569,-0.999932408332825,-2.22029596559997e-016,-0.0116253513842821,-0.999932527542114,-9.15382042876445e-005,-0.0116267530247569,-0.999932408332825,-2.22029596559997e-016,0.00405201874673367,-0.999991774559021,3.19056598527823e-005,0.00405249139294028,-0.999991774559021,-2.22042778510239e-016,0.00405201874673367,-0.999991774559021,3.19056598527823e-005,0.00272902264259756,-0.999996364116669,2.14883675653255e-005,0.00272897630929947,-0.999996304512024,-2.22043784361864e-016,0.00272902264259756,-0.999996364116669,2.14883675653255e-005,-0.00335319596342742,-0.999994397163391,-2.2204336084539e-016,-0.00335319805890322,-0.999994397163391,-2.64031332335435e-005,-0.00335319596342742,-0.999994397163391,-2.2204336084539e-016,0.0571497902274132,-0.00786090269684792,-0.99833470582962,0.0571497902274132,-0.00786090269684792,-0.99833470582962,0.0571497902274132,-0.00786090269684792,-0.99833470582962,0.0591886900365353,-0.00785996858030558,-0.998215973377228,0.0591886900365353,-0.00785996858030558,-0.998215973377228,0.0591886900365353,-0.00785996858030558,-0.998215973377228,0.0376904681324959,-0.00786817818880081,-0.999258577823639,0.0377099514007568,2.21886672985038e-016,-0.999288737773895,0.0376904681324959,-0.00786817818880081,-0.999258577823639,0.0406245887279511,2.2186130170129e-016,-0.999174475669861,0.040605116635561,-0.00786727853119373,-0.999144375324249,0.0406245887279511,2.2186130170129e-016,-0.999174475669861,0.0377761870622635,2.21886117119666e-016,-0.999286234378815,0.0377761870622635,2.21886117119666e-016,-0.999286234378815,0.0377761870622635,2.21886117119666e-016,-0.999286234378815,0.0386414118111134,2.21878771755827e-016,-0.999253153800964,0.0386414118111134,2.21878771755827e-016,-0.999253153800964,0.0386414118111134,2.21878771755827e-016,-0.999253153800964,-0.00448197824880481,0.999989926815033,7.05823331372812e-005,
  852. -0.00448298780247569,0.999989926815033,2.22042368228655e-016,-0.00448197824880481,0.999989926815033,7.05823331372812e-005,-0.00529019767418504,0.999985992908478,2.22041494725928e-016,-0.00528881652280688,0.999985992908478,8.3288447058294e-005,-0.00529019767418504,0.999985992908478,2.22041494725928e-016,0.007093436550349,0.999974846839905,2.22039019801535e-016,0.00709257554262877,0.999974846839905,5.58470528631005e-005,0.007093436550349,0.999974846839905,2.22039019801535e-016,-0.0122221410274506,0.999925315380096,-9.62373305810615e-005,-0.0122235780581832,0.999925315380096,2.22028021608111e-016,-0.0122221410274506,0.999925315380096,-9.62373305810615e-005,-0.0123541727662086,0.999923706054688,2.22027664266086e-016,-0.0123540423810482,0.999923706054688,-9.72759225987829e-005,-0.0123540423810482,0.999923706054688,-9.72759225987829e-005,-0.00726942345499992,0.999973595142365,-5.72395547351334e-005,-0.007269486784935,0.999973595142365,2.2203874186885e-016,-0.007269486784935,0.999973595142365,2.2203874186885e-016,0.0086764320731163,0.00794178992509842,0.999930799007416,0.00867635570466518,0.00787347555160522,0.999931395053864,0.00867635570466518,0.00787347555160522,0.999931395053864,0.0132568525150418,0.00787307973951101,0.999881148338318,0.0132567211985588,0.00797745678573847,0.999880313873291,0.0132567211985588,0.00797745678573847,0.999880313873291,-0.0192081220448017,-2.22003642941098e-016,0.99981552362442,-0.0193018931895494,0.0077203307300806,0.999783873558044,-0.0193018931895494,0.0077203307300806,0.999783873558044,-0.0126966862007976,0.0077731697820127,0.999889194965363,-0.0126025853678584,-2.22026976051817e-016,0.999920606613159,-0.0126025853678584,-2.22026976051817e-016,0.999920606613159,-0.0398820973932743,0.000314032280584797,0.999204397201538,-0.0398862287402153,-2.218679059113e-016,0.999204218387604,-0.0398862287402153,-2.218679059113e-016,0.999204218387604,-0.037228848785162,-2.21890669921758e-016,0.999306738376617,-0.0372260063886642,0.000293118180707097,0.999306917190552,-0.0372260063886642,0.000293118180707097,0.999306917190552,
  853. -0.990435302257538,-0.135980486869812,0.0233961120247841,-0.997139096260071,-0.0246936529874802,-0.0714411437511444,-0.855139195919037,-0.432006299495697,0.28654420375824,-0.999542713165283,0.0188919715583324,0.02361124381423,-0.99869042634964,0.019782830029726,-0.0471822246909142,-0.997342228889465,0.0200499463826418,-0.0700462907552719,-0.998870372772217,-0.0055652316659689,-0.0471907258033752,-0.999706089496613,-0.00548595888540149,0.0236151050776243,-0.998871028423309,-0.0054534231312573,0.0471907593309879,-0.998853623867035,-0.00803597830235958,0.0471899323165417,-0.998844981193542,-0.00905032828450203,-0.0471895262598991,-0.998853623867035,-0.00803597830235958,0.0471899323165417,-0.999999761581421,-0.000701395270880312,-1.55741035818904e-019,-0.998885571956635,-0.000744458113331348,-0.0471914447844028,-0.998885631561279,-0.000656769494526088,0.0471914447844028,-0.998757362365723,0.0160392485558987,0.0471853911876678,-0.999865055084229,0.0164268724620342,3.64749840598627e-018,-0.998757362365723,0.0160392485558987,0.0471853911876678,-0.781157732009888,0.012524202466011,0.624208092689514,-0.931015312671661,-0.364980101585388,-8.10418624620253e-017,-0.937581062316895,-0.344934374094009,0.0442951694130898,0.993094265460968,-0.110917337238789,0.0382248312234879,0.998223423957825,-0.0356743857264519,-0.0477219596505165,0.852410316467285,-0.38125479221344,0.357828766107559,0.999190032482147,-0.00879981927573681,0.0392688997089863,0.999190330505371,-0.00875136163085699,-0.0392692945897579,0.998841166496277,-0.00874332245439291,-0.0473270304501057,0.999137282371521,-0.0136322686448693,-0.0392287708818913,0.999137997627258,-0.0135774137452245,0.0392292328178883,0.999125421047211,-0.0135770179331303,0.039549458771944,0.999104201793671,0.016237011179328,0.0390791110694408,0.999117136001587,0.0144520150497556,-0.0394491143524647,0.999117136001587,0.0144520150497556,-0.0394491143524647,0.999491155147552,0.00491134682670236,0.0315187089145184,0.999213993549347,0.00458782492205501,-0.0393752567470074,0.999216854572296,0.00494522741064429,0.0392613671720028,
  854. 0.999193131923676,0.00779730966314673,-0.0393997058272362,0.999479532241821,0.00681252172216773,0.0315333120524883,0.999197959899902,0.00779563887044787,-0.0392771176993847,0.998479664325714,-0.00235535111278296,0.0550713986158371,0.999224603176117,-0.00133356160949916,-0.039350051432848,0.999502718448639,-0.00210135406814516,0.0314638540148735,0.99845677614212,-0.0300566591322422,-0.0466978512704372,0.998763799667358,-0.0301019065082073,-0.0395584292709827,0.997991621494293,-0.0305568650364876,0.0554886236786842,-0.696175277233124,-0.241598516702652,-0.675995647907257,0.00597353093326092,-0.651484489440918,-0.758638381958008,-0.0362915620207787,-0.639215052127838,-0.768171370029449,-0.0471853911876678,0.0160393454134464,-0.998757362365723,0.00787270255386829,0.0164877250790596,-0.999833166599274,-0.0471853911876678,0.0160393454134464,-0.998757362365723,0.0472010113298893,-0.0012201510835439,-0.998884737491608,-0.0471914224326611,-0.00118466559797525,-0.998885154724121,0.0078737661242485,-0.00120667065493762,-0.999968290328979,-0.0471902899444103,-0.00705558154731989,-0.998861074447632,0.0472527928650379,-0.00799932423979044,-0.99885094165802,-0.0471902899444103,-0.00705558154731989,-0.998861074447632,0.0472036823630333,-0.00156283588148654,-0.99888414144516,-0.0314691215753555,-0.00143688078969717,-0.999503791332245,-0.0471914112567902,-0.00141060398891568,-0.998884856700897,0.0469421856105328,0.00788545235991478,-0.998866558074951,-0.0315285995602608,0.00619719177484512,-0.999483704566956,0.0471280068159103,0.007889399304986,-0.998857736587524,-0.0312115699052811,-0.0321172848343849,-0.998996675014496,0.048127219080925,-0.0304748062044382,-0.998376190662384,-0.0458939149975777,-0.0323994755744934,-0.998420774936676,-0.0382201410830021,-0.111300557851791,0.993051648139954,0.0477263517677784,-0.0359878540039063,0.998211920261383,-0.357590675354004,-0.381655186414719,0.852331042289734,-0.0392685942351818,-0.00883652549237013,0.999189674854279,0.0392689555883408,-0.00879296474158764,0.999190092086792,0.0473276786506176,-0.00878541264683008,0.998840749263763,
  855. 0.0392347946763039,-0.0129139078781009,0.999146640300751,-0.0392367281019688,-0.0126827200874686,0.999149441719055,-0.0316778421401978,-0.0127084236592054,0.999417364597321,-0.031320609152317,0.0100589236244559,0.999458789825439,0.0392660051584244,0.00915154442191124,0.999186873435974,0.0394098907709122,0.00914964731782675,0.99918133020401,-0.031368799507618,0.0070471023209393,0.999483048915863,-0.0394490212202072,0.00702053401619196,0.999196946620941,0.0392814911901951,0.00725951511412859,0.999201834201813,0.0393843725323677,-0.00577803747728467,0.999207496643066,0.0393843725323677,-0.00577803747728467,0.999207496643066,-0.0392159484326839,-0.00778840063139796,0.999200403690338,0.699014902114868,-0.714338600635529,-0.0331449843943119,0.677919268608093,-0.734683692455292,0.0257958043366671,0.724022209644318,-0.324531018733978,-0.608663618564606,0.998978853225708,0.0225483290851116,-0.0391523279249668,0.998977541923523,0.0226066168397665,0.0391518212854862,0.998209774494171,0.0226013474166393,0.0553753599524498,0.998902559280396,0.0257479399442673,0.0391241312026978,0.998909950256348,0.0254569780081511,-0.0391267128288746,0.999166905879974,0.0254905596375465,-0.0318712517619133,0.999383389949799,-0.0160627979785204,-0.0312236826866865,0.999117136001587,-0.0144519219174981,0.0394491143524647,0.999117136001587,-0.0144519219174981,0.0394491143524647,0.999486327171326,-0.00576636055484414,-0.0315252877771854,0.999207139015198,-0.00582652073353529,0.0393847413361073,0.999490678310394,-0.00576650444418192,-0.0313892103731632,0.999193131923676,-0.00779722351580858,0.0393997058272362,0.999479532241821,-0.00681259157136083,-0.0315333157777786,0.999197959899902,-0.00779555318877101,0.0392771176993847,0.997998118400574,0.00915857497602701,0.062577560544014,0.999180972576141,0.00917599629610777,0.039410088211298,0.999464392662048,0.00919860694557428,-0.0314067639410496,0.777257263660431,-0.0862118452787399,-0.623248636722565,0.943522930145264,0.327646523714066,0.0491149351000786,0.95647257566452,0.290491759777069,-0.027837784960866,
  856. -0.999173104763031,0.0257440079003572,-0.0314700193703175,-0.998557031154633,0.0252907183021307,0.0473750606179237,-0.99858158826828,0.0258126482367516,-0.0465673357248306,-0.999497890472412,0.00361000932753086,-0.031480249017477,-0.999870121479034,0.00343969441018999,0.0157459862530231,-0.998879194259644,0.00332186394371092,0.0472172982990742,-0.999873101711273,0.00241917162202299,0.0157460328191519,-0.99950122833252,0.00251507037319243,-0.0314803533256054,-0.998882651329041,0.00254575978033245,-0.0471913069486618,-0.998211801052094,-0.0233670994639397,-0.0550195463001728,-0.999604105949402,-0.023321658372879,0.0157417971640825,-0.998613119125366,-0.0233678314834833,-0.0471785739064217,-0.999818921089172,-0.0106849754229188,0.0157451797276735,-0.998426139354706,-0.0108123011887074,-0.0550313629209995,-0.999817669391632,-0.0106847928836942,0.0158292930573225,-0.00297273695468903,2.22043625543186e-016,-0.999995589256287,-0.00297273695468903,2.22043625543186e-016,-0.999995589256287,-0.00297273695468903,2.22043625543186e-016,-0.999995589256287,-0.00626217713579535,2.22040250646287e-016,-0.999980390071869,-0.00626217713579535,2.22040250646287e-016,-0.999980390071869,-0.00626217713579535,2.22040250646287e-016,-0.999980390071869,0.00328712514601648,2.22043400550059e-016,-0.999994575977325,0.00328712514601648,2.22043400550059e-016,-0.999994575977325,0.00328712514601648,2.22043400550059e-016,-0.999994575977325,0.00332947983406484,2.2204337408028e-016,-0.999994456768036,0.00332947983406484,2.2204337408028e-016,-0.999994456768036,0.00332947983406484,2.2204337408028e-016,-0.999994456768036,0.00297799427062273,-2.22043625543186e-016,0.999995589256287,0.00297799427062273,-2.22043625543186e-016,0.999995589256287,0.00297799427062273,-2.22043625543186e-016,0.999995589256287,0.00339676439762115,-2.22043321140721e-016,0.999994218349457,0.00339676439762115,-2.22043321140721e-016,0.999994218349457,0.00339676439762115,-2.22043321140721e-016,0.999994218349457,-0.00467119412496686,-2.22042182940198e-016,0.999989092350006,-0.00467119412496686,-2.22042182940198e-016,0.999989092350006,
  857. -0.00467119412496686,-2.22042182940198e-016,0.999989092350006,-0.00334159168414772,-2.2204336084539e-016,0.999994397163391,-0.00334159168414772,-2.2204336084539e-016,0.999994397163391,-0.00334159168414772,-2.2204336084539e-016,0.999994397163391,-0.00245226453989744,0.999997079372406,1.93091691471636e-005,-0.00245238491334021,0.999997019767761,2.22043943180541e-016,-0.00245226453989744,0.999997079372406,1.93091691471636e-005,-0.0024094411637634,0.999997079372406,2.22043956415431e-016,-0.00240932544693351,0.999997079372406,1.89710663107689e-005,-0.0024094411637634,0.999997079372406,2.22043956415431e-016,-0.002125647617504,0.999997735023499,2.22044101999219e-016,-0.002125647617504,0.999997735023499,2.22044101999219e-016,-0.002125647617504,0.999997735023499,2.22044101999219e-016,-0.00209456589072943,0.999997794628143,2.22044115234109e-016,-0.00209456589072943,0.999997794628143,2.22044115234109e-016,-0.00209456589072943,0.999997794628143,2.22044115234109e-016,-0.000533212791197002,2.22044578455252e-016,-0.99999988079071,-0.000533212791197002,2.22044578455252e-016,-0.99999988079071,-0.000533212791197002,2.22044578455252e-016,-0.99999988079071,0.00122466473840177,2.22044432871464e-016,-0.999999225139618,0.00122466473840177,2.22044432871464e-016,-0.999999225139618,0.00122466473840177,2.22044432871464e-016,-0.999999225139618,-0.00160218181554228,2.22044313757456e-016,-0.999998688697815,-0.00160218181554228,2.22044313757456e-016,-0.999998688697815,-0.00160218181554228,2.22044313757456e-016,-0.999998688697815,-0.00253366306424141,-2.22043890240982e-016,0.999996781349182,-0.00253366306424141,-2.22043890240982e-016,0.999996781349182,-0.00253366306424141,-2.22043890240982e-016,0.999996781349182,0.0016056124586612,-2.22044313757456e-016,0.999998688697815,0.0016056124586612,-2.22044313757456e-016,0.999998688697815,0.0016056124586612,-2.22044313757456e-016,0.999998688697815,-0.000212700586416759,-2.22044604925031e-016,1,-0.000212700586416759,-2.22044604925031e-016,1,-0.000212700586416759,-2.22044604925031e-016,1,0.00173176196403801,-0.999998509883881,-2.22044274052786e-016,
  858. 0.00173169758636504,-0.999998509883881,1.36354137794115e-005,0.00173169758636504,-0.999998509883881,1.36354137794115e-005,0.00221149204298854,-0.999997556209564,1.74133219843498e-005,0.0022115739993751,-0.999997556209564,-2.22044062294549e-016,0.0022115739993751,-0.999997556209564,-2.22044062294549e-016,0.00294117396697402,-0.999995648860931,-2.3158851035987e-005,0.00294133368879557,-0.999995648860931,-2.22043638778076e-016,0.00294133368879557,-0.999995648860931,-2.22043638778076e-016,0.00262055266648531,-0.999996542930603,-2.22043837301423e-016,0.00262041063979268,-0.999996542930603,-2.06331551453331e-005,0.00262041063979268,-0.999996542930603,-2.06331551453331e-005,0.00164391135331243,0.99999862909317,-1.29441841636435e-005,0.00164391135331243,0.99999862909317,-1.29441841636435e-005,0.00164391135331243,0.99999862909317,-1.29441841636435e-005,-0.00101327174343169,0.999999463558197,2.22044485811023e-016,-0.00101324799470603,0.999999463558197,7.9783312685322e-006,-0.00101324799470603,0.999999463558197,7.9783312685322e-006,-0.000836116261780262,0.999999642372131,6.58359249428031e-006,-0.000836149323731661,0.999999642372131,2.22044525515693e-016,-0.000836149323731661,0.999999642372131,2.22044525515693e-016,0.000985370948910713,-0.999999523162842,-2.22044499045913e-016,0.00098532228730619,-0.999999523162842,7.75844273448456e-006,0.00098532228730619,-0.999999523162842,7.75844273448456e-006,-0.00372759765014052,-0.999993026256561,-2.93511620839126e-005,-0.00372778251767159,-0.999993026256561,-2.22043056442925e-016,-0.00372778251767159,-0.999993026256561,-2.22043056442925e-016,0.00103490450419486,-0.999999463558197,-8.14885515865171e-006,0.00103497051168233,-0.999999463558197,-2.22044485811023e-016,0.00103497051168233,-0.999999463558197,-2.22044485811023e-016,-0.00353334075771272,-0.999993741512299,-2.22043215261602e-016,-0.00353311863727868,-0.999993741512299,2.78198313026223e-005,-0.00353311863727868,-0.999993741512299,2.78198313026223e-005,0.00199980172328651,-0.999997973442078,-3.14929420710541e-005,0.00200001010671258,-0.999997973442078,-1.57481099449797e-005,
  859. 0.00199980172328651,-0.999997973442078,-3.14929420710541e-005,0.00219391356222332,-0.999997615814209,-1.72749096236657e-005,0.00219368725083768,-0.999997615814209,-3.45462540281005e-005,0.00219391356222332,-0.999997615814209,-1.72749096236657e-005,0.0022783474996686,-0.99999737739563,-1.79397429747041e-005,0.00227836379781365,-0.99999737739563,-2.2204402258988e-016,0.0022783474996686,-0.99999737739563,-1.79397429747041e-005,0.00221595703624189,-0.999997556209564,-2.22044062294549e-016,0.00221594306640327,-0.999997556209564,-1.74483702721773e-005,0.00221595703624189,-0.999997556209564,-2.22044062294549e-016,-0.00166021240875125,0.99999862909317,-1.30725384224206e-005,-0.00166029250249267,0.99999862909317,2.22044300522566e-016,-0.00166021240875125,0.99999862909317,-1.30725384224206e-005,0.00278476881794631,0.99999612569809,2.22043744657194e-016,0.00278463284485042,0.99999612569809,2.1926243789494e-005,0.00278476881794631,0.99999612569809,2.22043744657194e-016,-0.00155326421372592,0.999998807907104,2.22044340227235e-016,-0.00155317015014589,0.999998807907104,1.22296869449201e-005,-0.00155326421372592,0.999998807907104,2.22044340227235e-016,0.00301025877706707,0.999995470046997,-2.37028252740856e-005,0.00301044271327555,0.999995470046997,2.22043599073406e-016,0.00301025877706707,0.999995470046997,-2.37028252740856e-005,0.00297181983478367,-2.22043625543186e-016,0.999995589256287,0.00297181983478367,-2.22043625543186e-016,0.999995589256287,0.00297181983478367,-2.22043625543186e-016,0.999995589256287,0.00358656886965036,-2.22043175556933e-016,0.999993562698364,0.00358656886965036,-2.22043175556933e-016,0.999993562698364,0.00358656886965036,-2.22043175556933e-016,0.999993562698364,-0.00563352461904287,-2.22041084444344e-016,0.99998414516449,-0.00563352461904287,-2.22041084444344e-016,0.99998414516449,-0.00563352461904287,-2.22041084444344e-016,0.99998414516449,-0.00333015387877822,-2.2204337408028e-016,0.999994456768036,-0.00333015387877822,-2.2204337408028e-016,0.999994456768036,-0.00333015387877822,-2.2204337408028e-016,0.999994456768036,
  860. -0.00162505742628127,2.22044313757456e-016,-0.999998688697815,-0.00162505742628127,2.22044313757456e-016,-0.999998688697815,-0.00162505742628127,2.22044313757456e-016,-0.999998688697815,-0.00477123772725463,2.22042077061079e-016,-0.999988615512848,-0.00477123772725463,2.22042077061079e-016,-0.999988615512848,-0.00477123772725463,2.22042077061079e-016,-0.999988615512848,0.00460508465766907,2.22042249114647e-016,-0.99998939037323,0.00460508465766907,2.22042249114647e-016,-0.99998939037323,0.00460508465766907,2.22042249114647e-016,-0.99998939037323,0.00329908519051969,2.22043400550059e-016,-0.999994575977325,0.00329908519051969,2.22043400550059e-016,-0.999994575977325,0.00329908519051969,2.22043400550059e-016,-0.999994575977325,0.00282259401865304,0.9999960064888,2.22043718187415e-016,0.00282245501875877,0.9999960064888,-2.22240560106002e-005,0.00282245501875877,0.9999960064888,-2.22240560106002e-005,0.00240932544693351,0.999997079372406,-1.89710663107689e-005,0.0024094411637634,0.999997079372406,2.22043956415431e-016,0.0024094411637634,0.999997079372406,2.22043956415431e-016,0.0021256972104311,0.999997735023499,2.22044101999219e-016,0.0021256972104311,0.999997735023499,2.22044101999219e-016,0.0021256972104311,0.999997735023499,2.22044101999219e-016,0.00241369847208261,0.999997079372406,2.22043956415431e-016,0.00241369847208261,0.999997079372406,2.22043956415431e-016,0.00241369847208261,0.999997079372406,2.22043956415431e-016,0.0123058008030057,2.22027796614984e-016,-0.999924302101135,0.0123058008030057,2.22027796614984e-016,-0.999924302101135,0.0123058008030057,2.22027796614984e-016,-0.999924302101135,0.0157037731260061,2.22017221938033e-016,-0.99987667798996,0.0157037731260061,2.22017221938033e-016,-0.99987667798996,0.0157037731260061,2.22017221938033e-016,-0.99987667798996,0.0135007603093982,2.22024368778526e-016,-0.999908864498138,0.0135007603093982,2.22024368778526e-016,-0.999908864498138,0.0135007603093982,2.22024368778526e-016,-0.999908864498138,-0.00349987647496164,2.75580823654309e-005,0.999993860721588,-0.00349998683668673,-2.22043241731382e-016,0.999993860721588,
  861. -0.00349987647496164,2.75580823654309e-005,0.999993860721588,-0.00303071667440236,-2.22043585838517e-016,0.999995410442352,-0.00303061306476593,2.38630946114426e-005,0.999995410442352,-0.00303071667440236,-2.22043585838517e-016,0.999995410442352,-0.00322281522676349,-2.22043453489619e-016,0.999994814395905,-0.00322261964902282,-2.53749585681362e-005,0.999994814395905,-0.00322281522676349,-2.22043453489619e-016,0.999994814395905,-0.00342838163487613,-2.69951306108851e-005,0.999994099140167,-0.00342857954092324,-2.22043294670941e-016,0.999994099140167,-0.00342838163487613,-2.69951306108851e-005,0.999994099140167,-0.000370573106920347,2.22044591690142e-016,-0.999999940395355,-0.000370560417650267,2.91779861072428e-006,-0.999999940395355,-0.000370560417650267,2.91779861072428e-006,-0.999999940395355,-0.000293095014058053,2.30783462029649e-006,-1,-0.000293105287710205,2.22044604925031e-016,-1,-0.000293105287710205,2.22044604925031e-016,-1,-0.000766358163673431,-6.03431635681773e-006,-0.999999701976776,-0.000766407232731581,2.22044538750582e-016,-0.999999701976776,-0.000766407232731581,2.22044538750582e-016,-0.999999701976776,-0.00107687106356025,2.22044472576133e-016,-0.999999403953552,-0.0010768030770123,-8.47876435727812e-006,-0.999999403953552,-0.0010768030770123,-8.47876435727812e-006,-0.999999403953552,-0.0013879764592275,0.999999046325684,2.22044393166794e-016,-0.0013879764592275,0.999999046325684,2.22044393166794e-016,-0.0013879764592275,0.999999046325684,2.22044393166794e-016,-0.001920583890751,0.999998152256012,2.22044194643447e-016,-0.001920583890751,0.999998152256012,2.22044194643447e-016,-0.001920583890751,0.999998152256012,2.22044194643447e-016,0.00111531070433557,0.999999403953552,2.22044472576133e-016,0.00111525855027139,0.999999463558197,8.78156333783409e-006,0.00111531070433557,0.999999403953552,2.22044472576133e-016,0.00168583099730313,0.999998569488525,1.32742597998003e-005,0.00168590375687927,0.999998569488525,2.22044287287676e-016,0.00168583099730313,0.999998569488525,1.32742597998003e-005,-0.000981627614237368,-0.999999523162842,-7.72935072745895e-006,
  862. -0.000981668592430651,-0.999999523162842,-2.22044499045913e-016,-0.000981627614237368,-0.999999523162842,-7.72935072745895e-006,0.00367635558359325,-0.99999326467514,-2.22043109382484e-016,0.00367620098404586,-0.99999326467514,2.89464642264647e-005,0.00367635558359325,-0.99999326467514,-2.22043109382484e-016,-0.0010411364492029,-0.999999463558197,-2.22044485811023e-016,-0.00104108022060245,-0.999999463558197,8.1974822023767e-006,-0.0010411364492029,-0.999999463558197,-2.22044485811023e-016,0.00358880613930523,-0.999993562698364,-2.82583168882411e-005,0.00358899752609432,-0.999993562698364,-2.22043175556933e-016,0.00358880613930523,-0.999993562698364,-2.82583168882411e-005,-0.00181026349309832,-0.999998450279236,1.42540429806104e-005,-0.0018103503389284,-0.999998390674591,-2.22044247583007e-016,-0.00181026349309832,-0.999998450279236,1.42540429806104e-005,-0.00275740586221218,-0.999996185302734,-2.22043757892084e-016,-0.002757269423455,-0.999996185302734,2.17107826756546e-005,-0.00275740586221218,-0.999996185302734,-2.22043757892084e-016,-0.00223187147639692,-0.999997496604919,-2.2204404905966e-016,-0.00223172409459949,-0.999997496604919,-1.75726308953017e-005,-0.00223187147639692,-0.999997496604919,-2.2204404905966e-016,-0.00218038982711732,-0.999997615814209,-1.71684241649928e-005,-0.00218053604476154,-0.999997615814209,-2.22044075529439e-016,-0.00218038982711732,-0.999997615814209,-1.71684241649928e-005,0.00166880316101015,0.99999862909317,1.3140182090865e-005,0.00166887056548148,0.99999862909317,2.22044300522566e-016,0.00166880316101015,0.99999862909317,1.3140182090865e-005,-0.00309418491087854,0.999995231628418,2.22043546133847e-016,-0.00309405731968582,0.999995231628418,-2.43626564042643e-005,-0.00309418491087854,0.999995231628418,2.22043546133847e-016,0.00155903550330549,0.999998807907104,2.22044340227235e-016,0.00155895622447133,0.999998807907104,-1.2275246263016e-005,0.00155903550330549,0.999998807907104,2.22044340227235e-016,-0.00267594563774765,0.999996423721313,2.10704383789562e-005,-0.0026760830078274,0.999996423721313,2.22043810831643e-016,
  863. -0.00267594563774765,0.999996423721313,2.10704383789562e-005,-0.999197959899902,0.0230878330767155,-0.0327194929122925,-0.998978793621063,0.0309454686939716,-0.0329202748835087,-0.999448657035828,0.007615199778229,-0.0323183164000511,-0.999897360801697,3.18170721279337e-018,-0.0143291354179382,-0.99962317943573,0.0233867857605219,-0.0143738901242614,-0.999867022037506,0.00776001671329141,-0.0143448542803526,-0.999828636646271,4.11077910602007e-018,-0.0185133032500744,-0.99955552816391,0.0233190506696701,-0.018573546782136,-0.999828636646271,4.11077910602007e-018,-0.0185133032500744,0.999568819999695,-0.0233311057090759,0.0178280044347048,0.999817788600922,-0.00773517694324255,0.0174502525478601,0.99935108423233,-0.0311918947845697,0.0180168114602566,0.999721050262451,-0.0236192662268877,-0.000241949048358947,1,3.67541452381371e-020,-0.000165525954798795,0.999969005584717,-0.00787527579814196,-0.000191017636097968,0.999966859817505,-1.80815105818222e-018,0.00814318843185902,0.999691247940063,-0.0234869755804539,0.00811387412250042,0.999966859817505,-1.80815105818222e-018,0.00814318843185902,-0.0236108042299747,-0.999524056911469,0.0198534093797207,-0.0394846685230732,-0.999031960964203,0.0193934757262468,-0.0236108042299747,-0.999524056911469,0.0198534093797207,-0.0394144468009472,-0.999175310134888,0.00975851621478796,-0.0236144103109837,-0.999676644802094,0.00942812487483025,-0.0394144468009472,-0.999175310134888,0.00975851621478796,-0.0395391173660755,-0.998846828937531,0.0272338446229696,-0.0552283115684986,-0.998100757598877,0.0272903442382813,-0.0395391173660755,-0.998846828937531,0.0272338446229696,-0.055102676153183,-0.998440504074097,0.00895682722330093,-0.0394103266298771,-0.999180674552917,0.00920854415744543,-0.055102676153183,-0.998440504074097,0.00895682722330093,-0.999107837677002,0.039082907140255,-0.0160047486424446,-0.998771488666534,0.0468013398349285,-0.0162862464785576,-0.999605000019073,0.0234911944717169,-0.0154334530234337,-0.999369204044342,7.8854987173976e-018,-0.0355131290853024,-0.998614728450775,0.0387550629675388,-0.0355903506278992,
  864. -0.999095261096954,0.0233206283301115,-0.0355659984052181,-0.999922573566437,2.76350889011947e-018,-0.0124457376077771,-0.999154329299927,0.0391382351517677,-0.0126078622415662,-0.999922573566437,2.76350889011947e-018,-0.0124457376077771,0.998998999595642,-0.0389852114021778,0.0219364650547504,0.999496698379517,-0.0234418343752623,0.0213773641735315,0.998664081096649,-0.04665632173419,0.0222105644643307,0.999186396598816,-0.0391878448426723,0.00953790452331305,0.999952495098114,-7.67267047194764e-005,0.00974429212510586,0.999676644802094,-0.0235386434942484,0.00962227582931519,0.999995172023773,2.444562051096e-005,-0.00310459383763373,0.999218940734863,-0.0393891520798206,-0.00316384015604854,0.999995172023773,2.444562051096e-005,-0.00310459383763373,0.99923038482666,0.0231046583503485,0.0316997617483139,0.999011397361755,0.030962560325861,0.0319002345204353,0.999481022357941,0.00762347923591733,0.0312991738319397,0.999843776226044,0.00774765340611339,0.0158918146044016,0.99987405538559,-3.5252324260545e-018,0.0158762354403734,0.999600350856781,0.0233618933707476,0.0159203130751848,0.999565362930298,0.0233279056847095,0.0180259812623262,0.999838590621948,-3.98915749978547e-018,0.0179655682295561,0.999838590621948,-3.98915749978547e-018,0.0179655682295561,0.0236111022531986,-0.999536693096161,-0.0192082170397043,0.0394800938665867,-0.99904453754425,-0.0187494531273842,0.0236111022531986,-0.999536693096161,-0.0192082170397043,0.0394144468009472,-0.999175310134888,-0.00975850969552994,0.0236144103109837,-0.999676644802094,-0.00942811835557222,0.0394144468009472,-0.999175310134888,-0.00975850969552994,0.0395416282117367,-0.998836576938629,-0.0276041384786367,0.0552306622266769,-0.998090445995331,-0.0276610124856234,0.0395416282117367,-0.998836576938629,-0.0276041384786367,0.0551051311194897,-0.998437345027924,-0.00929054897278547,0.0394128300249577,-0.9991774559021,-0.00954251177608967,0.0551051311194897,-0.998437345027924,-0.00929054897278547,0.999111831188202,0.0390871837735176,0.0157432146370411,0.998775482177734,0.0468077100813389,0.0160246305167675,
  865. 0.999608933925629,0.0234933439642191,0.0151722049340606,0.99910569190979,0.023323193192482,0.0352713949978352,0.999379634857178,-7.82004474270689e-018,0.0352183505892754,0.998624980449677,0.0387601032853127,0.0352959632873535,0.999144434928894,0.0391253270208836,0.0134026138111949,0.999912321567535,-2.94012704694573e-018,0.0132411550730467,0.999912321567535,-2.94012704694573e-018,0.0132411550730467,0.999628186225891,0.0226577036082745,0.0151695618405938,0.999625384807587,0.0227766744792461,0.0151769453659654,0.999628186225891,0.0226577036082745,0.0151695618405938,0.999689221382141,0.023097675293684,0.0093804132193327,0.999691009521484,0.023024145513773,0.00937586836516857,0.999689221382141,0.023097675293684,0.0093804132193327,0.999676167964935,0.0240696389228106,-0.00825941283255816,0.999679207801819,0.023939860984683,-0.00826497282832861,0.999676167964935,0.0240696389228106,-0.00825941283255816,0.999625504016876,0.0241220146417618,-0.012923882342875,0.999620795249939,0.0243249498307705,-0.0129151679575443,0.999625504016876,0.0241220146417618,-0.012923882342875,0.999459028244019,0.023427514359355,0.0230827108025551,0.99821811914444,0.0550198964774609,0.023096077144146,0.999459028244019,0.023427514359355,0.0230827108025551,0.999438166618347,0.0234199799597263,0.0239769145846367,0.998183608055115,0.0550179928541183,0.0245472826063633,0.998939275741577,0.0391372665762901,0.0242635738104582,0.998171985149384,0.055017352104187,0.0250187516212463,0.998171985149384,0.055017352104187,0.0250187516212463,0.998918950557709,0.0391298942267895,0.0250976774841547,-0.999207258224487,-0.039338868111372,-0.00611179601401091,-0.999704957008362,-0.0235688164830208,-0.00587512739002705,-0.999704957008362,-0.0235688164830208,-0.00587512739002705,-0.999628603458405,-0.0235046837478876,-0.0137909865006804,-0.999130249023438,-0.039335835725069,-0.0138382017612457,-0.998388290405273,-0.0550292767584324,-0.0138816051185131,-0.997769355773926,-0.0549951605498791,-0.0378419160842896,-0.998502850532532,-0.0393111370503902,-0.0380345433950424,
  866. -0.997753024101257,-0.0552921965718269,-0.0378381758928299,0.999429702758789,0.0234170015901327,0.0243297815322876,0.998188555240631,0.0550182648003101,0.0243450030684471,0.999429702758789,0.0234170015901327,0.0243297815322876,0.999447584152222,0.023423345759511,0.0235777087509632,0.998192608356476,0.0550184920430183,0.0241798963397741,0.998948395252228,0.0391406454145908,0.0238801706582308,0.998199880123138,0.0550188906490803,0.0238776784390211,0.998199880123138,0.0550188906490803,0.0238776784390211,0.998946368694305,0.0391399078071117,0.0239636953920126,-0.999189615249634,-0.0393381752073765,-0.00852177105844021,-0.999688506126404,-0.0235495418310165,-0.00827372539788485,-0.999688506126404,-0.0235495418310165,-0.00827372539788485,-0.999626636505127,-0.0235034860670567,-0.0139369331300259,-0.99912816286087,-0.0393357537686825,-0.01398781593889,-0.998386144638062,-0.0550291538238525,-0.014034815132618,-0.997834503650665,-0.0549987480044365,-0.0360763110220432,-0.998568475246429,-0.0393137186765671,-0.036270197480917,-0.997819006443024,-0.0552819333970547,-0.0360727310180664,0.98738169670105,0.158058986067772,0.00974071677774191,0.994674623012543,0.102542914450169,0.0103617906570435,0.98738169670105,0.158058986067772,0.00974071677774191,0.994680941104889,0.102549083530903,0.00966706778854132,0.987382650375366,0.158058390021324,0.00964621920138597,0.994680941104889,0.102549083530903,0.00966706778854132,0.994442284107208,0.102407194674015,0.0244435276836157,0.998638689517975,0.0466274470090866,0.0233822129666805,0.994442284107208,0.102407194674015,0.0244435276836157,0.99865984916687,0.046651404350996,0.0224103312939405,0.99445652961731,0.102413557469845,0.0238256566226482,0.99865984916687,0.046651404350996,0.0224103312939405,0.165562137961388,-0.985488891601563,-0.0374269858002663,0.110355228185654,-0.993197083473206,-0.0371655561029911,0.165562137961388,-0.985488891601563,-0.0374269858002663,0.110366724431515,-0.993300497531891,-0.034256711602211,0.165582150220871,-0.985608100891113,-0.0340501666069031,0.110366724431515,-0.993300497531891,-0.034256711602211,
  867. 0.110405199229717,-0.993646800518036,-0.0218375977128744,0.0708432793617249,-0.997247815132141,-0.0218658484518528,0.110405199229717,-0.993646800518036,-0.0218375977128744,0.0708631426095963,-0.997170746326447,-0.0250829793512821,0.11039811372757,-0.993583023548126,-0.0245973076671362,0.0708631426095963,-0.997170746326447,-0.0250829793512821,-0.994610548019409,-0.102494336664677,-0.0156488604843616,-0.987298607826233,-0.158093705773354,-0.0157427210360765,-0.987298607826233,-0.158093705773354,-0.0157427210360765,-0.987296760082245,-0.158094316720963,-0.0158544629812241,-0.994597196578979,-0.102485992014408,-0.0165275353938341,-0.994597196578979,-0.102485992014408,-0.0165275353938341,-0.994715809822083,-0.102599926292896,-0.00371377961710095,-0.998884677886963,-0.0471523329615593,-0.00248045660555363,-0.994715809822083,-0.102599926292896,-0.00371377961710095,-0.998881638050079,-0.0471322722733021,-0.00374538940377533,-0.994713127613068,-0.102593258023262,-0.00451909238472581,-0.998881638050079,-0.0471322722733021,-0.00374538940377533,-0.996250450611115,-0.00698713213205338,-0.0862343907356262,-0.998457431793213,-0.00694917887449265,-0.0550878047943115,-0.0314803943037987,-0.00192032475024462,-0.999502539634705,-0.999501466751099,-0.00217677955515683,0.0314975008368492,-0.998481631278992,-0.00199995609000325,-0.0550501681864262,-0.996269464492798,-0.00193226058036089,-0.0862758457660675,-0.998482346534729,0.00254805106669664,-0.05501439422369,-0.999502122402191,0.00241648103110492,0.0314613543450832,-0.998481631278992,0.00237741251476109,0.0550344213843346,-0.99844765663147,-0.00816335249692202,-0.0550968237221241,-0.998448252677917,-0.00852586608380079,0.0550325810909271,-0.986176311969757,-0.0087868133559823,0.165466740727425,-0.306862890720367,-0.0273927338421345,0.951359450817108,-0.993710279464722,-0.0976727604866028,0.0547714307904243,-0.994684755802155,-0.0978358909487724,0.0320990160107613,-0.0393951646983624,0.00719696842133999,0.999197781085968,-0.986158609390259,-0.0116437803953886,0.165395200252533,-0.998404562473297,-0.0126561671495438,0.055030170828104,
  868. -0.998483538627625,-0.00140477472450584,0.0550345256924629,-0.306819468736649,-0.00730977533385158,0.95173966884613,-0.0392804220318794,-0.00739107048138976,0.999200880527496,-0.0394408404827118,0.0133213410153985,0.999133110046387,-0.995488882064819,-0.00364314834587276,0.094808466732502,-0.21264736354351,0.012165604159236,0.977053284645081,-0.995492100715637,0.002598482882604,0.0948087647557259,-0.0393724255263805,0.00421990593895316,0.999215722084045,-0.999718070030212,0.00231347675435245,0.0236336048692465,-0.999718964099884,0.00192372384481132,0.0236305575817823,-0.996911942958832,0.00218197586946189,-0.0784970074892044,-0.99549400806427,0.00173146172892302,0.0948089510202408,-0.996914207935333,-0.000467648351332173,-0.0784971863031387,-0.999720335006714,-0.00150638096965849,0.0236035790294409,-0.996913969516754,-0.000467610894702375,-0.0785008370876312,-0.996913492679596,-0.00136204459704459,-0.078497126698494,-0.999225795269012,-0.000796071253716946,-0.0393333323299885,-0.995494842529297,0.00114512746222317,0.0948090329766274,-0.996914327144623,0.000158502254635096,-0.0784971937537193,-0.0314686223864555,-0.00149973691441119,-0.999503612518311,-0.999225795269012,0.000218239612877369,-0.0393413156270981,-0.0471905060112476,0.00635526655241847,-0.99886566400528,-0.996913731098175,-0.00109671533573419,-0.0784971490502357,-0.996913075447083,-0.0010966588743031,-0.0785057246685028,0,-0,-0,0,-0,-0,0,-0,-0,0.00246784812770784,-0.999996960163116,-2.22043929945651e-016,0.0024677375331521,-0.999996960163116,-1.94310050574131e-005,0.0024677375331521,-0.999996960163116,-1.94310050574131e-005,0.00239443453028798,-0.999997138977051,-1.88538160728058e-005,0.00239454139955342,-0.999997138977051,-2.22043969650321e-016,0.00239454139955342,-0.999997138977051,-2.22043969650321e-016,0.00224174465984106,-0.999997496604919,-2.2204404905966e-016,0.00224174465984106,-0.999997496604919,-2.2204404905966e-016,0.00224174465984106,-0.999997496604919,-2.2204404905966e-016,0.00240638828836381,-0.999997079372406,-2.22043956415431e-016,0.00240638828836381,-0.999997079372406,-2.22043956415431e-016,
  869. 0.00240638828836381,-0.999997079372406,-2.22043956415431e-016,-0.00179519283119589,0.999998390674591,2.82707533187931e-005,-0.00179556710645556,0.999998390674591,2.22044247583007e-016,-0.00179519283119589,0.999998390674591,2.82707533187931e-005,-0.00220485031604767,0.999997556209564,2.22044062294549e-016,-0.00220439815893769,0.999997556209564,3.47149325534701e-005,-0.00220485031604767,0.999997556209564,2.22044062294549e-016,-0.00358336279168725,0.999993562698364,2.22043175556933e-016,-0.00358158769086003,0.999993622303009,-8.46044349600561e-005,-0.00358336279168725,0.999993562698364,2.22043175556933e-016,-0.00217035133391619,0.999997615814209,-5.1268139941385e-005,-0.00217141397297382,0.999997615814209,2.22044075529439e-016,-0.00217035133391619,0.999997615814209,-5.1268139941385e-005,0.00400221720337868,2.22042831449798e-016,-0.9999920129776,0.00400221720337868,2.22042831449798e-016,-0.9999920129776,0.00400221720337868,2.22042831449798e-016,-0.9999920129776,0.00422379374504089,2.22042619691561e-016,-0.999991059303284,0.00422379374504089,2.22042619691561e-016,-0.999991059303284,0.00422379374504089,2.22042619691561e-016,-0.999991059303284,0.00387315871194005,2.22042937328916e-016,-0.999992489814758,0.00387315871194005,2.22042937328916e-016,-0.999992489814758,0.00387315871194005,2.22042937328916e-016,-0.999992489814758,0.00362736079841852,2.22043149087153e-016,-0.999993443489075,0.00362736079841852,2.22043149087153e-016,-0.999993443489075,0.00362736079841852,2.22043149087153e-016,-0.999993443489075,0.000281358283245936,-2.22044604925031e-016,1,0.000281358283245936,-2.22044604925031e-016,1,0.000281358283245936,-2.22044604925031e-016,1,0.000474138767458498,-2.22044578455252e-016,0.99999988079071,0.000474138767458498,-2.22044578455252e-016,0.99999988079071,0.000474138767458498,-2.22044578455252e-016,0.99999988079071,0.000727283593732864,-2.22044551985472e-016,0.999999761581421,0.000727283593732864,-2.22044551985472e-016,0.999999761581421,0.000727283593732864,-2.22044551985472e-016,0.999999761581421,0.000916132994461805,-2.22044512280803e-016,0.999999582767487,
  870. 0.000916132994461805,-2.22044512280803e-016,0.999999582767487,0.000916132994461805,-2.22044512280803e-016,0.999999582767487,-0.00143925496377051,0.999998986721039,-1.13327159851906e-005,-0.00143930653575808,0.999998986721039,2.22044379931905e-016,-0.00143925496377051,0.999998986721039,-1.13327159851906e-005,-0.00252128159627318,0.999996840953827,2.22043903475872e-016,-0.00252119777724147,0.999996840953827,-1.98519519472029e-005,-0.00252128159627318,0.999996840953827,2.22043903475872e-016,-0.00159832346253097,0.99999874830246,2.22044326992345e-016,-0.00159823952708393,0.99999874830246,1.25845635920996e-005,-0.00159832346253097,0.99999874830246,2.22044326992345e-016,-0.0028055829461664,0.999996066093445,2.20912043005228e-005,-0.0028057312592864,0.999996066093445,2.22043731422304e-016,-0.0028055829461664,0.999996066093445,2.20912043005228e-005,-0.00720629608258605,2.22038834513078e-016,-0.999974012374878,-0.00720629608258605,2.22038834513078e-016,-0.999974012374878,-0.00720629608258605,2.22038834513078e-016,-0.999974012374878,-0.00696710217744112,2.22039218324882e-016,-0.999975740909576,-0.00696710217744112,2.22039218324882e-016,-0.999975740909576,-0.00696710217744112,2.22039218324882e-016,-0.999975740909576,-0.000917486264370382,2.22044512280803e-016,-0.999999582767487,-0.000917486264370382,2.22044512280803e-016,-0.999999582767487,-0.000917486264370382,2.22044512280803e-016,-0.999999582767487,-0.00101743370760232,2.22044485811023e-016,-0.999999463558197,-0.00101743370760232,2.22044485811023e-016,-0.999999463558197,-0.00101743370760232,2.22044485811023e-016,-0.999999463558197,0.00914209615439177,0.00787344295531511,-0.999927222728729,0.00914209615439177,0.00787344295531511,-0.999927222728729,0.00914209615439177,0.00787344295531511,-0.999927222728729,0.00836981274187565,0.00787349604070187,-0.999933958053589,0.00836981274187565,0.00787349604070187,-0.999933958053589,0.00836981274187565,0.00787349604070187,-0.999933958053589,-0.00538517953827977,0.00787365809082985,-0.999954521656036,-0.00538348779082298,2.2204138884681e-016,-0.99998551607132,
  871. -0.00538517953827977,0.00787365809082985,-0.999954521656036,-0.0047586839646101,2.22042090295969e-016,-0.999988675117493,-0.00475344061851501,0.00787368230521679,-0.999957680702209,-0.0047586839646101,2.22042090295969e-016,-0.999988675117493,-0.00916555523872375,0.00787344109266996,0.99992698431015,-0.00916555523872375,0.00787344109266996,0.99992698431015,-0.00916555523872375,0.00787344109266996,0.99992698431015,-0.00921585597097874,0.00787343736737967,0.999926567077637,-0.00921585597097874,0.00787343736737967,0.999926567077637,-0.00921585597097874,0.00787343736737967,0.999926567077637,0.004754772875458,-2.22042090295969e-016,0.999988675117493,0.00475495494902134,0.00787368230521679,0.999957680702209,0.00475495494902134,0.00787368230521679,0.999957680702209,0.00469181360676885,0.00787368509918451,0.999957978725433,0.00469679338857532,-2.22042156470418e-016,0.999988973140717,0.00469679338857532,-2.22042156470418e-016,0.999988973140717,-0.00268022180534899,-0.999996423721313,2.11041096918052e-005,-0.00268034171313047,-0.999996423721313,-2.22043810831643e-016,-0.00268022180534899,-0.999996423721313,2.11041096918052e-005,-0.00239442638121545,-0.999997138977051,-2.22043969650321e-016,-0.00239431951195002,-0.999997138977051,1.88529102160828e-005,-0.00239442638121545,-0.999997138977051,-2.22043969650321e-016,-0.00224174419417977,-0.999997496604919,-2.2204404905966e-016,-0.00224174419417977,-0.999997496604919,-2.2204404905966e-016,-0.00224174419417977,-0.999997496604919,-2.2204404905966e-016,-0.00240648072212934,-0.999997079372406,-2.22043956415431e-016,-0.00240648072212934,-0.999997079372406,-2.22043956415431e-016,-0.00240648072212934,-0.999997079372406,-2.22043956415431e-016,0.00222129677422345,0.999997556209564,3.49810507032089e-005,0.00222136429511011,0.999997556209564,2.22044062294549e-016,0.00222136429511011,0.999997556209564,2.22044062294549e-016,0.00334023265168071,0.999994397163391,2.2204336084539e-016,0.00334012857638299,0.999994397163391,5.26004514540546e-005,0.00334012857638299,0.999994397163391,5.26004514540546e-005,
  872. 0.00158993666991591,0.99999874830246,2.50383727689041e-005,0.00158917612861842,0.99999874830246,5.00527930853423e-005,0.00158993666991591,0.99999874830246,2.50383727689041e-005,0.00216344557702541,0.999997675418854,6.81400197208859e-005,0.00216447073034942,0.999997675418854,3.40861552103888e-005,0.00216344557702541,0.999997675418854,6.81400197208859e-005,-0.0067038144916296,-0.99997752904892,-2.22039615371576e-016,-0.0067038144916296,-0.99997752904892,-2.22039615371576e-016,-0.0067038144916296,-0.99997752904892,-2.22039615371576e-016,-0.00659636640921235,-0.999978244304657,-2.22039774190254e-016,-0.00659636640921235,-0.999978244304657,-2.22039774190254e-016,-0.00659636640921235,-0.999978244304657,-2.22039774190254e-016,0.00530582992359996,-0.999985933303833,-2.22041481491038e-016,0.00530582992359996,-0.999985933303833,-2.22041481491038e-016,0.00530582992359996,-0.999985933303833,-2.22041481491038e-016,0.00596366310492158,-0.999982237815857,-2.22040660927871e-016,0.00596366310492158,-0.999982237815857,-2.22040660927871e-016,0.00596366310492158,-0.999982237815857,-2.22040660927871e-016,0.00673224311321974,0.999977350234985,2.22039575666907e-016,0.00673224311321974,0.999977350234985,2.22039575666907e-016,0.00673224311321974,0.999977350234985,2.22039575666907e-016,0.00634384667500854,0.999979853630066,2.22040131532279e-016,0.00634384667500854,0.999979853630066,2.22040131532279e-016,0.00634384667500854,0.999979853630066,2.22040131532279e-016,-0.00559437554329634,0.999984323978424,2.22041124149014e-016,-0.00559437554329634,0.999984323978424,2.22041124149014e-016,-0.00559437554329634,0.999984323978424,2.22041124149014e-016,-0.0040458757430315,0.999991834163666,2.22042791745129e-016,-0.0040458757430315,0.999991834163666,2.22042791745129e-016,-0.0040458757430315,0.999991834163666,2.22042791745129e-016,-0.000294222234515473,-2.22044604925031e-016,1,-0.000294222234515473,-2.22044604925031e-016,1,-0.000294222234515473,-2.22044604925031e-016,1,9.94936272036284e-005,-2.22044604925031e-016,1,9.94936272036284e-005,-2.22044604925031e-016,1,
  873. 9.94936272036284e-005,-2.22044604925031e-016,1,-0.00837623327970505,-2.22036809574939e-016,0.999964892864227,-0.00837623327970505,-2.22036809574939e-016,0.999964892864227,-0.00837623327970505,-2.22036809574939e-016,0.999964892864227,-0.00860443711280823,-2.22036386058465e-016,0.999962985515594,-0.00860443711280823,-2.22036386058465e-016,0.999962985515594,-0.00860443711280823,-2.22036386058465e-016,0.999962985515594,0.00969377346336842,2.22034175831868e-016,-0.999953031539917,0.00969377346336842,2.22034175831868e-016,-0.999953031539917,0.00969377346336842,2.22034175831868e-016,-0.999953031539917,0.00917144864797592,2.22035261092832e-016,-0.999957919120789,0.00917144864797592,2.22035261092832e-016,-0.999957919120789,0.00917144864797592,2.22035261092832e-016,-0.999957919120789,0.00852688867598772,2.22036531642253e-016,-0.999963641166687,0.00852688867598772,2.22036531642253e-016,-0.999963641166687,0.00852688867598772,2.22036531642253e-016,-0.999963641166687,0.00878977309912443,2.2203602871644e-016,-0.999961376190186,0.00878977309912443,2.2203602871644e-016,-0.999961376190186,0.00878977309912443,2.2203602871644e-016,-0.999961376190186,-0.00780868995934725,0.0078735314309597,0.999938488006592,-0.00780868995934725,0.0078735314309597,0.999938488006592,-0.00780868995934725,0.0078735314309597,0.999938488006592,-0.00645471084862947,0.00787360779941082,0.999948143959045,-0.00645471084862947,0.00787360779941082,0.999948143959045,-0.00645471084862947,0.00787360779941082,0.999948143959045,0.00494279200211167,0.00787367578595877,0.999956786632538,0.00494109932333231,-2.22041891772622e-016,0.999987781047821,0.00494279200211167,0.00787367578595877,0.999956786632538,0.00362867908552289,-2.22043149087153e-016,0.999993443489075,0.00362339057028294,0.00787372048944235,0.999962449073792,0.00362867908552289,-2.22043149087153e-016,0.999993443489075,0.00774465873837471,0.00787353608757257,-0.999939024448395,0.00774465873837471,0.00787353608757257,-0.999939024448395,0.00774465873837471,0.00787353608757257,-0.999939024448395,0.00820678845047951,0.00787350628525019,-0.999935328960419,
  874. 0.00820678845047951,0.00787350628525019,-0.999935328960419,0.00820678845047951,0.00787350628525019,-0.999935328960419,-0.0040690079331398,0.00787370651960373,-0.999960720539093,-0.00406884588301182,2.22042765275349e-016,-0.999991714954376,-0.0040690079331398,0.00787370651960373,-0.999960720539093,-0.00447746785357594,2.22042381463545e-016,-0.999989986419678,-0.00447226408869028,0.00787369254976511,-0.999958992004395,-0.00447746785357594,2.22042381463545e-016,-0.999989986419678,-0.0950321033596992,-0.994812250137329,0.0362982079386711,-0.0395941473543644,-0.998583674430847,0.0355385728180408,-0.0950321033596992,-0.994812250137329,0.0362982079386711,-0.0395943038165569,-0.998582780361176,0.0355630852282047,-0.0950232595205307,-0.994882702827454,0.0343378446996212,-0.0395943038165569,-0.998582780361176,0.0355630852282047,-0.00011004030238837,-0.999902427196503,0.0139751182869077,-0.039443101733923,-0.999128878116608,0.0136300083249807,-0.039443101733923,-0.999128878116608,0.0136300083249807,-0.00011393223394407,-0.999895334243774,0.0144693935289979,-0.0394467189908028,-0.999121844768524,0.0141239054501057,-0.00011393223394407,-0.999895334243774,0.0144693935289979,0.03929403424263,0.998068511486053,-0.0481173358857632,0.0235875938087702,0.998541474342346,-0.0485657714307308,0.0235875938087702,0.998541474342346,-0.0485657714307308,0.0471531376242638,0.99807471036911,-0.0402916222810745,0.0235967021435499,0.998927056789398,-0.0398485139012337,0.0393078848719597,0.998420298099518,-0.0401464812457561,0.0393325053155422,0.999045610427856,0.0189952496439219,0.0550245009362698,0.998301684856415,0.0191387664526701,0.0471828803420067,0.998704254627228,0.0190676227211952,0.0550345331430435,0.998483717441559,0.00119385553989559,0.0393395684659481,0.99922502040863,0.00134065106976777,0.0550345331430435,0.998483717441559,0.00119385553989559,-0.997799277305603,0.0388603918254375,-0.0537263415753841,-0.998305439949036,0.0223124381154776,-0.0537455677986145,-0.998305439949036,0.0223124381154776,-0.0537455677986145,-0.997992873191834,0.04681346565485,-0.0426468886435032,
  875. -0.998879730701447,0.0226136278361082,-0.0415694564580917,-0.998344600200653,0.0389718301594257,-0.0423003733158112,-0.999213874340057,0.0392978899180889,-0.0052370554767549,-0.998471200466156,0.0550338476896286,-0.00516932271420956,-0.998874306678772,0.0471499413251877,-0.00520342541858554,-0.99826592206955,0.0550225302577019,-0.0209208261221647,-0.999016940593719,0.0391678735613823,-0.0207645706832409,-0.99826592206955,0.0550225302577019,-0.0209208261221647,0.998802900314331,-0.0395496152341366,-0.0287869889289141,0.999269843101501,-0.0243012607097626,-0.029483575373888,0.999269843101501,-0.0243012607097626,-0.029483575373888,0.99958860874176,-0.0239838697016239,-0.0157285928726196,0.999098122119904,-0.039458055049181,-0.0156824663281441,0.999098122119904,-0.039458055049181,-0.0156824663281441,0.9989994764328,-0.03916060552001,0.0215999912470579,0.998240947723389,-0.0551916696131229,0.0216554421931505,0.9989994764328,-0.03916060552001,0.0215999912470579,0.998477041721344,-0.0550613552331924,0.00345264538191259,0.999220430850983,-0.039310596883297,0.003655910724774,0.998477041721344,-0.0550613552331924,0.00345264538191259,-0.0475356690585613,-0.997519850730896,0.0519105568528175,-0.0239904280751944,-0.998376846313477,0.0516539588570595,-0.0475356690585613,-0.997519850730896,0.0519105568528175,-0.0239288043230772,-0.99880850315094,0.0425328053534031,-0.0474805533885956,-0.997983276844025,0.0421309880912304,-0.0239288043230772,-0.99880850315094,0.0425328053534031,-1.63421827892307e-005,-0.999997854232788,0.00207545724697411,-0.0236304961144924,-0.999718964099884,0.00191612797789276,-0.0236304961144924,-0.999718964099884,0.00191612797789276,-0.00014006337733008,-0.999841868877411,0.0177880488336086,-0.0237504914402962,-0.999562621116638,0.0176243558526039,-0.00014006337733008,-0.999841868877411,0.0177880488336086,0.0950321033596992,-0.994812250137329,-0.036298181861639,0.0395941473543644,-0.998583674430847,-0.0355385467410088,0.0950321033596992,-0.994812250137329,-0.036298181861639,0.0395943038165569,-0.998582780361176,-0.035563088953495,
  876. 0.0950232595205307,-0.994882702827454,-0.0343378484249115,0.0395943038165569,-0.998582780361176,-0.035563088953495,0.039443101733923,-0.999128878116608,-0.0136300083249807,0.000110040309664328,-0.999902427196503,-0.0139751192182302,0.039443101733923,-0.999128878116608,-0.0136300083249807,0.0394467189908028,-0.999121844768524,-0.0141239129006863,0.000113932284875773,-0.999895334243774,-0.0144694000482559,0.000113932284875773,-0.999895334243774,-0.0144694000482559,-0.0235875677317381,0.998540341854095,0.0485880970954895,-0.0392939932644367,0.998067438602448,0.0481396317481995,-0.0235875677317381,0.998540341854095,0.0485880970954895,-0.0235977806150913,0.998972713947296,0.0386867932975292,-0.039309699088335,0.998466372489929,0.0389833226799965,-0.0471553280949593,0.998121023178101,0.0391278527677059,-0.0393330492079258,0.999059438705444,-0.0182542148977518,-0.0550252608954906,0.998315453529358,-0.0183969773352146,-0.0471835322678089,0.998718082904816,-0.0183261875063181,-0.0550344809889793,0.998482763767242,-0.00183049181941897,-0.0393395237624645,0.999223947525024,-0.00197775987908244,-0.0550344809889793,0.998482763767242,-0.00183049181941897,0.998156428337097,0.0222445353865623,0.0564711168408394,0.99765008687973,0.0388330966234207,0.0564473457634449,0.998156428337097,0.0222445353865623,0.0564711168408394,0.998879730701447,0.0226136278361082,0.0415694564580917,0.998344600200653,0.0389718301594257,0.0423003733158112,0.997992873191834,0.04681346565485,0.0426468849182129,0.999213874340057,0.0392978899180889,0.00523705501109362,0.998471200466156,0.0550338476896286,0.00516932224854827,0.998874306678772,0.0471499413251877,0.00520342495292425,0.99826592206955,0.0550225302577019,0.020920816808939,0.999016940593719,0.0391678735613823,0.0207645613700151,0.99826592206955,0.0550225302577019,0.020920816808939,-0.998802900314331,-0.0395496152341366,0.0287869889289141,-0.999269843101501,-0.0243012607097626,0.029483575373888,-0.999269843101501,-0.0243012607097626,0.029483575373888,-0.99958860874176,-0.0239838697016239,0.0157285816967487,
  877. -0.999098122119904,-0.039458055049181,0.0156824570149183,-0.999098122119904,-0.039458055049181,0.0156824570149183,-0.9989994764328,-0.03916060552001,-0.0215999912470579,-0.998240947723389,-0.0551916696131229,-0.0216554421931505,-0.9989994764328,-0.03916060552001,-0.0215999912470579,-0.998477041721344,-0.0550613552331924,-0.00345264398492873,-0.999220430850983,-0.039310596883297,-0.00365590932779014,-0.998477041721344,-0.0550613552331924,-0.00345264398492873,0.0475324057042599,-0.997551083564758,-0.0513090938329697,0.0239864327013493,-0.99840784072876,-0.051053412258625,0.0475324057042599,-0.997551083564758,-0.0513090938329697,0.0239289104938507,-0.998807787895203,-0.0425483845174313,0.047480646520853,-0.997982621192932,-0.0421465486288071,0.0239289104938507,-0.998807787895203,-0.0425483845174313,0.0236277133226395,-0.999719679355621,-0.00156028533820063,1.35394893732155e-005,-0.999998509883881,-0.00171951507218182,0.0236277133226395,-0.999719679355621,-0.00156028533820063,0.0237504914402962,-0.999562621116638,-0.0176243484020233,0.000140063319122419,-0.999841868877411,-0.017788041383028,0.000140063319122419,-0.999841868877411,-0.017788041383028,-0.999640762805939,0.000632955227047205,0.0267951022833586,-0.999640762805939,0.000632955227047205,0.0267951022833586,-0.999640762805939,0.000632955227047205,0.0267951022833586,-0.999791264533997,0.000482516159536317,0.0204265173524618,-0.999791264533997,0.000482516159536317,0.0204265173524618,-0.999791264533997,0.000482516159536317,0.0204265173524618,-0.999919772148132,0.000299209234071895,0.0126665225252509,-0.999919831752777,0.000199489644728601,0.0126675916835666,-0.999919772148132,0.000299209234071895,0.0126665225252509,-0.999903738498688,0.000218588626012206,0.0138803776353598,-0.999903678894043,0.000327853456838056,0.0138791287317872,-0.999903738498688,0.000218588626012206,0.0138803776353598,-0.0157163664698601,0.997989296913147,0.0614033453166485,-0.0166829228401184,0.997974455356598,0.0613911189138889,-0.0166829228401184,0.997974455356598,0.0613911189138889,-0.0157159995287657,0.997965931892395,0.0617819428443909,
  878. -0.0166884902864695,0.997951090335846,0.0617681071162224,-0.0157159995287657,0.997965931892395,0.0617819428443909,-0.0157351642847061,0.999182939529419,0.0372288376092911,-0.0233053993433714,0.999032020568848,0.0373102873563766,-0.0157351642847061,0.999182939529419,0.0372288376092911,-0.0233022160828114,0.999018371105194,0.0376735962927341,-0.0157349538058043,0.999169528484344,0.0375848934054375,-0.0233022160828114,0.999018371105194,0.0376735962927341,0.0323058292269707,-0.997932970523834,-0.05555409938097,0.0314318127930164,-0.997960031032562,-0.055568415671587,0.0323058292269707,-0.997932970523834,-0.05555409938097,0.0314309075474739,-0.997931241989136,-0.0560832098126411,0.0323130264878273,-0.997903883457184,-0.0560693740844727,0.0314309075474739,-0.997931241989136,-0.0560832098126411,0.0233063325285912,-0.999035894870758,-0.0372034348547459,0.0314585566520691,-0.998809218406677,-0.0372905917465687,0.0314585566520691,-0.998809218406677,-0.0372905917465687,0.0314577184617519,-0.998782515525818,-0.0379987806081772,0.0233000870794058,-0.999009311199188,-0.0379167720675468,0.0233000870794058,-0.999009311199188,-0.0379167720675468,-0.0236150529235601,0.999703884124756,0.00588960200548172,-0.0393389537930489,0.999209403991699,0.00574671849608421,-0.0236150529235601,0.999703884124756,0.00588960200548172,-0.0236150175333023,0.999702453613281,0.00612376630306244,-0.0393388420343399,0.99920654296875,0.00622016983106732,-0.0393388420343399,0.99920654296875,0.00622016983106732,-0.0393385998904705,0.999200403690338,0.00714199338108301,-0.0550332069396973,0.99845963716507,0.00705064600333571,-0.0393385998904705,0.999200403690338,0.00714199338108301,-0.0550334639847279,0.998464345932007,0.00634546997025609,-0.0393388383090496,0.999206483364105,0.00623357761651278,-0.0550334639847279,0.998464345932007,0.00634546997025609,-0.0157404765486717,0.999520301818848,0.0266721230000257,-0.0393254160881042,0.99886554479599,0.0268548466265202,-0.0157404765486717,0.999520301818848,0.0266721230000257,-0.039337832480669,0.999181032180786,0.00948358420282602,
  879. -0.0157453306019306,0.999828457832336,0.00976337213069201,-0.039337832480669,0.999181032180786,0.00948358420282602,-0.0393388085067272,0.999205768108368,-0.00634939363226295,-0.0471905134618282,0.998865842819214,-0.00633119931444526,-0.0393388085067272,0.999205768108368,-0.00634939363226295,-0.0393396019935608,0.999225914478302,0.00015142404299695,-0.047191459685564,0.998885869979858,0.000111487424874213,-0.047191459685564,0.998885869979858,0.000111487424874213,0.999498784542084,0.0242510754615068,0.0203476138412952,0.999038577079773,0.0391772985458374,0.0196756068617105,0.999498784542084,0.0242510754615068,0.0203476138412952,0.999019622802734,0.0247548632323742,0.0367022044956684,0.998574256896973,0.0390271656215191,0.0364212617278099,0.998574256896973,0.0390271656215191,0.0364212617278099,0.998978316783905,0.0391521155834198,0.022572997957468,0.998260080814362,0.0542980842292309,0.0229909643530846,0.998978316783905,0.0391521155834198,0.022572997957468,0.998376667499542,0.0545083396136761,0.016519270837307,0.99910295009613,0.0392087697982788,0.0160008426755667,0.998376667499542,0.0545083396136761,0.016519270837307,0.01573471352458,-0.999154329299927,-0.0379884615540504,0.0393110178411007,-0.998499870300293,-0.0381129719316959,0.01573471352458,-0.999154329299927,-0.0379884615540504,0.0393243692815304,-0.998839020729065,-0.0278243385255337,0.0393243692815304,-0.998839020729065,-0.0278243385255337,0.0157398916780949,-0.999483168125153,-0.0280302949249744,0.0393383391201496,-0.999193787574768,-0.00801303330808878,0.0472528301179409,-0.99885094165802,-0.00800381787121296,0.0393383391201496,-0.999193787574768,-0.00801303330808878,0.0473015457391739,-0.998773157596588,-0.0146572543308139,0.0393353328108788,-0.999117493629456,-0.0147297140210867,0.0473015457391739,-0.998773157596588,-0.0146572543308139,-0.999033510684967,-0.0393320247530937,0.0196258462965488,-0.999549150466919,-0.0230036340653896,0.019296495243907,-0.999549150466919,-0.0230036340653896,0.019296495243907,-0.99954229593277,-0.0229919087141752,0.0196636039763689,
  880. -0.999018251895905,-0.0393314249813557,0.0203883554786444,-0.999018251895905,-0.0393314249813557,0.0203883554786444,-0.998282074928284,-0.0393024422228336,-0.0434539206326008,-0.997577011585236,-0.0539468266069889,-0.0439306199550629,-0.998282074928284,-0.0393024422228336,-0.0434539206326008,-0.997512221336365,-0.0539079830050468,-0.0454238727688789,-0.998207569122314,-0.0392995104193687,-0.0451357364654541,-0.997512221336365,-0.0539079830050468,-0.0454238727688789,-0.0157460160553455,0.999871969223022,0.0028505742084235,-0.0314803384244442,0.999500751495361,0.00270639965310693,-0.0157460160553455,0.999871969223022,0.0028505742084235,-0.0157459378242493,0.999867081642151,0.00422526523470879,-0.0314801596105099,0.999495029449463,0.00432567344978452,-0.0314801596105099,0.999495029449463,0.00432567344978452,-0.0314789153635502,0.999455511569977,0.00988949555903673,-0.0471891909837723,0.998837888240814,0.00980210490524769,-0.0314789153635502,0.999455511569977,0.00988949555903673,-0.04718903824687,0.998834609985352,0.0101327300071716,-0.0314788743853569,0.999454200267792,0.0100274933502078,-0.04718903824687,0.998834609985352,0.0101327300071716,-0.165676519274712,0.986169755458832,-0.00453192321583629,-0.110430479049683,0.993874371051788,-0.00434124702587724,-0.165676519274712,0.986169755458832,-0.00453192321583629,-0.110430166125298,0.993871510028839,-0.00498040718957782,-0.165676265954971,0.986168265342712,-0.00485617853701115,-0.110430166125298,0.993871510028839,-0.00498040718957782,-0.110425397753716,0.993828654289246,0.0105281407013536,-0.0706850588321686,0.997444748878479,0.0103709744289517,-0.110425397753716,0.993828654289246,0.0105281407013536,-0.110426560044289,0.993839085102081,0.00948207825422287,-0.0706854984164238,0.997450947761536,0.00975627079606056,-0.0706854984164238,0.997450947761536,0.00975627079606056,-0.0784718096256256,0.00319203827530146,-0.996911287307739,-0.0628672093153,0.00316395680420101,-0.998016893863678,-0.961222410202026,0.00277628866024315,-0.275760531425476,0.0393395014107227,0.00226411828771234,-0.999223351478577,
  881. -0.0628673732280731,0.00218223431147635,-0.998019516468048,-0.0784800425171852,0.00216766400262713,-0.996913373470306,0.0393392965197563,-0.00393751822412014,-0.999218165874481,-0.0785270184278488,-0.00388686172664166,-0.996904373168945,0.0471601486206055,-0.0039389468729496,-0.998879611492157,-0.0628618746995926,0.013408774510026,-0.997932195663452,0.0393365100026131,0.0125338025391102,-0.999147415161133,0.157891809940338,0.0113491145893931,-0.987391293048859,0.0393395982682705,0.000489112397190183,-0.999225795269012,0.0471950992941856,0.000463799457065761,-0.998885631561279,0.999221920967102,-0.00316900690086186,-0.0393144935369492,0.157885164022446,0.0120360292494297,-0.987384140491486,0.0393351949751377,0.0149736870080233,-0.999113976955414,0.998964726924896,-0.0225544106215239,-0.0395069122314453,0.0393299907445908,-0.0221057906746864,-0.998981833457947,0.999117136001587,0.0144520150497556,-0.0394491143524647,0.999117136001587,0.0144520150497556,-0.0394491143524647,0.0393387600779533,0.00654063187539577,-0.999204516410828,0.999225199222565,-0.00154563644900918,-0.0393274053931236,0.999224245548248,-0.00154547393321991,-0.0393517054617405,0.996898591518402,0.0062749907374382,-0.0784465372562408,0.997999012470245,0.00629574619233608,-0.0629156455397606,0.275754630565643,0.000903837732039392,-0.961227715015411,0.99921715259552,0.00450870022177696,0.039303757250309,0.998010694980621,0.0042738295160234,-0.0629004687070847,0.996908009052277,0.00423399964347482,-0.0784633532166481,0.999214887619019,-0.00440384168177843,0.0393738448619843,0.996902346611023,-0.00432705320417881,-0.0785303190350533,0.998877823352814,-0.00440676370635629,0.0471563786268234,0.997706890106201,0.0246355477720499,-0.063041664659977,0.998916506767273,0.0251944158226252,0.0391290374100208,0.985925316810608,0.0255217924714088,0.165227115154266,0.999225914478302,0.000423347053583711,0.0393362678587437,0.998885691165924,0.000397732830606401,0.0471945777535439,0.039314154535532,-0.00321146450005472,0.999221801757813,0.275770723819733,-0.00123769382480532,0.961222648620605,
  882. 0.985915422439575,0.0259574931114912,0.165218472480774,0.998856782913208,0.0274896211922169,0.0391086116433144,0.999141395092011,-0.0127051714807749,0.0394363142549992,0.0394168943166733,0.0100860977545381,0.999171912670136,0.275705754756927,0.00657967384904623,0.961219549179077,0.0706256106495857,-0.00779926730319858,0.997472405433655,0.999221980571747,0.00316582247614861,0.0393145196139812,0.999220013618469,0.00316541409119964,0.039364293217659,0.999221980571747,0.00316582247614861,0.0393145196139812,0.0706256106495857,-0.00779926730319858,0.997472405433655,0.0394629277288914,-0.0079217404127121,0.999189674854279,0.0389822721481323,0.0221138559281826,0.998995244503021,0.999117136001587,-0.0144519219174981,0.0394491143524647,0.999117136001587,-0.0144519219174981,0.0394491143524647,-0.0628720447421074,-0.000578156439587474,0.998021423816681,0.0393501669168472,-0.000672363152261823,0.999225258827209,0.0706833675503731,-0.000699904805514961,0.997498631477356,0.0394226536154747,-0.00531716318801045,0.999208509922028,-0.0629045963287354,-0.00482132472097874,0.998007893562317,-0.0550339333713055,-0.00486137438565493,0.99847275018692,-0.0786280259490013,0.00562580628320575,0.996888160705566,0.0392281711101532,0.00702509470283985,0.999205589294434,-0.0550336204469204,0.00591326458379626,0.998467087745667,-0.055033914744854,-0.00491611612960696,0.998472452163696,-0.0629053488373756,-0.00492124957963824,0.998007357120514,-0.984861195087433,-0.00177027296740562,0.173335582017899,-0.984857738018036,0.0031891034450382,0.17333497107029,-0.078663095831871,0.00715217972174287,0.996875584125519,-0.0550331808626652,0.00711595453321934,0.998459160327911,0.0862893536686897,0.00638220878317952,-0.996249735355377,0.998757362365723,-0.0160392485558987,-0.0471853911876678,0.998757362365723,-0.0160392485558987,-0.0471853911876678,-0.998877108097076,0.0041904509998858,0.0471910461783409,-0.0862909331917763,-0.00201366585679352,0.996267914772034,-0.0785130560398102,-0.00204871501773596,0.996910989284515,-0.0862910598516464,-0.00100621243473142,0.996269464492798,
  883. 0.0235988758504391,-0.00210102181881666,0.999719381332397,-0.078505627810955,-0.00108452269341797,0.996913075447083,-0.998475551605225,-0.00424087326973677,0.0550340861082077,-0.0235942956060171,0.00267893704585731,0.999718129634857,-0.0862908586859703,0.00239341775886714,0.996267080307007,0.0236624777317047,0.00602885289117694,0.999701857566834,-0.08628910779953,0.00681096268817782,0.996246933937073,0.0314798913896084,0.00597038585692644,0.999486565589905,-0.0862909331917763,0.0020107461605221,0.996267914772034,-0.0235946532338858,0.00263384939171374,0.999718189239502,0.0314802974462509,0.00317189656198025,0.999499380588531,0.031479936093092,0.00573659129440784,0.999487936496735,0.999183714389801,-0.0095070106908679,0.0392630808055401,0.0236608181148767,0.00581414764747024,0.999703228473663,0.0947666168212891,-0.00523651903495193,0.995485782623291,0.0314799956977367,-0.00539305666461587,0.999489843845367,-0.0236584767699242,-0.00551155861467123,0.999704957008362,0.97148585319519,-0.00541232107207179,0.237035766243935,0.99920392036438,-0.00695129297673702,0.0392840020358562,0.0314797833561897,0.00653904397040606,0.999483108520508,0.999471306800842,0.00789225567132235,0.0315415523946285,0.0314787626266479,-0.010370559990406,0.999450623989105,0.0947273969650269,-0.00980739574879408,0.995454907417297,0.0314804203808308,-0.00141266116406769,0.999503374099731,0.999501883983612,0.00202096765860915,0.0314962901175022,0.971525251865387,0.00165935861878097,0.236930385231972,-0.996912002563477,0.00216438597999513,0.078497014939785,-0.993879497051239,0.00294143310748041,0.110431052744389,-0.0469863004982471,0.024334691464901,0.998599112033844,0.996914207935333,0.000502000038977712,-0.0784971863031387,0.0314804390072823,0.000983865116722882,-0.999503910541534,0.99848461151123,0.00047988721053116,-0.0550308041274548,0.999491572380066,-0.00506776571273804,0.0314800515770912,0.993861079216003,-0.00676566315814853,-0.110429011285305,0.99689394235611,-0.00639322074130178,-0.078495591878891,0.998483896255493,-0.000672616006340832,-0.0550398342311382,
  884. 0.999502956867218,-0.00169359834399074,0.0314804092049599,0.996914267539978,-0.000394096219679341,-0.0784971863031387,0.993785262107849,-0.0140760876238346,-0.11042058467865,0.999420762062073,-0.012937668710947,0.0314778201282024,0.999420762062073,-0.012937668710947,0.0314778201282024,0.99202173948288,0.00491556385532022,0.125971019268036,0.999488830566406,0.00557855609804392,0.0314799658954144,0.998468399047852,0.00613978086039424,-0.0549853481352329,0.999423027038574,-0.0127597311511636,0.0314778909087181,0.0393363162875175,0.0129219871014357,0.999142467975616,0.999423027038574,-0.0127597311511636,0.0314778909087181,0.999493837356567,0.00459331413730979,0.0314801223576069,0.992026686668396,0.00377195980399847,0.125971645116806,0.220147460699081,-0.00703513622283936,0.975441217422485,0.0393381975591183,0.00846150796860456,0.999190211296082,0.999394059181213,-0.0148570155724883,0.031476978212595,0.220341995358467,0.00550343096256256,0.975407183170319,-0.102649167180061,0.00250815972685814,-0.994714438915253,0.0313793383538723,0.00638617388904095,-0.999487161636353,-0.141431853175163,0.0013674299698323,-0.989947080612183,-0.999428331851959,-0.0123393563553691,-0.0314780585467815,-0.0471923798322678,-0.000117085524834692,-0.998885869979858,-0.102623455226421,-0.000804220035206527,-0.994719982147217,0.0315850377082825,-0.0066926134750247,-0.999478697776794,-0.102558933198452,-0.00854781828820705,-0.994690299034119,0.031479749828577,-0.00669411988928914,-0.999481976032257,-0.0472095124423504,-0.00231410702690482,-0.998882353305817,0.03148028627038,-0.00325168389827013,-0.999499082565308,-0.102616764605045,-0.0016432044794783,-0.994719624519348,0.0315839871764183,-0.00662487652152777,-0.999479174613953,0.0314797647297382,-0.0066265189088881,-0.999482452869415,0.999114632606506,0.0152379926294088,-0.0392152331769466,0.0314800702035427,0.00492578186094761,-0.999492228031158,-0.0471484288573265,0.0053896177560091,-0.998873353004456,0.0706880912184715,0.00468265730887651,-0.997487545013428,0.965721428394318,0.0121939070522785,-0.259294271469116,
  885. 0.999124765396118,0.0145401982590556,-0.0392211303114891,0.0314794667065144,-0.0079295365139842,-0.999472975730896,0.928995311260223,-0.00462308153510094,-0.370062738656998,0.0314801521599293,0.00436340970918536,-0.999494850635529,0.0706882700324059,0.00408758223056793,-0.997490048408508,0.031479936093092,0.00572405895218253,-0.999487996101379,0.929005563259125,-0.00303522753529251,-0.370053350925446,0.965851366519928,-0.00389751791954041,-0.259067475795746
  886. }
  887. BinormalsW: *2178 {
  888. 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,
  889. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  890. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  891. }
  892. }
  893. LayerElementBinormal: 1 {
  894. Version: 102
  895. Name: "LightMapUV"
  896. MappingInformationType: "ByPolygonVertex"
  897. ReferenceInformationType: "Direct"
  898. Binormals: *6534 {
  899. a: 0.377176851034164,0.926141262054443,-0.000296398997306824,-0.351193130016327,0.936294794082642,-0.00395299540832639,0.405389428138733,0.914144158363342,-0.000127479434013367,0.353836059570313,0.933619022369385,-0.0561752915382385,-0.65706467628479,0.752827763557434,-0.0389423221349716,-0.327915728092194,0.943267405033112,-0.0521338507533073,0.354322254657745,0.0286246985197067,0.934685230255127,0.28051421046257,0.0222830250859261,0.959591209888458,-0.095323733985424,-0.00985236465930939,0.995397627353668,0.278356164693832,0.0040416345000267,0.960469484329224,-0.203759357333183,-0.0154464207589626,0.97889918088913,-0.0949715003371239,-0.0112025132402778,0.99541699886322,0.38295391201973,0.00178444385528564,0.92376571893692,-0.395414084196091,0.00154311186634004,0.918501675128937,-0.427188217639923,0.00150771415792406,0.90416145324707,-0.420426040887833,-0.0162030048668385,0.907182097434998,0.695914387702942,-0.00646852049976587,0.718095719814301,0.376453995704651,-0.0115660727024078,0.926363110542297,0.514927387237549,-0.00889125466346741,-0.857187747955322,-0.493195116519928,0.00304235517978668,-0.869913399219513,0.563305139541626,-0.00936557352542877,-0.826195895671844,-0.477249324321747,0.045331597328186,-0.87759792804718,-0.745162844657898,0.0333225764334202,-0.666049599647522,0.545767545700073,0.0460441969335079,-0.836670577526093,0.00704789767041802,5.5495256674476e-005,0.999975144863129,0.00704789767041802,5.5495256674476e-005,0.999975144863129,0.00704789767041802,5.5495256674476e-005,0.999975144863129,0.00591812143102288,4.65993834950496e-005,0.999982476234436,0.00591812143102288,4.65993834950496e-005,0.999982476234436,0.00591812143102288,4.65993834950496e-005,0.999982476234436,0.232700169086456,0.00174593506380916,0.972546935081482,0.351202130317688,0.000245116651058197,0.936299681663513,-0.257912427186966,0.00725594907999039,0.966141104698181,0.232893466949463,0.000831257435493171,0.972501933574677,-0.259056091308594,0.00257457070983946,0.965858936309814,-0.272225260734558,0.00261534750461578,0.962230026721954,
  900. -0.573883175849915,0.0143003612756729,-0.818812310695648,0.310162305831909,-0.0613773390650749,-0.948700308799744,-0.534519135951996,0.0101401517167687,-0.845095634460449,0.275139600038528,-0.136963739991188,-0.951598227024078,-0.547751903533936,-0.108263127505779,-0.829606473445892,0.795496344566345,-0.0949442684650421,-0.598473966121674,0.427329242229462,0.00188142061233521,-0.904094219207764,-0.383102893829346,0.00209251046180725,-0.92370331287384,0.395282775163651,0.00191959692165256,-0.918557465076447,0.404906421899796,-0.0553852990269661,-0.912679195404053,-0.708909869194031,-0.0356620699167252,-0.704396963119507,-0.356612116098404,-0.0512656643986702,-0.932844877243042,0.480640470981598,0.0365647226572037,0.876155138015747,-0.553804337978363,0.0214149802923203,0.832371413707733,-0.526577353477478,0.0223763883113861,0.849832713603973,0.503262341022491,-0.0251898765563965,0.863766491413116,0.720288634300232,-0.0214999597519636,0.693341255187988,-0.566386818885803,-0.0197924077510834,0.823901891708374,-0.0121541321277618,9.57018346525729e-005,-0.999926149845123,-0.0121541321277618,9.57018346525729e-005,-0.999926149845123,-0.0121541321277618,9.57018346525729e-005,-0.999926149845123,-0.0115482769906521,9.09313093870878e-005,-0.999933302402496,-0.0115482769906521,9.09313093870878e-005,-0.999933302402496,-0.0115482769906521,9.09313093870878e-005,-0.999933302402496,-0.19100795686245,2.17956426874888e-016,-0.98158848285675,-0.19100795686245,2.17956426874888e-016,-0.98158848285675,-0.19100795686245,2.17956426874888e-016,-0.98158848285675,0.194340586662292,2.17811134254654e-016,-0.980934143066406,0.194340586662292,2.17811134254654e-016,-0.980934143066406,0.194340586662292,2.17811134254654e-016,-0.980934143066406,-0.33901846408844,2.08895066928509e-016,-0.940779745578766,-0.33901846408844,2.08895066928509e-016,-0.940779745578766,-0.33901846408844,2.08895066928509e-016,-0.940779745578766,-0.0087220836430788,2.22036161065338e-016,-0.999961972236633,-0.0087220836430788,2.22036161065338e-016,-0.999961972236633,-0.0087220836430788,2.22036161065338e-016,-0.999961972236633,
  901. -0.973779439926147,5.05138652919718e-017,-0.227494224905968,-0.973779439926147,5.05138652919718e-017,-0.227494224905968,-0.973779439926147,5.05138652919718e-017,-0.227494224905968,-0.980390071868896,-4.3757632719651e-017,0.197066858410835,-0.980390071868896,-4.3757632719651e-017,0.197066858410835,-0.980390071868896,-4.3757632719651e-017,0.197066858410835,-0.947664022445679,-7.08920188563097e-017,0.319269269704819,-0.947664022445679,-7.08920188563097e-017,0.319269269704819,-0.947664022445679,-7.08920188563097e-017,0.319269269704819,-0.999998986721039,3.12873079235393e-019,-0.00140905508305877,-0.999998986721039,3.12873079235393e-019,-0.00140905508305877,-0.999998986721039,3.12873079235393e-019,-0.00140905508305877,0.221550866961479,2.16526529380804e-016,-0.975148797035217,0.221550866961479,2.16526529380804e-016,-0.975148797035217,0.221550866961479,2.16526529380804e-016,-0.975148797035217,-0.197009056806564,2.17692906984063e-016,-0.980401694774628,-0.197009056806564,2.17692906984063e-016,-0.980401694774628,-0.197009056806564,2.17692906984063e-016,-0.980401694774628,-0.347545832395554,2.08203014540822e-016,-0.937663018703461,-0.347545832395554,2.08203014540822e-016,-0.937663018703461,-0.347545832395554,2.08203014540822e-016,-0.937663018703461,-0.017602976411581,2.22010220681329e-016,-0.999845147132874,-0.017602976411581,2.22010220681329e-016,-0.999845147132874,-0.017602976411581,2.22010220681329e-016,-0.999845147132874,-0.973610281944275,-5.06743780354765e-017,0.228217110037804,-0.973610281944275,-5.06743780354765e-017,0.228217110037804,-0.973610281944275,-5.06743780354765e-017,0.228217110037804,-0.983015954494476,4.07496731401632e-017,-0.183520212769508,-0.983015954494476,4.07496731401632e-017,-0.183520212769508,-0.983015954494476,4.07496731401632e-017,-0.183520212769508,-0.940678656101227,-7.5339464607542e-017,0.339298784732819,-0.940678656101227,-7.5339464607542e-017,0.339298784732819,-0.940678656101227,-7.5339464607542e-017,0.339298784732819,-0.999939560890198,-2.44304112963811e-018,0.011002479121089,-0.999939560890198,-2.44304112963811e-018,0.011002479121089,
  902. -0.999939560890198,-2.44304112963811e-018,0.011002479121089,-0.777103781700134,0.628770232200623,-0.0275287106633186,-0.415005892515183,0.908332109451294,-0.0519900768995285,0.443341135978699,0.893928945064545,-0.0658771246671677,0.443521559238434,0.893947660923004,-0.0643908381462097,-0.41484260559082,0.908287048339844,-0.0540392175316811,0.431815207004547,0.899645030498505,-0.0646100416779518,0.416235834360123,0.908843338489532,0.0274162888526917,-0.425328224897385,0.904368162155151,0.0348468646407127,0.846202611923218,0.532755136489868,0.0106441453099251,-0.427386432886124,0.904019176959991,0.00949839409440756,0.419151961803436,0.90788346529007,-0.00769540201872587,-0.555612027645111,0.83135449886322,0.0120376739650965,-0.884701371192932,0.46578323841095,-0.0187000874429941,-0.575632810592651,0.816483795642853,-0.0447351336479187,0.585407614707947,0.808628022670746,-0.0584705770015717,0.585558235645294,0.808597803115845,-0.0573688521981239,-0.575284361839294,0.816452264785767,-0.0495336391031742,0.548877418041229,0.833834767341614,-0.0587639957666397,-0.999881386756897,0.0154030518606305,3.42016456503347e-018,-0.999881386756897,0.0154030518606305,3.42016456503347e-018,-0.999881386756897,0.0154030518606305,3.42016456503347e-018,-0.999993324279785,0.00365542457439005,8.1166730545369e-019,-0.999993324279785,0.00365542457439005,8.1166730545369e-019,-0.999993324279785,0.00365542457439005,8.1166730545369e-019,-0.0751944705843925,0.00616952124983072,0.99714982509613,0.0405852496623993,0.00575817376375198,0.999159514904022,0.21970272064209,0.00496387528255582,0.975554347038269,0.0407617911696434,0.00534810591489077,0.999154567718506,-0.0756682902574539,0.00513632828369737,0.997119903564453,-0.0972044616937637,0.00508927553892136,0.995251417160034,-0.87347823381424,0.486231058835983,-0.0248058028519154,-0.573625147342682,0.817144989967346,-0.0568197220563889,0.570370733737946,0.817842125892639,-0.0762329325079918,0.573644042015076,0.817124664783478,-0.0569203458726406,-0.574835896492004,0.817088305950165,-0.0439356490969658,
  903. 0.544449388980865,0.836799502372742,-0.057804748415947,-0.402121990919113,0.915539145469666,0.00926896464079618,0.406971603631973,0.912429451942444,0.0429730750620365,-0.554751217365265,0.832016170024872,0.000516477972269058,0.413349688053131,0.910484254360199,-0.0126686962321401,-0.40370699763298,0.913736760616302,-0.0458882302045822,0.545206427574158,0.838286995887756,-0.00499170646071434,0.435850888490677,0.899496018886566,-0.0306737553328276,0.706403493881226,0.706736028194427,-0.0389659330248833,-0.443394631147385,0.896311044692993,0.00528404908254743,0.436574041843414,0.898064196109772,-0.053701139986515,-0.446455061435699,0.894563972949982,-0.0208140350878239,-0.416998893022537,0.908628642559052,-0.0224937163293362,-0.88716858625412,0.460004806518555,-0.0364350751042366,-0.462479591369629,0.88578736782074,-0.0386449247598648,0.577546060085297,0.816294074058533,-0.0102228699252009,0.579257130622864,0.814965665340424,0.017098281532526,-0.464653134346008,0.885344922542572,-0.0161833800375462,0.480226993560791,0.877034842967987,0.0138522069901228,0.125782757997513,-0.00656165182590485,-0.992036163806915,-0.16869905591011,-0.00118886679410934,-0.985666871070862,0.193662077188492,-0.00774633884429932,-0.981037735939026,-0.169351831078529,-0.000546418072190136,-0.985555529594421,0.124963685870171,-0.00740305986255407,-0.992133677005768,-0.218768626451492,0.000644221960101277,-0.975776672363281,0.492143362760544,0.868063509464264,-0.065273679792881,0.875009596347809,0.481369704008102,-0.0513946898281574,-0.612879276275635,0.789503931999207,-0.0325975269079208,-0.614511072635651,0.788858413696289,-0.00887224264442921,-0.535735428333282,0.84428608417511,-0.0129880961030722,0.495169043540955,0.867717146873474,-0.04329714179039,-0.425282776355743,0.904471218585968,0.032655593007803,0.402030438184738,0.915553629398346,0.0115409288555384,-0.547261774539948,0.836263477802277,0.0341740734875202,0.402779877185822,0.915253698825836,-0.00890481192618608,-0.427192896604538,0.904093503952026,0.0110057508572936,0.511281669139862,0.859335541725159,-0.0115554835647345,
  904. 0.414431422948837,0.90930449962616,0.0375777445733547,-0.391103774309158,0.920126497745514,0.0201310943812132,-0.473781168460846,0.880477249622345,0.017066141590476,-0.388089448213577,0.92156857252121,-0.009891995228827,0.412555158138275,0.910900115966797,0.00770391896367073,0.505299687385559,0.862888097763062,0.00981174688786268,-0.00373286264948547,-2.22043056442925e-016,0.999993026256561,-0.00373286264948547,-2.22043056442925e-016,0.999993026256561,-0.00373286264948547,-2.22043056442925e-016,0.999993026256561,-0.00515355216339231,-2.22041653544606e-016,0.999986708164215,-0.00515355216339231,-2.22041653544606e-016,0.999986708164215,-0.00515355216339231,-2.22041653544606e-016,0.999986708164215,-0.999835312366486,0.018148610368371,4.02980101918327e-018,-0.999835312366486,0.018148610368371,4.02980101918327e-018,-0.999835312366486,0.018148610368371,4.02980101918327e-018,-0.999962747097015,-0.00862890016287565,-1.91600072760326e-018,-0.999962747097015,-0.00862890016287565,-1.91600072760326e-018,-0.999962747097015,-0.00862890016287565,-1.91600072760326e-018,0.00138363370206207,2.22044393166794e-016,-0.999999046325684,0.00138363370206207,2.22044393166794e-016,-0.999999046325684,0.00138363370206207,2.22044393166794e-016,-0.999999046325684,0.00129452534019947,2.22044419636574e-016,-0.999999165534973,0.00129452534019947,2.22044419636574e-016,-0.999999165534973,0.00129452534019947,2.22044419636574e-016,-0.999999165534973,-1,2.23591105168452e-005,4.96471986118802e-021,-1,2.23591105168452e-005,4.96471986118802e-021,-1,2.23591105168452e-005,4.96471986118802e-021,-0.999731123447418,0.0231892038136721,5.14903759933284e-018,-0.999731123447418,0.0231892038136721,5.14903759933284e-018,-0.999731123447418,0.0231892038136721,5.14903759933284e-018,0.777103543281555,0.628770411014557,0.0275279022753239,0.415006041526794,0.908332169055939,0.0519889853894711,-0.443341225385666,0.893928945064545,0.0658761262893677,-0.443521618843079,0.893947660923004,0.0643902271986008,0.414842694997787,0.908287107944489,0.0540378876030445,-0.431815207004547,0.899645090103149,0.0646094232797623,
  905. -0.846202731132507,0.532754957675934,-0.0106453532353044,-0.416235715150833,0.908843278884888,-0.0274171754717827,0.425328224897385,0.904368162155151,-0.0348467826843262,0.427386522293091,0.904019057750702,-0.00949722528457642,-0.419151932001114,0.90788346529007,0.00769499223679304,0.555611968040466,0.831354737281799,-0.0120362993329763,0.468968451023102,-0.00164628028869629,0.883213400840759,-0.0951065644621849,0.00217359536327422,0.99546480178833,0.165639355778694,0.000474572239909321,0.986186385154724,0.162106186151505,0.00536230904981494,0.986758768558502,-0.0960493683815002,0.000831190380267799,0.995376229286194,-0.121964760124683,0.000366922467947006,0.992534399032593,0.999813199043274,0.0176532585173845,0.00787254516035318,0.999719977378845,0.0176715813577175,0.0157436225563288,0.999813199043274,0.0176532585173845,0.00787254516035318,0.998142302036285,0.0588630475103855,0.0157187767326832,0.998233199119568,0.0588954351842403,0.0078601036220789,0.998142302036285,0.0588630475103855,0.0157187767326832,-0.230277076363564,0.00523445010185242,-0.973111033439636,0.110741376876831,0.00348494574427605,-0.993843197822571,-0.0408518239855766,0.00432230904698372,-0.999155879020691,-0.0402195677161217,0.00580361112952232,-0.999174058437347,0.109854012727737,0.0054323822259903,-0.993932962417603,0.126353234052658,0.00538364052772522,-0.991970777511597,0.877406418323517,0.478996276855469,0.0268479250371456,0.569009780883789,0.819989025592804,0.0620165094733238,-0.568376064300537,0.818724572658539,0.0814785361289978,-0.572209477424622,0.817850351333618,0.0608049742877483,0.570386826992035,0.819934904575348,0.0486385561525822,-0.545099020004272,0.836095869541168,0.0617320127785206,-0.413600653409958,0.910348892211914,0.0141206551343203,0.404145061969757,0.913307785987854,0.0503553338348866,-0.550665259361267,0.834708869457245,0.0053733023814857,0.402040719985962,0.915571808815002,-0.0095724118873477,-0.406194776296616,0.91260552406311,-0.0464431419968605,0.554704666137695,0.832047283649445,-4.04417514801025e-005,0.452599614858627,0.891688346862793,-0.00675373151898384,
  906. -0.436321020126343,0.899044752120972,0.0366419292986393,-0.72007805109024,0.692305505275726,0.0469121932983398,-0.437268793582916,0.897070825099945,0.063718356192112,0.456823021173477,0.889236927032471,0.023884005844593,0.42302593588829,0.905738949775696,0.0261923484504223,0.419383972883224,0.907680630683899,0.0152604971081018,0.910601615905762,0.411747574806213,0.0356212966144085,-0.552700281143188,0.833052933216095,-0.0233478788286448,0.418001383543015,0.90839809179306,-0.00936785154044628,-0.55103874206543,0.83349734544754,-0.0404781401157379,-0.452757447957993,0.890797078609467,-0.0386156998574734,-0.696209788322449,0.71759170293808,0.0188201665878296,-0.772931158542633,0.634129583835602,0.0213813334703445,0.728102028369904,0.685049116611481,-0.023985218256712,0.726457595825195,0.686146438121796,-0.0382421910762787,0.811134278774261,0.583621561527252,-0.0380417294800282,-0.695250749588013,0.718765735626221,0.00149413920007646,-0.109693214297295,-0.0152930170297623,-0.993847846984863,0.386150598526001,-0.00816061999648809,-0.922399640083313,0.0695595666766167,-0.0131278801709414,-0.997491419315338,-0.120111361145973,0.0029573212377727,-0.992756009101868,0.0816245600581169,0.00242530205287039,-0.99666029214859,-0.127875328063965,0.00297562079504132,-0.991785883903503,-0.402787446975708,0.915131986141205,0.017201891168952,0.426074594259262,0.904483079910278,-0.0192558318376541,-0.513580977916718,0.85775625705719,0.0221084449440241,0.423466712236404,0.904927968978882,-0.0422078035771847,-0.402375012636185,0.915464460849762,-0.00439602788537741,0.547102153301239,0.835791349411011,-0.0461750589311123,0.387747496366501,0.921693682670593,0.0115176364779472,-0.412797540426254,0.910775482654572,-0.00928308349102736,-0.508305370807648,0.861095607280731,-0.0118408408015966,-0.415455251932144,0.908523976802826,-0.0445087514817715,0.391787797212601,0.919749557971954,-0.0237287394702435,0.482679635286331,0.875575304031372,-0.0197085402905941,-0.0153311304748058,2.22018505722344e-016,-0.999882459640503,-0.0153311304748058,2.22018505722344e-016,-0.999882459640503,
  907. -0.0153311304748058,2.22018505722344e-016,-0.999882459640503,-0.0139777818694711,2.22022912940648e-016,-0.999902307987213,-0.0139777818694711,2.22022912940648e-016,-0.999902307987213,-0.0139777818694711,2.22022912940648e-016,-0.999902307987213,0.99987530708313,-0.00119959574658424,-0.0157460682094097,0.99987530708313,-0.00119959574658424,-0.0157460682094097,0.99987530708313,-0.00119959574658424,-0.0157460682094097,0.999837100505829,-0.00882534217089415,-0.0157454665750265,0.999837100505829,-0.00882534217089415,-0.0157454665750265,0.999837100505829,-0.00882534217089415,-0.0157454665750265,0.0173922814428806,-2.22011041244496e-016,0.99984884262085,0.0173922814428806,-2.22011041244496e-016,0.99984884262085,0.0173922814428806,-2.22011041244496e-016,0.99984884262085,0.0176079515367746,-2.22010180976659e-016,0.999844968318939,0.0176079515367746,-2.22010180976659e-016,0.999844968318939,0.0176079515367746,-2.22010180976659e-016,0.999844968318939,0.999875843524933,0.000585297995712608,-0.0157460756599903,0.999720931053162,0.0006065753987059,-0.0236154552549124,0.999875843524933,0.000585297995712608,-0.0157460756599903,0.993262112140656,-0.113490298390388,-0.0234628859907389,0.993413925170898,-0.1135084182024,-0.0156443137675524,0.993262112140656,-0.113490298390388,-0.0234628859907389,0,-4.00408407585928e-006,1,-0.00787408743053675,-4.0039885789156e-006,0.999969065189362,0,-4.00408407585928e-006,1,-0.00776311568915844,0.00140531244687736,0.999968886375427,0,0.00063399423379451,0.999999821186066,-0.00776311568915844,0.00140531244687736,0.999968886375427,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.0242483075708151,0.999705970287323,2.21979317213644e-016,-0.0242483075708151,0.999705970287323,2.21979317213644e-016,-0.0242483075708151,0.999705970287323,2.21979317213644e-016,0.0191766079515219,0.999816119670868,2.22003775289996e-016,0.0191766079515219,0.999816119670868,2.22003775289996e-016,0.0191766079515219,0.999816119670868,2.22003775289996e-016,
  908. 0,0,1,8.74191437434009e-018,-2.58493941422821e-026,1,0,0,1,7.91607089922763e-005,0.0020106821320951,0.999997973442078,0,0.00201463350094855,0.999997973442078,7.91607089922763e-005,0.0020106821320951,0.999997973442078,-0.998867869377136,0.0475702472031116,1.0562716746401e-017,-0.998867869377136,0.0475702472031116,1.0562716746401e-017,-0.998867869377136,0.0475702472031116,1.0562716746401e-017,-0.999979257583618,-0.00644160807132721,-1.43032431927974e-018,-0.999979257583618,-0.00644160807132721,-1.43032431927974e-018,-0.999979257583618,-0.00644160807132721,-1.43032431927974e-018,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999898254871368,-0.0142651638016105,-3.16750266051945e-018,-0.999898254871368,-0.0142651638016105,-3.16750266051945e-018,-0.999898254871368,-0.0142651638016105,-3.16750266051945e-018,-0.99989777803421,-0.0143044125288725,-3.17621762865816e-018,-0.99989777803421,-0.0143044125288725,-3.17621762865816e-018,-0.99989777803421,-0.0143044125288725,-3.17621762865816e-018,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.00776363257318735,0.00139875104650855,-0.999968886375427,0,0.000627379689831287,-0.999999821186066,0.00776363257318735,0.00139875104650855,-0.999968886375427,0,-4.00408407585928e-006,-1,0.00787408743053675,-4.0039885789156e-006,-0.999969065189362,0,-4.00408407585928e-006,-1,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0242477525025606,0.999705970287323,2.21979317213644e-016,0.0242477525025606,0.999705970287323,2.21979317213644e-016,0.0242477525025606,0.999705970287323,2.21979317213644e-016,-0.019176559522748,0.999816119670868,2.22003775289996e-016,-0.019176559522748,0.999816119670868,2.22003775289996e-016,-0.019176559522748,0.999816119670868,2.22003775289996e-016,-0.0393384210765362,0.999195873737335,-0.00774739123880863,0,0.999971032142639,-0.00761321233585477,-0.0393384210765362,0.999195873737335,-0.00774739123880863,-0,0.999954998493195,0.00948637630790472,-0.0393378064036369,0.999180316925049,0.00955276377499104,
  909. -0,0.999954998493195,0.00948637630790472,0.999979257583618,-0.00644160341471434,-1.43032328530398e-018,0.999979257583618,-0.00644160341471434,-1.43032328530398e-018,0.999979257583618,-0.00644160341471434,-1.43032328530398e-018,0.998867869377136,0.0475702472031116,1.0562716746401e-017,0.998867869377136,0.0475702472031116,1.0562716746401e-017,0.998867869377136,0.0475702472031116,1.0562716746401e-017,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.99989777803421,-0.0143044125288725,-3.17621762865816e-018,0.99989777803421,-0.0143044125288725,-3.17621762865816e-018,0.99989777803421,-0.0143044125288725,-3.17621762865816e-018,0.999898254871368,-0.0142651638016105,-3.16750266051945e-018,0.999898254871368,-0.0142651638016105,-3.16750266051945e-018,0.999898254871368,-0.0142651638016105,-3.16750266051945e-018,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.899698495864868,0.0192234199494123,0.436088591814041,-0.719439327716827,0.0203217547386885,0.694257974624634,-0.887615144252777,0.00620497763156891,-0.460544258356094,-0.894397377967834,0.0804591923952103,0.439976900815964,-0.881536483764648,0.0713175982236862,-0.466698199510574,-0.91202050447464,0.0744889453053474,-0.403323650360107,0.00810199603438377,0.0314794182777405,-0.999471545219421,0.00810199603438377,0.0314794182777405,-0.999471545219421,0.00810199603438377,0.0314794182777405,-0.999471545219421,-0.369642853736877,0.0292508155107498,-0.928713381290436,-0.369642853736877,0.0292508155107498,-0.928713381290436,-0.369642853736877,0.0292508155107498,-0.928713381290436,-0.000179952316102572,0.0228539444506168,-0.999738812446594,-0.000179952316102572,0.0228539444506168,-0.999738812446594,-0.000179952316102572,0.0228539444506168,-0.999738812446594,-0.000284200388705358,0.0360934510827065,-0.99934846162796,-0.000284200388705358,0.0360934510827065,-0.99934846162796,-0.000284200388705358,0.0360934510827065,-0.99934846162796,0.000361065322067589,0.0458552949130535,-0.998948037624359,0.000361065322067589,0.0458552949130535,-0.998948037624359,0.000361065322067589,0.0458552949130535,-0.998948037624359,
  910. 0.000417479808675125,0.0530199371278286,-0.998593389987946,0.000417479808675125,0.0530199371278286,-0.998593389987946,0.000417479808675125,0.0530199371278286,-0.998593389987946,-0.120461128652096,0.0312512144446373,-0.99222606420517,-0.120461128652096,0.0312512144446373,-0.99222606420517,-0.120461128652096,0.0312512144446373,-0.99222606420517,-0.430590987205505,0.0284125953912735,-0.902099847793579,-0.430590987205505,0.0284125953912735,-0.902099847793579,-0.430619478225708,0.0355053134262562,-0.901834964752197,-0.921649694442749,-0.0227865148335695,0.387353360652924,-0.918089151382446,0.0199633538722992,-0.395870894193649,-0.860570013523102,0.0262212939560413,-0.508656680583954,-0.918358385562897,0.0269763097167015,-0.394829273223877,-0.921968817710876,-0.0145126972347498,0.38699197769165,-0.870645880699158,-0.0203970950096846,0.491487175226212,-0.868294298648834,0.0690766423940659,0.491216331720352,-0.733896613121033,0.0793721005320549,0.674607932567596,-0.828892290592194,-0.0172286871820688,-0.55914306640625,-0.871188223361969,0.0346101112663746,0.489727675914764,-0.830598413944244,-0.0362215861678123,-0.555692672729492,-0.813366234302521,-0.037930641323328,-0.580514311790466,-0.590597152709961,0.0361925102770329,0.806154608726501,-0.811624705791473,0.0101196505129337,0.584091544151306,-0.822993278503418,-0.0771085768938065,-0.562793254852295,-0.82246059179306,-0.0664316043257713,-0.564929485321045,-0.811241090297699,0.0168460160493851,0.584469079971313,-0.817642986774445,-0.066779762506485,-0.571839511394501,-0.163354232907295,-0.01553457044065,-0.986445188522339,-0.163354232907295,-0.01553457044065,-0.986445188522339,-0.163354232907295,-0.01553457044065,-0.986445188522339,-0.0130368052050471,-0.0157447420060635,-0.999791145324707,-0.0130368052050471,-0.0157447420060635,-0.999791145324707,-0.0130368052050471,-0.0157447420060635,-0.999791145324707,0.893497824668884,0.0840903073549271,-0.441124111413956,0.697303354740143,0.098517008125782,-0.709973633289337,0.900284051895142,0.00560702383518219,0.43526703119278,0.891265153884888,0.107179097831249,-0.440634936094284,
  911. 0.897551953792572,0.032488401979208,0.439710080623627,0.912141084671021,0.0363122671842575,0.408264756202698,0.922589182853699,0.0147171877324581,0.385502994060516,0.916294872760773,0.033453181385994,-0.399104714393616,0.860153675079346,0.0346362814307213,-0.508857488632202,0.916285872459412,0.0326133146882057,-0.399194866418839,0.922570288181305,0.0125428177416325,0.385625153779984,0.871867060661316,0.00862636417150497,0.489666700363159,0.999407291412354,0.0323669426143169,-0.0117226494476199,0.996785998344421,0.0663285776972771,-0.0449245907366276,0.999128937721252,0.0380052626132965,-0.0172317288815975,0.998631000518799,0.0522656217217445,-0.00212319195270538,0.996274173259735,0.0807519853115082,-0.0302816014736891,0.996274173259735,0.0807519853115082,-0.0302816014736891,-0.0444978773593903,0.704506814479828,-0.708300888538361,-0.02226547524333,0.705003619194031,-0.708854138851166,-0.0444978773593903,0.704506814479828,-0.708300888538361,-0.0222644433379173,0.699821710586548,-0.713970541954041,-0.0444957986474037,0.699275314807892,-0.713466346263886,-0.0222644433379173,0.699821710586548,-0.713970541954041,0,-0.711045980453491,-0.703145563602448,1.86264514923096e-009,-0.691222667694092,-0.722641885280609,0,-0.711045980453491,-0.703145563602448,0.078500859439373,-0.70447713136673,-0.705371975898743,0.0780709311366081,-0.686893880367279,-0.722552180290222,0.0779644474387169,-0.682755649089813,-0.726475298404694,0.0111271236091852,-0.706940293312073,-0.707185685634613,-3.86498913940159e-006,-0.706984102725983,-0.707229495048523,0.0111271236091852,-0.706940293312073,-0.707185685634613,-0.000128539279103279,-0.703013896942139,-0.711176097393036,0.0108589921146631,-0.70267516374588,-0.711427927017212,0.00546762999147177,-0.702852070331573,-0.711315155029297,0.999730408191681,0.0164195895195007,-0.0164195895195007,0.999730408191681,0.0164195895195007,-0.0164195895195007,0.999730408191681,0.0164195895195007,-0.0164195895195007,0.998943507671356,-0.0324950255453587,0.0324950255453587,0.998943507671356,-0.0324950255453587,0.0324950255453587,
  912. 0.998943507671356,-0.0324950255453587,0.0324950255453587,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.998870015144348,0.00994029082357883,0.0464748069643974,0.996518492698669,0.039019089192152,0.0736791864037514,0.998870015144348,0.00994029082357883,0.0464748069643974,0.99676901102066,0.0468389503657818,0.0652519538998604,0.999110341072083,0.0180279687047005,0.0381250753998756,0.99676901102066,0.0468389503657818,0.0652519538998604,-0.0444562435150146,0.736382782459259,0.675103068351746,-0.022244531661272,0.736987709999084,0.675540030002594,-0.0444562435150146,0.736382782459259,0.675103068351746,-0.0222371872514486,0.741715967655182,0.670345425605774,-0.0444413274526596,0.741193890571594,0.66981840133667,-0.0222371872514486,0.741715967655182,0.670345425605774,0.0779189467430115,0.695253789424896,-0.714528441429138,0.0784778818488121,0.673218309879303,-0.735267579555511,0.0779189467430115,0.695253789424896,-0.714528441429138,-1.86264514923096e-009,0.695158243179321,-0.718856811523438,0,0.670706689357758,-0.741722702980042,0,0.670706689357758,-0.741722702980042,0.0444659143686295,-0.732761025428772,-0.679031789302826,0.0222496334463358,-0.733166813850403,-0.67968487739563,0.0444659143686295,-0.732761025428772,-0.679031789302826,0.0222560372203588,-0.727308809757233,-0.685949504375458,0.0444789454340935,-0.726816236972809,-0.68539023399353,0.0222560372203588,-0.727308809757233,-0.685949504375458,0.999217391014099,0.029042012989521,0.0268560517579317,0.999217391014099,0.029042012989521,0.0268560517579317,0.999217391014099,0.029042012989521,0.0268560517579317,0.999163031578064,-0.0300319977104664,-0.0277715213596821,0.999163031578064,-0.0300319977104664,-0.0277715213596821,0.999163031578064,-0.0300319977104664,-0.0277715213596821,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.998869895935059,0.00993540696799755,0.0464798510074615,0.99651825428009,0.0390143096446991,0.0736843273043633,0.998869895935059,0.00993540696799755,0.0464798510074615,0.996768832206726,0.0468341633677483,0.0652571022510529,0.999110341072083,0.018023082986474,0.0381301231682301,
  913. 0.996768832206726,0.0468341633677483,0.0652571022510529,0.00179573334753513,0.678023517131805,-0.735038042068481,0.000897868536412716,0.678024291992188,-0.735038936138153,0.00179573334753513,0.678023517131805,-0.735038042068481,0.00112215522676706,0.670579791069031,-0.741836607456207,0.00224233604967594,0.670611321926117,-0.741805493831635,0.00112215522676706,0.670579791069031,-0.741836607456207,-0.999220788478851,-0.0280168373137712,-0.0278019476681948,-0.996898889541626,-0.0568320415914059,-0.0544326789677143,-0.999220788478851,-0.0280168373137712,-0.0278019476681948,-0.999186456203461,-0.0225943885743618,-0.0334073007106781,-0.996850490570068,-0.0515675581991673,-0.0602488778531551,-0.996850490570068,-0.0515675581991673,-0.0602488778531551,0.0444659143686295,-0.732760369777679,-0.679032444953918,0.0222496334463358,-0.73316615819931,-0.679685592651367,0.0444659143686295,-0.732760369777679,-0.679032444953918,0.0222560372203588,-0.727308392524719,-0.685949921607971,0.0444789454340935,-0.726815938949585,-0.685390591621399,0.0222560372203588,-0.727308392524719,-0.685949921607971,0.999219477176666,0.0290042068809271,0.0268210917711258,0.999219477176666,0.0290042068809271,0.0268210917711258,0.999219477176666,0.0290042068809271,0.0268210917711258,0.999162197113037,-0.0300474483519793,-0.0277858097106218,0.999162197113037,-0.0300474483519793,-0.0277858097106218,0.999162197113037,-0.0300474483519793,-0.0277858097106218,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999407231807709,0.0323718078434467,-0.0117174992337823,0.996785938739777,0.0663335919380188,-0.0449195019900799,0.999128937721252,0.0380101390182972,-0.0172265712171793,0.99863076210022,0.0522701218724251,-0.0021184179931879,0.996273934841156,0.0807565599679947,-0.0302769560366869,0.996273934841156,0.0807565599679947,-0.0302769560366869,-0.0444978773593903,0.704506099224091,-0.708301603794098,-0.02226547524333,0.705002963542938,-0.708854734897614,-0.0444978773593903,0.704506099224091,-0.708301603794098,-0.0222644433379173,0.699821889400482,-0.713970363140106,-0.0444957986474037,0.699275553226471,-0.713466107845306,
  914. -0.0222644433379173,0.699821889400482,-0.713970363140106,-0.996845364570618,-0.0623805299401283,0.0490731820464134,-0.999193966388702,-0.0341997481882572,0.0210181009024382,-0.996845364570618,-0.0623805299401283,0.0490731820464134,-0.996891736984253,-0.0567623265087605,0.0546341128647327,-0.999229550361633,-0.0287658199667931,0.0267010424286127,-0.999221205711365,-0.0289149265736341,0.026849802583456,0.0111271236091852,-0.706940293312073,-0.707185685634613,-3.86498913940159e-006,-0.706984102725983,-0.707229495048523,0.0111271236091852,-0.706940293312073,-0.707185685634613,-0.000128357671201229,-0.703019678592682,-0.711170375347137,0.0108593665063381,-0.702681124210358,-0.711422085762024,0.00546776736155152,-0.702857911586761,-0.711309313774109,0.999731540679932,0.0163839962333441,-0.0163839962333441,0.999731540679932,0.0163839962333441,-0.0163839962333441,0.999731540679932,0.0163839962333441,-0.0163839962333441,0.99894255399704,-0.0325098112225533,0.0325098112225533,0.99894255399704,-0.0325098112225533,0.0325098112225533,0.99894255399704,-0.0325098112225533,0.0325098112225533,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1.16536249095134e-007,4.93336801810074e-006,-1,0.00790390186011791,-0.000546677270904183,-0.999968707561493,-1.16536249095134e-007,4.93336801810074e-006,-1,0.00743744056671858,0.00791230797767639,-0.999941051006317,-0.000171340696397237,0.00725342193618417,-0.999973654747009,0.00743744056671858,0.00791230797767639,-0.999941051006317,0.999822795391083,0.0188246350735426,4.17990865776265e-018,0.999822795391083,0.0188246350735426,4.17990865776265e-018,0.999822795391083,0.0188246350735426,4.17990865776265e-018,0.999823868274689,0.0187682751566172,4.16739424227534e-018,0.999823868274689,0.0187682751566172,4.16739424227534e-018,0.999823868274689,0.0187682751566172,4.16739424227534e-018,0.999995350837708,0.00304452469572425,6.76020283246592e-019,0.999995350837708,0.00304452469572425,6.76020283246592e-019,0.999995350837708,0.00304452469572425,6.76020283246592e-019,1,-0,0,1,-0,0,1,-0,0,0.999878704547882,0.0155749944970012,3.45834349979616e-018,
  915. 0.999878704547882,0.0155749944970012,3.45834349979616e-018,0.999878704547882,0.0155749944970012,3.45834349979616e-018,0.999879598617554,0.0155180273577571,3.445694253869e-018,0.999879598617554,0.0155180273577571,3.445694253869e-018,0.999879598617554,0.0155180273577571,3.445694253869e-018,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0157409328967333,-0.999549210071564,-0.025565505027771,0.0473751537501812,-0.998556613922119,-0.0253050569444895,0.0157409328967333,-0.999549210071564,-0.025565505027771,0.0474138483405113,-0.998386800289154,-0.0312382709234953,0.0157384481281042,-0.999391496181488,-0.031128091737628,0.0474138483405113,-0.998386800289154,-0.0312382709234953,0.999871730804443,0.0160158760845661,3.55623887772574e-018,0.999871730804443,0.0160158760845661,3.55623887772574e-018,0.999871730804443,0.0160158760845661,3.55623887772574e-018,0.999870777130127,0.0160746704787016,3.56929385574336e-018,0.999870777130127,0.0160746704787016,3.56929385574336e-018,0.999870777130127,0.0160746704787016,3.56929385574336e-018,0.999999463558197,0.00101259304210544,2.24840821984137e-019,0.999999463558197,0.00101259304210544,2.24840821984137e-019,0.999999463558197,0.00101259304210544,2.24840821984137e-019,1,-0,0,1,-0,0,1,-0,0,0.956050157546997,0.293203264474869,6.51042030230517e-017,0.956050157546997,0.293203264474869,6.51042030230517e-017,0.956050157546997,0.293203264474869,6.51042030230517e-017,0.956069529056549,0.293139904737473,6.50901343351934e-017,0.956069529056549,0.293139904737473,6.50901343351934e-017,0.956069529056549,0.293139904737473,6.50901343351934e-017,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.00945926457643509,-0.000148964798427187,0.999955236911774,0.00945926457643509,-0.000148964798427187,0.999955236911774,0.00946045760065317,-7.44917924748734e-005,0.999955236911774,-0.02794767357409,-2.21957876692166e-016,0.999609410762787,-0.0279463697224855,0.000220050162170082,0.999609410762787,-0.0279450658708811,0.000440079777035862,0.999609351158142,-0.0430697500705719,0.000339131889631972,0.999072074890137,-0.0430706702172756,-2.21838550925722e-016,0.999072015285492,
  916. -0.0430706702172756,-2.21838550925722e-016,0.999072015285492,0.054722860455513,-0.019207252189517,-0.998316824436188,-0.00817512627691031,-0.0192296858876944,-0.999781727790833,0.047031793743372,-0.0192140843719244,-0.998708605766296,-0.0314804539084435,0.000137407638248988,-0.999504387378693,0.0471899174153805,-0.000195951855857857,-0.998885989189148,-0.00787318404763937,3.73763068637345e-005,-0.999969065189362,0.0473255515098572,0.0180461425334215,-0.998716533184052,-0.0314743630588055,0.0196692049503326,-0.999311029911041,0.047183770686388,0.0180491674691439,-0.998723149299622,-0.0314804315567017,-0.00112359225749969,-0.9995037317276,0.031480435281992,-0.00110832741484046,-0.999503791332245,0.0471914298832417,-0.00110382761340588,-0.998885273933411,0.0314804166555405,0.00153958622831851,-0.999503195285797,-0.031480435281992,0.00110810087062418,-0.999503791332245,-0.0471992902457714,0.000999556155875325,-0.998885035514832,0.0314681828022003,0.0279225520789623,-0.999114751815796,-0.0473904497921467,0.0276202838867903,-0.998494505882263,0.0465139821171761,0.0279605519026518,-0.998526275157928,-0.0548642985522747,0.0106465397402644,0.9984370470047,-0.039421584457159,0.0107152201235294,0.999165236949921,0.0392505377531052,0.0110247917473316,0.999168574810028,-0.03924261033535,-0.0119779398664832,0.999157905578613,-0.0395251326262951,-0.0119791524484754,0.99914675951004,0.0394281819462776,-0.0116035882383585,0.999155104160309,0.0313692539930344,-0.00701879803091288,0.999483287334442,0.0393936969339848,-0.00700361654162407,0.999199211597443,-0.0394507572054863,-0.00713302101939917,0.99919605255127,-0.0391150750219822,0.0140332598239183,0.99913614988327,0.0393362455070019,0.0130650857463479,0.999140620231628,0.0316848121583462,0.0131631884723902,0.999411225318909,0.0393389612436295,0.00571831874549389,0.999209582805634,-0.0392274782061577,0.00706827500835061,0.99920529127121,-0.0550906918942928,0.00733604328706861,0.998454511165619,0.0329339504241943,-0.546942174434662,0.836522340774536,-0.0404597781598568,-0.576125085353851,0.816359579563141,
  917. 0.610961556434631,-0.16718590259552,0.773805439472198,-0.993550300598145,2.51781354208341e-017,-0.113392241299152,-0.993550300598145,2.51781354208341e-017,-0.113392241299152,-0.993550300598145,2.51781354208341e-017,-0.113392241299152,-0.991598784923553,-2.87218185240419e-017,0.129351571202278,-0.991598784923553,-2.87218185240419e-017,0.129351571202278,-0.991598784923553,-2.87218185240419e-017,0.129351571202278,-0.999996781349182,5.6298124455391e-019,-0.00253544212318957,-0.999996781349182,5.6298124455391e-019,-0.00253544212318957,-0.999996781349182,5.6298124455391e-019,-0.00253544212318957,0.996738076210022,-1.79200093574855e-017,0.0807045474648476,0.996738076210022,-1.79200093574855e-017,0.0807045474648476,0.996738076210022,-1.79200093574855e-017,0.0807045474648476,0.999409914016724,7.62681287007267e-018,-0.0343481115996838,0.999409914016724,7.62681287007267e-018,-0.0343481115996838,0.999409914016724,7.62681287007267e-018,-0.0343481115996838,0.999855875968933,-3.7697420520415e-018,0.016977408900857,0.999855875968933,-3.7697420520415e-018,0.016977408900857,0.999855875968933,-3.7697420520415e-018,0.016977408900857,-0.00270855356939137,0.00785241741687059,-0.999965488910675,-0.00328403478488326,0.015642587095499,-0.999872267246246,-0.00328594073653221,0.0156683921813965,-0.999871850013733,0.0321670919656754,0.0164975915104151,-0.999346435070038,0.0318433232605457,2.21932002482606e-016,-0.999492883682251,0.0320037975907326,0.00812172051519156,-0.99945479631424,0,2.22044604925031e-016,-1,0,0.0157460793852806,-0.999876022338867,0,2.22044604925031e-016,-1,-0.00303323194384575,0.00780208921059966,-0.999965012073517,-0.00513083580881357,0.023372882977128,-0.999713659286499,-0.00408179871737957,0.0155852856114507,-0.999870240688324,0.00129921978805214,0.0157972034066916,-0.999874413013458,0.0003971719997935,-0.00787377078086138,-0.999968945980072,0.000998217496089637,0.00789734721183777,-0.999968349933624,0,-0.00787377171218395,-0.999969005584717,0,0.0157460793852806,-0.999876081943512,0,-0.00787377171218395,-0.999969005584717,
  918. -0.00778156099840999,-0.999901950359344,0.011643742211163,-0.0155615946277976,-0.999811053276062,0.0116498079150915,-0.0078732380643487,-0.999901235103607,0.0116438185796142,-0.00787361245602369,-0.999948740005493,-0.00636250711977482,-5.02825860166922e-005,-0.999979615211487,-0.00638588843867183,-0.00792370736598969,-0.999948441982269,-0.00636235717684031,0.00013906582898926,-0.999844133853912,0.0176613591611385,-0.00787253770977259,-0.999812245368958,0.0177072938531637,0.00013906582898926,-0.999844133853912,0.0176613591611385,-0.0141235645860434,-0.442116767168045,-0.896846294403076,-0.007062460295856,-0.442111164331436,-0.896932482719421,-0.00348110171034932,-0.442099899053574,-0.896959125995636,-0.0062875272706151,0.601940810680389,-0.798515975475311,-0.00154855102300644,0.601902306079865,-0.798568308353424,0.00473882118239999,0.601830303668976,-0.798609972000122,-0.000807463657110929,-0.102547883987427,-0.994727790355682,-0.00863907765597105,-0.102463498711586,-0.99469929933548,-0.00863907765597105,-0.102463498711586,-0.99469929933548,0.0056763649918139,-0.062732957303524,0.998014271259308,0.0056763649918139,-0.062732957303524,0.998014271259308,0.0054846964776516,-0.0549045838415623,0.998476564884186,0.151198118925095,-0.0508407242596149,0.987195193767548,0.15137591958046,-0.0585809722542763,0.986738860607147,0.151198118925095,-0.0508407242596149,0.987195193767548,0.185605958104134,-0.0342780575156212,0.982026219367981,0.185947924852371,-0.0496950447559357,0.981302082538605,0.185947924852371,-0.0496950447559357,0.981302082538605,0.185436695814133,-0.034283310174942,0.982057988643646,0.185697227716446,-0.049703560769558,0.981349170207977,0.185436695814133,-0.034283310174942,0.982057988643646,0.900134682655334,-0.435381233692169,0.0141753498464823,0.900215089321136,-0.435387909412384,0.00708830775693059,0.900215089321136,-0.435387909412384,0.00708830775693059,0.99867045879364,-0.0509467720985413,0.00786354672163725,0.998583197593689,-0.0509595423936844,0.0153244640678167,0.998576879501343,-0.0509601458907127,0.0157256200909615,
  919. 0.999871790409088,-0.00303631159476936,0.0157221052795649,0.999995768070221,-0.00291102728806436,-6.46377904104236e-019,0.999871432781219,-0.00303650158457458,0.0157460067421198,0.999994456768036,-0.00333226122893393,-7.39910628085634e-019,0.999870657920837,-0.00340441660955548,0.0157191883772612,0.999963581562042,-0.00329580903053284,-0.00787372887134552,0.999434351921082,0.029720276594162,-0.0157391242682934,0.99955677986145,0.0297703668475151,6.61034934512974e-018,0.999526500701904,0.0297462418675423,-0.00787028763443232,0.998997807502747,-0.0419031269848347,-0.0157322492450476,0.999089598655701,-0.0419315099716187,-0.00786684732884169,0.998997807502747,-0.0419031269848347,-0.0157322492450476,-0.00953713897615671,0.000150191175634973,-0.999954521656036,-0.00953713897615671,0.000150191175634973,-0.999954521656036,-0.00953864865005016,7.51074694562703e-005,-0.999954521656036,-0.0112872822210193,2.22030456827834e-016,-0.999936282634735,-0.011287028901279,0.000177748486748897,-0.99993634223938,-0.0112871555611491,8.88752401806414e-005,-0.999936282634735,-0.0114062251523137,0.000179625596501864,-0.99993497133255,-0.0114072766155005,2.22030152425369e-016,-0.999934911727905,-0.0114072766155005,2.22030152425369e-016,-0.999934911727905,-0.00159229070413858,-1.25377218864742e-005,-0.99999874830246,-0.00159236963372678,2.22044326992345e-016,-0.99999874830246,-0.00159236963372678,2.22044326992345e-016,-0.99999874830246,-0.00116687838453799,2.22044459341244e-016,-0.999999344348907,-0.00116682786028832,-9.18762088986114e-006,-0.999999344348907,-0.00116682786028832,-9.18762088986114e-006,-0.999999344348907,0.993106067180634,-0.117219403386116,-2.6027936114418e-017,0.99296647310257,-0.117358684539795,0.0156372673809528,0.99296647310257,-0.117358684539795,0.0156372673809528,0.999856293201447,-0.00629673898220062,0.0157457683235407,0.999980449676514,-0.00624914700165391,-1.38758937710069e-018,0.999980449676514,-0.00624914700165391,-1.38758937710069e-018,0.999589622020721,0.0239336173981428,-0.0157415680587292,0.999712586402893,0.0239747054874897,5.32345400816363e-018,
  920. 0.999712586402893,0.0239747054874897,5.32345400816363e-018,0.987346827983856,-0.158575490117073,-3.52108320538387e-017,0.987243056297302,-0.158460333943367,-0.0155471349135041,0.987243056297302,-0.158460333943367,-0.0155471349135041,0.00610600737854838,-0.999981343746185,-2.22040462404524e-016,0.00610600737854838,-0.999981343746185,-2.22040462404524e-016,0.00610600737854838,-0.999981343746185,-2.22040462404524e-016,0.00197121244855225,-0.999998033046722,-2.22044168173668e-016,0.00197121244855225,-0.999998033046722,-2.22044168173668e-016,0.00197121244855225,-0.999998033046722,-2.22044168173668e-016,0.00322774099186063,-0.999994814395905,-2.22043453489619e-016,0.00322774099186063,-0.999994814395905,-2.22043453489619e-016,0.00322774099186063,-0.999994814395905,-2.22043453489619e-016,0.00734056252986193,-0.999973058700562,-2.22038622754841e-016,0.00734056252986193,-0.999973058700562,-2.22038622754841e-016,0.00734056252986193,-0.999973058700562,-2.22038622754841e-016,0.00289735058322549,-0.999995827674866,-2.22043678482745e-016,0.00289735058322549,-0.999995827674866,-2.22043678482745e-016,0.00289735058322549,-0.999995827674866,-2.22043678482745e-016,-0.0544662401080132,-0.00786208361387253,0.998484671115875,-0.0544662401080132,-0.00786208361387253,0.998484671115875,-0.0544662401080132,-0.00786208361387253,0.998484671115875,-0.0560933277010918,-0.00786137487739325,0.99839460849762,-0.0560933277010918,-0.00786137487739325,0.99839460849762,-0.0560933277010918,-0.00786137487739325,0.99839460849762,-0.0359639376401901,-0.00786867830902338,0.999322116374969,-0.0358870178461075,-2.21901575470954e-016,0.999355852603912,-0.0359639376401901,-0.00786867830902338,0.999322116374969,-0.0396885089576244,-2.21869652916754e-016,0.999212086200714,-0.0397647432982922,-0.00786754488945007,0.999178171157837,-0.0396885089576244,-2.21869652916754e-016,0.999212086200714,-0.0376967713236809,-2.21886778864156e-016,0.999289214611053,-0.0376946702599525,-0.000296808429993689,0.999289333820343,-0.0376967713236809,-2.21886778864156e-016,0.999289214611053,
  921. -0.0388324521481991,-0.000305767345707864,0.999245762825012,-0.038834672421217,-2.21877104159712e-016,0.999245643615723,-0.0388324521481991,-0.000305767345707864,0.999245762825012,0.00343886064365506,0.999994099140167,2.22043294670941e-016,0.00343886064365506,0.999994099140167,2.22043294670941e-016,0.00343886064365506,0.999994099140167,2.22043294670941e-016,0.00769153703004122,0.999970436096191,2.2203804041969e-016,0.00769153703004122,0.999970436096191,2.2203804041969e-016,0.00769153703004122,0.999970436096191,2.2203804041969e-016,0.0033695911988616,0.999994337558746,2.220433476105e-016,0.0033695911988616,0.999994337558746,2.220433476105e-016,0.0033695911988616,0.999994337558746,2.220433476105e-016,0.00403102580457926,0.999991893768311,2.22042804980018e-016,0.00403102580457926,0.999991893768311,2.22042804980018e-016,0.00403102580457926,0.999991893768311,2.22042804980018e-016,0.00767084723338485,0.999970555305481,2.2203806688947e-016,0.00767084723338485,0.999970555305481,2.2203806688947e-016,0.00767084723338485,0.999970555305481,2.2203806688947e-016,0.999621212482452,-0.00787103362381458,-0.0263725910335779,0.99965637922287,0.000206395066925325,-0.0262121744453907,0.99965637922287,0.000206395066925325,-0.0262121744453907,0.95629608631134,0.00230229296721518,-0.292391210794449,0.956295967102051,-0.00752988923341036,-0.292303502559662,0.956304311752319,6.49198939476851e-017,-0.292373210191727,0.948849439620972,-0.00747125502675772,-0.315640598535538,0.948770821094513,0.00747063616290689,-0.315876811742783,0.9488365650177,7.01144756979548e-017,-0.315767526626587,0.998537421226501,0.00786249898374081,-0.0534902736544609,0.998580515384674,1.18268695796056e-017,-0.0532634854316711,0.998537421226501,0.00786249898374081,-0.0534902736544609,-0.00878098886460066,-6.91416425979696e-005,-0.99996143579483,-0.00877995695918798,-0.000138267045258544,-0.99996143579483,-0.00877995695918798,-0.000138267045258544,-0.99996143579483,-0.00981388241052628,-0.000154549343278632,-0.999951839447021,-0.00981500372290611,-7.72834973759018e-005,-0.999951839447021,
  922. -0.00981500372290611,-7.72834973759018e-005,-0.999951839447021,0.0720990970730782,2.21466729931657e-016,-0.997397482395172,0.072097048163414,0.000567693321499974,-0.997397541999817,0.072097048163414,0.000567693321499974,-0.997397541999817,0.075564332306385,0.000594994751736522,-0.997140765190125,0.0755665898323059,2.21409727261285e-016,-0.997140765190125,0.0755665898323059,2.21409727261285e-016,-0.997140765190125,0.002496428322047,0.999996900558472,1.96569144463865e-005,0.00253412313759327,0.999966323375702,-0.00781388953328133,0.002496428322047,0.999996900558472,1.96569144463865e-005,-0.00370240164920688,0.999993145465851,-2.91527685476467e-005,-0.00367520051077008,0.999961316585541,-0.00798946525901556,-0.00367530039511621,0.999961614608765,-0.00796053186058998,0.00159773218911141,0.999968111515045,-0.00782344210892916,0.00127135321963578,0.999999165534973,2.22044419636574e-016,0.00159825652372092,0.999967992305756,-0.00783600937575102,0.00131881574634463,0.999999105930328,2.22044406401684e-016,0.00165729818399996,0.999968111515045,-0.00782156642526388,0.00131926534231752,0.999999105930328,-1.03879156085895e-005,-0.00130598153918982,0.999999165534973,1.02833191704121e-005,-0.00130578584503382,0.999999165534973,2.05635569727747e-005,-0.00130617723334581,0.999999165534973,2.22044419636574e-016,0.000351873197359964,0.999999940395355,-2.77065510090324e-006,0.000351819006027654,0.999999940395355,-5.54045709577622e-006,0.000351819006027654,0.999999940395355,-5.54045709577622e-006,0.000397832685848698,-0.999999940395355,3.13254099637561e-006,0.000348344183294103,-0.999968945980072,0.00788199901580811,0.000397832685848698,-0.999999940395355,3.13254099637561e-006,0.00396279478445649,-0.99996018409729,0.0079985149204731,0.00404257513582706,-0.999991834163666,3.18312995659653e-005,0.00396310770884156,-0.999960482120514,0.0079673221334815,-0.00124510936439037,-0.999999225139618,-2.22044432871464e-016,-0.00156479387078434,-0.999968230724335,0.00782448146492243,-0.00156529655214399,-0.999968111515045,0.00783678982406855,-0.00159102666657418,-0.999968230724335,0.00782365445047617,
  923. -0.00126601022202522,-0.999999225139618,-2.22044432871464e-016,-0.00126642466057092,-0.999999284744263,9.97184724838007e-006,0.00148244365118444,-0.999998927116394,-2.22044366697015e-016,0.00148198683746159,-0.999998927116394,-2.33383743761806e-005,0.00148221547715366,-0.999998986721039,-1.16709879875998e-005,-5.51176453882363e-005,-1,8.6799445853103e-007,-5.51264420209918e-005,-1,4.34066492971397e-007,-5.51176453882363e-005,-1,8.6799445853103e-007,0.0112416604533792,0.000177034031366929,0.999936878681183,0.0112432548776269,8.85295667103492e-005,0.999936878681183,0.0112416604533792,0.000177034031366929,0.999936878681183,0.00961338542401791,7.56959489081055e-005,0.999953806400299,0.00961143895983696,0.00015136125148274,0.999953806400299,0.00961338542401791,7.56959489081055e-005,0.999953806400299,0.000316405959893018,-2.22044591690142e-016,0.999999940395355,0.000316397054120898,2.49131539931113e-006,0.999999940395355,0.000316397054120898,2.49131539931113e-006,0.999999940395355,0.000321375206112862,-2.22044591690142e-016,0.999999940395355,0.000321366009302437,2.5304409518867e-006,0.999999940395355,0.000321375206112862,-2.22044591690142e-016,0.999999940395355,0.00796126201748848,-6.26871042186394e-005,0.999968290328979,0.00796155910938978,-2.22037563963657e-016,0.999968290328979,0.00796155910938978,-2.22037563963657e-016,0.999968290328979,0.00749446311965585,-2.22038371291935e-016,0.999971926212311,0.00749419024214149,-5.90093732171226e-005,0.999971926212311,0.00749419024214149,-5.90093732171226e-005,0.999971926212311,-0.00364846573211253,-0.999993324279785,5.74561527173501e-005,-0.0036492480430752,-0.999993324279785,-2.22043122617374e-016,-0.00364846573211253,-0.999993324279785,5.74561527173501e-005,-0.00872787740081549,-0.999961912631989,-2.22036147830449e-016,-0.00872605480253696,-0.999961912631989,0.000137418188387528,-0.00872787740081549,-0.999961912631989,-2.22036147830449e-016,-0.0163931231945753,-0.999865651130676,-2.2201477348342e-016,-0.0163911450654268,-0.999865651130676,-0.000129064137581736,-0.0163931231945753,-0.999865651130676,-2.2201477348342e-016,
  924. 0.00318581215105951,-0.999994933605194,2.50851353484904e-005,0.00318618374876678,-0.999994933605194,-2.22043479959398e-016,0.00318581215105951,-0.999994933605194,2.50851353484904e-005,0.00630170665681362,-0.99998015165329,4.96197353641037e-005,0.00630160002037883,-0.99998015165329,-2.22040197706728e-016,0.00630170665681362,-0.99998015165329,4.96197353641037e-005,-0.000793488812632859,-0.999999701976776,-2.22044538750582e-016,-0.000793489452917129,-0.999999701976776,-6.24794847681187e-006,-0.000793488812632859,-0.999999701976776,-2.22044538750582e-016,0.057281170040369,-0.00786084309220314,-0.998327136039734,0.057281170040369,-0.00786084309220314,-0.998327136039734,0.057281170040369,-0.00786084309220314,-0.998327136039734,0.0593247525393963,-0.00785990431904793,-0.998207807540894,0.0593247525393963,-0.00785990431904793,-0.998207807540894,0.0593247525393963,-0.00785990431904793,-0.998207807540894,0.0376722142100334,-0.00786818284541368,-0.999259173870087,0.0376917012035847,2.21886845038605e-016,-0.999289512634277,0.0376722142100334,-0.00786818284541368,-0.999259173870087,0.0405148193240166,2.21862294318025e-016,-0.999178946018219,0.0404953509569168,-0.00786731392145157,-0.999148845672607,0.0405148193240166,2.21862294318025e-016,-0.999178946018219,0.0376974530518055,2.21886778864156e-016,-0.999289214611053,0.0376974530518055,2.21886778864156e-016,-0.999289214611053,0.0376974530518055,2.21886778864156e-016,-0.999289214611053,0.0388090461492538,2.21877329152838e-016,-0.999246656894684,0.0388090461492538,2.21877329152838e-016,-0.999246656894684,0.0388090461492538,2.21877329152838e-016,-0.999246656894684,-0.00521248579025269,0.999986410140991,8.20863933768123e-005,-0.00521366111934185,0.999986410140991,2.22041587370157e-016,-0.00521248579025269,0.999986410140991,8.20863933768123e-005,-0.00507894065231085,0.999987125396729,2.22041746188834e-016,-0.0050776144489646,0.999987125396729,7.9962432209868e-005,-0.00507894065231085,0.999987125396729,2.22041746188834e-016,0.00578957423567772,0.999983251094818,2.22040885920997e-016,
  925. 0.00578887155279517,0.999983251094818,4.55816661997233e-005,0.00578957423567772,0.999983251094818,2.22040885920997e-016,-0.0122221410274506,0.999925315380096,-9.62373305810615e-005,-0.0122235780581832,0.999925315380096,2.22028021608111e-016,-0.0122221410274506,0.999925315380096,-9.62373305810615e-005,-0.0115546341985464,0.999933242797852,2.22029781848454e-016,-0.0115545112639666,0.999933242797852,-9.09804075490683e-005,-0.0115545112639666,0.999933242797852,-9.09804075490683e-005,-0.00564192514866591,0.999984085559845,-4.44246106781065e-005,-0.00564197450876236,0.999984085559845,2.22041071209454e-016,-0.00564197450876236,0.999984085559845,2.22041071209454e-016,0.0106069352477789,0.00795684289187193,0.999912083148956,0.0106068383902311,0.00787332840263844,0.999912738800049,0.0106068383902311,0.00787332840263844,0.999912738800049,0.0132568525150418,0.00787307973951101,0.999881148338318,0.0132567211985588,0.00797745678573847,0.999880313873291,0.0132567211985588,0.00797745678573847,0.999880313873291,-0.021292382851243,-2.21994259404229e-016,0.999773263931274,-0.0213858801871538,0.00770358834415674,0.999741613864899,-0.0213858801871538,0.00770358834415674,0.999741613864899,-0.0115118324756622,0.00778261153027415,0.999903440475464,-0.0114175844937563,-2.22030125955589e-016,0.999934792518616,-0.0114175844937563,-2.22030125955589e-016,0.999934792518616,-0.0391887910664082,0.000308573158690706,0.99923187494278,-0.0391928479075432,-2.21873993960609e-016,0.9992316365242,-0.0391928479075432,-2.21873993960609e-016,0.9992316365242,-0.0386578477919102,-2.21878626172039e-016,0.999252498149872,-0.0386548824608326,0.000304369168588892,0.999252676963806,-0.0386548824608326,0.000304369168588892,0.999252676963806,-0.934698224067688,0.354755878448486,0.0220794882625341,-0.903108239173889,0.426424920558929,-0.050569087266922,-0.859950602054596,-0.197528094053268,0.470603495836258,-0.999542713165283,0.0188919715583324,0.02361124381423,-0.99869042634964,0.019782830029726,-0.0471822246909142,-0.997342228889465,0.0200499463826418,-0.0700462907552719,
  926. -0.998870372772217,-0.0055652316659689,-0.0471907258033752,-0.999706089496613,-0.00548595888540149,0.0236151050776243,-0.998871028423309,-0.0054534231312573,0.0471907593309879,-0.998801171779633,-0.013023104518652,0.0471874549984932,-0.998787224292755,-0.0140550993382931,-0.0471867993474007,-0.998801171779633,-0.013023104518652,0.0471874549984932,-0.999999225139618,-0.00124080223031342,-2.75513441020041e-019,-0.998885035514832,-0.00128205330111086,-0.0471914187073708,-0.998885154724121,-0.00119678652845323,0.0471914261579514,-0.998757362365723,0.0160392485558987,0.0471853911876678,-0.999865055084229,0.0164268724620342,3.64749840598627e-018,-0.998757362365723,0.0160392485558987,0.0471853911876678,-0.819897294044495,0.379100114107132,0.429012298583984,-0.982341527938843,0.187096476554871,4.15437632194916e-017,-0.976615786552429,0.209982946515083,0.0461393296718597,0.0206506177783012,0.999749004840851,0.00868505612015724,0.0205286964774132,0.999680161476135,0.014773135073483,0.0102739492431283,0.902468800544739,0.430632919073105,0.0184657741338015,0.999792575836182,0.00859938189387321,0.0184708777815104,0.999792456626892,-0.00859958212822676,0.0184625536203384,0.999719023704529,0.0148713607341051,0.281912624835968,0.959258735179901,-0.0186521410942078,0.281651765108109,0.959335625171661,0.0186424758285284,0.281857013702393,0.959448099136353,-0.00401268526911736,0.283071845769882,0.959090530872345,-0.00395922549068928,0.283087104558945,0.958912074565887,-0.0186956487596035,0.283087104558945,0.958912074565887,-0.0186956487596035,-0.0996992662549019,0.995006620883942,0.00469456380233169,-0.10029024630785,0.994950711727142,-0.00388582283630967,-0.101357042789459,0.994655966758728,-0.0196543056517839,0.000152605774928816,0.999969005584717,-0.00787978060543537,-0.000162477386766113,0.999969124794006,0.00786865595728159,-0.000162707918207161,0.999969005584717,0.00788017828017473,0.000309647992253304,0.999876320362091,-0.0157290138304234,-0.000162707918207161,0.999969005584717,0.00788017828017473,-0.000162477386766113,0.999969124794006,0.00786865595728159,
  927. 0.00742057338356972,0.999842941761017,-0.0160961374640465,0.00734735559672117,0.999944269657135,0.00758431106805801,0.00741829024627805,0.999854862689972,-0.0153368636965752,-0.429730147123337,0.378069370985031,-0.819997310638428,0.00773548288270831,0.186595693230629,-0.982406318187714,-0.0461105816066265,0.212799534201622,-0.976007282733917,-0.0471853911876678,0.0160393454134464,-0.998757362365723,0.00787270255386829,0.0164877250790596,-0.999833166599274,-0.0471853911876678,0.0160393454134464,-0.998757362365723,0.0471976771950722,-0.000793350685853511,-0.998885333538055,-0.0471914447844028,-0.000755580491386354,-0.998885571956635,0.00787376891821623,-0.000778454937972128,-0.999968707561493,-0.0471881106495857,-0.0119098983705044,-0.99881500005722,0.0472886301577091,-0.0128652863204479,-0.998798429965973,-0.0471881106495857,-0.0119098983705044,-0.99881500005722,0.0471822880208492,0.00116333132609725,-0.998885691165924,-0.0314906127750874,0.00129478354938328,-0.999503254890442,-0.0471914149820805,0.00132009561639279,-0.998884975910187,0.0469421856105328,0.00788545235991478,-0.998866558074951,-0.0315285995602608,0.00619719177484512,-0.999483704566956,0.0471280068159103,0.007889399304986,-0.998857736587524,-0.031108133494854,-0.0435366816818714,-0.998567402362823,0.0484659746289253,-0.0418744347989559,-0.997946739196777,-0.0454252436757088,-0.0438068695366383,-0.998006761074066,-0.00867046788334847,0.999756872653961,0.0202785208821297,-0.014790965244174,0.999687552452087,0.0201537776738405,-0.430387496948242,0.902591109275818,0.00979316234588623,-0.00858430564403534,0.999799728393555,0.018081421032548,0.00858473870903254,0.999799489974976,0.0180924627929926,-0.0148897273465991,0.999725759029388,0.0180760249495506,0.0173558015376329,0.968842506408691,0.247068852186203,-0.0173312835395336,0.969010055065155,0.246412590146065,0.00748321739956737,0.969008922576904,0.246912315487862,0.00656845793128014,0.962128877639771,0.272515892982483,0.00315132969990373,0.962157607078552,0.272475302219391,0.0183078721165657,0.961944580078125,0.272631019353867,
  928. 0.0195106267929077,0.992167949676514,-0.123378425836563,-0.010872102342546,0.992606341838837,-0.120891101658344,-0.0125696640461683,0.992603480815887,-0.120748773217201,-0.00836910773068666,0.999885618686676,-0.0125982146710157,-0.00836910773068666,0.999885618686676,-0.0125982146710157,-0.0152415623888373,0.99980217218399,-0.0127851460129023,0.814439594745636,-0.579091429710388,-0.0366243235766888,0.789597690105438,-0.612689316272736,0.033872477710247,0.797651171684265,-0.165052652359009,-0.580095052719116,0.999035775661469,0.0198183376342058,-0.0391760654747486,0.999034643173218,0.0198781844228506,0.0391755513846874,0.998269975185394,0.0198753420263529,0.0553357489407063,0.998902559280396,0.0257479399442673,0.0391241312026978,0.998909950256348,0.0254569780081511,-0.0391267128288746,0.999166905879974,0.0254905596375465,-0.0318712517619133,0.999383389949799,-0.0160627979785204,-0.0312236826866865,0.999117136001587,-0.0144519219174981,0.0394491143524647,0.999117136001587,-0.0144519219174981,0.0394491143524647,0.999484002590179,-0.00615292321890593,-0.0315282605588436,0.999204695224762,-0.006214982829988,0.0393877029418945,0.999488592147827,-0.00615308154374361,-0.0313830561935902,0.999193131923676,-0.00779722351580858,0.0393997058272362,0.999479532241821,-0.00681259157136083,-0.0315333157777786,0.999197959899902,-0.00779555318877101,0.0392771176993847,0.997987985610962,0.0104456534609199,0.0625363811850548,0.999168038368225,0.0104641728103161,0.0394197180867195,0.999451994895935,0.0104859843850136,-0.0313962362706661,0.79476261138916,-0.142284840345383,-0.590006232261658,0.96865177154541,0.242620810866356,0.0533758290112019,0.979265570640564,0.200455904006958,-0.0292646158486605,-0.99914276599884,0.0268967337906361,-0.0314690656960011,-0.998526751995087,0.0264430809766054,0.0473827049136162,-0.99855250120163,0.0269644968211651,-0.0465387515723705,-0.999499022960663,0.00327297183685005,-0.03148028627038,-0.99987131357193,0.00310235447250307,0.0157460048794746,-0.998880326747894,0.00298474985174835,0.0472146980464458,
  929. -0.999861061573029,0.00548882689327002,0.0157458446919918,-0.999488890171051,0.00558382412418723,-0.0314799658954144,-0.998870134353638,0.00561269419267774,-0.0471907183527946,-0.998070180416107,-0.0288040619343519,-0.0550117380917072,-0.999462246894836,-0.0287659950554371,0.0157395638525486,-0.998471319675446,-0.0288069527596235,-0.0471718721091747,-0.999826014041901,-0.00999861769378185,0.0157452914863825,-0.998433232307434,-0.010127111338079,-0.0550317540764809,-0.99982488155365,-0.00999844819307327,0.0158240012824535,-0.00254647480323911,2.22043890240982e-016,-0.999996781349182,-0.00254647480323911,2.22043890240982e-016,-0.999996781349182,-0.00254647480323911,2.22043890240982e-016,-0.999996781349182,-0.0037925282958895,2.22043003503365e-016,-0.999992787837982,-0.0037925282958895,2.22043003503365e-016,-0.999992787837982,-0.0037925282958895,2.22043003503365e-016,-0.999992787837982,0.00421610753983259,2.22042632926451e-016,-0.999991118907928,0.00421610753983259,2.22042632926451e-016,-0.999991118907928,0.00421610753983259,2.22042632926451e-016,-0.999991118907928,0.00317617319524288,2.22043479959398e-016,-0.999994933605194,0.00317617319524288,2.22043479959398e-016,-0.999994933605194,0.00317617319524288,2.22043479959398e-016,-0.999994933605194,-0.999999642372131,-1.8166150287038e-019,0.00081813067663461,-0.999999642372131,-1.8166150287038e-019,0.00081813067663461,-0.999999642372131,-1.8166150287038e-019,0.00081813067663461,-0.999998331069946,4.03573433401832e-019,-0.00181753316428512,-0.999998331069946,4.03573433401832e-019,-0.00181753316428512,-0.999998331069946,4.03573433401832e-019,-0.00181753316428512,-0.999998152256012,4.24090873014386e-019,-0.00190993549767882,-0.999998152256012,4.24090873014386e-019,-0.00190993549767882,-0.999998152256012,4.24090873014386e-019,-0.00190993549767882,-0.999985337257385,1.20300743552951e-018,-0.00541786383837461,-0.999985337257385,1.20300743552951e-018,-0.00541786383837461,-0.999985337257385,1.20300743552951e-018,-0.00541786383837461,0.000354560936102644,0.999999940395355,-2.79181858786615e-006,
  930. 0.000354578427504748,0.999999940395355,2.22044591690142e-016,0.000354560936102644,0.999999940395355,-2.79181858786615e-006,1.35405526827263e-018,1,2.22044604925031e-016,1.35399033459455e-018,1,2.22033950838742e-016,1.35405526827263e-018,1,2.22044604925031e-016,-0.00445765070617199,0.999990046024323,2.22042394698435e-016,-0.00445765070617199,0.999990046024323,2.22042394698435e-016,-0.00445765070617199,0.999990046024323,2.22042394698435e-016,-0.00412597367540002,0.999991476535797,2.2204271233579e-016,-0.00412597367540002,0.999991476535797,2.2204271233579e-016,-0.00412597367540002,0.999991476535797,2.2204271233579e-016,-0.000379799545044079,2.22044591690142e-016,-0.999999940395355,-0.000379799545044079,2.22044591690142e-016,-0.999999940395355,-0.000379799545044079,2.22044591690142e-016,-0.999999940395355,0.00121256068814546,2.22044446106354e-016,-0.999999284744263,0.00121256068814546,2.22044446106354e-016,-0.999999284744263,0.00121256068814546,2.22044446106354e-016,-0.999999284744263,-0.000254324986599386,2.22044604925031e-016,-1,-0.000254324986599386,2.22044604925031e-016,-1,-0.000254324986599386,2.22044604925031e-016,-1,-0.00280767027288675,-2.22043731422304e-016,0.999996066093445,-0.00280767027288675,-2.22043731422304e-016,0.999996066093445,-0.00280767027288675,-2.22043731422304e-016,0.999996066093445,0.0011414245236665,-2.22044459341244e-016,0.999999344348907,0.0011414245236665,-2.22044459341244e-016,0.999999344348907,0.0011414245236665,-2.22044459341244e-016,0.999999344348907,-0.000925936794374138,-2.22044512280803e-016,0.999999582767487,-0.000925936794374138,-2.22044512280803e-016,0.999999582767487,-0.000925936794374138,-2.22044512280803e-016,0.999999582767487,-0.99420177936554,-0.107530772686005,-2.38766279383472e-017,-0.994170367717743,-0.107536025345325,-0.00782811269164085,-0.994170367717743,-0.107536025345325,-0.00782811269164085,-0.999969005584717,-6.22253992332844e-006,-0.00787377171218395,-1,0,0,-1,0,0,-0.999969005584717,6.22253992332844e-006,0.00787377171218395,-1,0,0,-1,0,0,-0.999990940093994,0.00425027729943395,9.4375114377464e-019,
  931. -0.999959945678711,0.00425570504739881,0.00787370000034571,-0.999959945678711,0.00425570504739881,0.00787370000034571,-0.951230764389038,0.308389216661453,0.00749000627547503,-0.951230764389038,0.308389216661453,0.00749000627547503,-0.951230764389038,0.308389216661453,0.00749000627547503,-0.920285820960999,-0.39124670624733,-8.68742203169081e-017,-0.920518696308136,-0.390631556510925,0.00724817905575037,-0.920518696308136,-0.390631556510925,0.00724817905575037,-0.999912083148956,0.01067228987813,0.00787332374602556,-0.999941825866699,0.0107872122898698,2.39524229114658e-018,-0.999941825866699,0.0107872122898698,2.39524229114658e-018,-0.999981760978699,-0.00603986252099276,-1.34111888727534e-018,-0.999950766563416,-0.00603709137067199,-0.00787362828850746,-0.999950766563416,-0.00603709137067199,-0.00787362828850746,-0.992975950241089,0.118058040738106,-0.00781870819628239,-0.993007957935333,0.118047252297401,2.6211755498862e-017,-0.993007957935333,0.118047252297401,2.6211755498862e-017,-0.993632912635803,0.112394019961357,0.00782388169318438,-0.993663132190704,0.112399034202099,2.49575991433601e-017,-0.993663132190704,0.112399034202099,2.49575991433601e-017,-0.993144452571869,0.116893410682678,2.59555511933747e-017,-0.993116617202759,0.116868682205677,0.0078198155388236,-0.993116617202759,0.116868682205677,0.0078198155388236,-0.999875962734222,0.000354682531906292,0.0157460775226355,-0.999968945980072,0.000393362657632679,0.00787377078086138,-0.999875962734222,0.000354682531906292,0.0157460775226355,-0.999969005584717,-9.96395174297504e-005,0.00787377171218395,-0.999876022338867,-0.000111354005639441,0.0157460793852806,-0.999969005584717,-9.96395174297504e-005,0.00787377171218395,-0.999969005584717,-9.96395174297504e-005,0.00787377171218395,-1,-8.79174040164799e-005,-1.95215852408736e-020,-0.999969005584717,-9.96395174297504e-005,0.00787377171218395,-0.999993860721588,-0.00350462202914059,-7.78182413872084e-019,-0.99996292591095,-0.00348627124913037,0.00787372421473265,-0.999993860721588,-0.00350462202914059,-7.78182413872084e-019,
  932. -0.99995356798172,0.00555622205138206,-0.00787364970892668,-0.999984502792358,0.00556732015684247,1.23619340471725e-018,-0.99995356798172,0.00555622205138206,-0.00787364970892668,-1,8.99971055332571e-005,1.99833717425284e-020,-0.999969005584717,9.77669551502913e-005,-0.00787377171218395,-1,8.99971055332571e-005,1.99833717425284e-020,-1,8.99971055332571e-005,1.99833717425284e-020,-0.999969005584717,8.22216825326905e-005,0.00787377171218395,-1,8.99971055332571e-005,1.99833717425284e-020,-0.999968230724335,0.00125714356545359,0.00787376519292593,-0.999999225139618,0.00125109159853309,2.77798139721307e-019,-0.999968230724335,0.00125714356545359,0.00787376519292593,0.999990105628967,-9.86818302367213e-019,0.00444423453882337,0.999990105628967,-9.86818302367213e-019,0.00444423453882337,0.999990105628967,-9.86818302367213e-019,0.00444423453882337,0.999998331069946,-4.0417911055598e-019,0.00182026089169085,0.999998331069946,-4.0417911055598e-019,0.00182026089169085,0.999998331069946,-4.0417911055598e-019,0.00182026089169085,0.999998152256012,-4.23866500273231e-019,0.00190892501268536,0.999998152256012,-4.23866500273231e-019,0.00190892501268536,0.999998152256012,-4.23866500273231e-019,0.00190892501268536,0.999999344348907,-2.57534282665289e-019,0.00115983129944652,0.999999344348907,-2.57534282665289e-019,0.00115983129944652,0.999999344348907,-2.57534282665289e-019,0.00115983129944652,0.999999642372131,1.81660352572341e-019,-0.000818125496152788,0.999999642372131,1.81660352572341e-019,-0.000818125496152788,0.999999642372131,1.81660352572341e-019,-0.000818125496152788,0.999998331069946,-4.03570228076959e-019,0.00181751872878522,0.999998331069946,-4.03570228076959e-019,0.00181751872878522,0.999998331069946,-4.03570228076959e-019,0.00181751872878522,0.999998152256012,-4.24087486743753e-019,0.00190992024727166,0.999998152256012,-4.24087486743753e-019,0.00190992024727166,0.999998152256012,-4.24087486743753e-019,0.00190992024727166,0.999985337257385,-1.20316087753313e-018,0.00541855487972498,0.999985337257385,-1.20316087753313e-018,0.00541855487972498,
  933. 0.999985337257385,-1.20316087753313e-018,0.00541855487972498,0.999968528747559,-0.00793516263365746,-1.76196005200634e-018,0.999937295913696,-0.0079617528244853,-0.00787352211773396,0.999937295913696,-0.0079617528244853,-0.00787352211773396,0.999969005584717,5.02674902236322e-006,-0.00787377171218395,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.99999475479126,-0.00323047488927841,-7.17309520510059e-019,0.99999475479126,-0.00323047488927841,-7.17309520510059e-019,0.99999475479126,-0.00323047488927841,-7.17309520510059e-019,0.999940752983093,-2.41749344962426e-018,0.0108874225988984,0.999940752983093,-2.41749344962426e-018,0.0108874225988984,0.999940752983093,-2.41749344962426e-018,0.0108874225988984,0.99797511100769,-1.41233860034876e-017,0.0636060759425163,0.99797511100769,-1.41233860034876e-017,0.0636060759425163,0.99797511100769,-1.41233860034876e-017,0.0636060759425163,0.999635756015778,5.99332761567592e-018,-0.0269915480166674,0.999635756015778,5.99332761567592e-018,-0.0269915480166674,0.999635756015778,5.99332761567592e-018,-0.0269915480166674,0.999941825866699,-0.00787355750799179,0.00737336790189147,0.999972641468048,-1.64331753674786e-018,0.00740084424614906,0.999941825866699,-0.00787355750799179,0.00737336790189147,0.999978065490723,-1.47033928480957e-018,0.00662181945517659,0.999947071075439,-0.00787359941750765,0.00662102503702044,0.999978065490723,-1.47033928480957e-018,0.00662181945517659,0.999978125095367,-1.46783210037292e-018,0.00661052810028195,0.999947190284729,0.00787360034883022,0.00660927826538682,0.999978125095367,-1.46783210037292e-018,0.00661052810028195,0.999964892864227,0.00787373911589384,0.00287390127778053,0.999995827674866,-6.41983868991566e-019,0.00289123831316829,0.999964892864227,0.00787373911589384,0.00287390127778053,0.999999284744263,2.61059157749319e-019,-0.00117570592556149,0.999968290328979,-0.0078737661242485,-0.00118365709204227,0.999968290328979,-0.0078737661242485,-0.00118365709204227,0.999966979026794,-0.00787375587970018,-0.0019999872893095,0.999997973442078,4.43899444691376e-019,-0.00199914537370205,
  934. 0.999997973442078,4.43899444691376e-019,-0.00199914537370205,0.999967038631439,0.00787375587970018,-0.00198567798361182,0.999998033046722,4.40555411968765e-019,-0.00198408518917859,0.999998033046722,4.40555411968765e-019,-0.00198408518917859,0.999999105930328,-2.97081503408114e-019,0.00133793614804745,0.999968111515045,0.00787376426160336,0.00133118557278067,0.999968111515045,0.00787376426160336,0.00133118557278067,0.999999463558197,0.00104246672708541,2.31474112563171e-019,0.999999463558197,0.00104246672708541,2.31474112563171e-019,0.999999463558197,0.00104246672708541,2.31474112563171e-019,1,-8.79174040164799e-005,-1.95215852408736e-020,1,-8.79174040164799e-005,-1.95215852408736e-020,1,-8.79174040164799e-005,-1.95215852408736e-020,1,-8.79174040164799e-005,-1.95215852408736e-020,0.999969005584717,-9.16787321330048e-005,0.00787377171218395,1,-8.79174040164799e-005,-1.95215852408736e-020,0.999891221523285,0.0124727413058281,0.00787315890192986,0.999923586845398,0.0123627353459597,2.74507868568633e-018,0.999891221523285,0.0124727413058281,0.00787315890192986,0.999947607517242,-0.00654426403343678,0.00787360314279795,0.999978601932526,-0.00654352828860283,-1.45295515365858e-018,0.999947607517242,-0.00654426403343678,0.00787360314279795,0.992997527122498,0.118135042488575,2.62312488371774e-017,0.992965757846832,0.118143700063229,0.00781862810254097,0.992997527122498,0.118135042488575,2.62312488371774e-017,0.993653833866119,0.112481214106083,2.4975846747673e-017,0.993623673915863,0.112476393580437,-0.00782380905002356,0.993653833866119,0.112481214106083,2.4975846747673e-017,0.992972731590271,0.118084922432899,-0.00781868305057287,0.993000566959381,0.118109792470932,2.62256422069855e-017,0.992972731590271,0.118084922432899,-0.00781868305057287,0.999732971191406,-0.021726232022047,-0.00787191279232502,0.999763548374176,-0.0217454135417938,-4.82845175881904e-018,0.999732971191406,-0.021726232022047,-0.00787191279232502,1,-0.000175834793481044,-3.9043167250573e-020,0.999969005584717,-0.00019006356887985,-0.00787377171218395,
  935. 1,-0.000175834793481044,-3.9043167250573e-020,1,-0.000175834793481044,-3.9043167250573e-020,0.999969005584717,-0.000161595133249648,0.00787377171218395,1,-0.000175834793481044,-3.9043167250573e-020,0.999965310096741,-0.00270935194566846,0.00787374284118414,0.999996364116669,-0.00268854177556932,-5.96976196380732e-019,0.999965310096741,-0.00270935194566846,0.00787374284118414,0.999955236911774,0.00524262618273497,0.0078736636787653,0.999986171722412,0.00525838928297162,1.16759697087945e-018,0.999955236911774,0.00524262618273497,0.0078736636787653,1,8.99971055332571e-005,1.99833717425284e-020,0.999969005584717,9.64825812843628e-005,0.00787377171218395,1,8.99971055332571e-005,1.99833717425284e-020,1,8.99971055332571e-005,1.99833717425284e-020,0.999969005584717,8.35060418467037e-005,-0.00787377171218395,1,8.99971055332571e-005,1.99833717425284e-020,0.999966859817505,0.00207493407651782,-0.00787375494837761,0.999997854232788,0.00206980784423649,4.59589665044223e-019,0.999966859817505,0.00207493407651782,-0.00787375494837761,-0.0475764684379101,0.0168518144637346,0.998725473880768,-0.0475512593984604,0.017225556075573,0.998720288276672,-0.0481551885604858,0.00824378803372383,0.99880588054657,-0.0620506927371025,-2.2161672093777e-016,0.998072981834412,-0.0621416941285133,0.017183180898428,0.99791944026947,-0.0620971918106079,0.00834749918431044,0.998035192489624,-0.0262758918106556,-2.21967935208415e-016,0.999654710292816,-0.0262735784053802,0.0163611210882664,0.999520897865295,-0.0262758918106556,-2.21967935208415e-016,0.999654710292816,0.0032819639891386,0.0156684871762991,0.999871850013733,0.00270457612350583,0.00785244815051556,0.99996554851532,0.0032800599001348,0.015642711892724,0.999872267246246,-0.0321712195873261,0.0164976883679628,0.999346256256104,-0.0318474434316158,-2.21931976012826e-016,0.999492764472961,-0.032007921487093,0.00812175218015909,0.999454617500305,-0,-2.22044604925031e-016,1,0,0.0157460793852806,0.999876022338867,-0,-2.22044604925031e-016,1,-0.023612042888999,-0.999576508998871,0.0170083772391081,
  936. -0.0394643507897854,-0.999083876609802,0.0165535975247622,-0.023612042888999,-0.999576508998871,0.0170083772391081,-0.0394756309688091,-0.999056160449982,0.0181244984269142,-0.0236117262393236,-0.999563038349152,0.0177821330726147,-0.0394756309688091,-0.999056160449982,0.0181244984269142,-0.0395607985556126,-0.998752892017365,0.0304572992026806,-0.0552485026419163,-0.998006165027618,0.0305170565843582,-0.0395607985556126,-0.998752892017365,0.0304572992026806,-0.0550574921071529,-0.998478889465332,0.00294942012988031,-0.0393645353615284,-0.99921989440918,0.00319669675081968,-0.0550574921071529,-0.998478889465332,0.00294942012988031,-0.0584702715277672,0.0180205069482327,0.998126566410065,-0.0574707388877869,0.0262899808585644,0.998001039028168,-0.0595238655805588,0.0092657906934619,0.998183965682983,-0.0588475577533245,-2.21659800504072e-016,0.998266994953156,-0.0590895339846611,0.0180443059653044,0.998089611530304,-0.0589740388095379,0.00925306044518948,0.99821662902832,-0.0663468614220619,-2.21555377223543e-016,0.997796714305878,-0.0663410350680351,0.0183225385844707,0.997628808021545,-0.0663468614220619,-2.21555377223543e-016,0.997796714305878,0.00408177636563778,0.0155852865427732,0.999870240688324,0.00303322076797485,0.00780208967626095,0.999965012073517,0.00513080274686217,0.0233728848397732,0.999713659286499,-0.00130113877821714,0.0157972779124975,0.999874413013458,-0.000399053154978901,-0.00787377078086138,0.999968945980072,-0.00100012379698455,0.00789739191532135,0.999968349933624,-0,-0.00787377171218395,0.999969005584717,0,0.0157460793852806,0.999876081943512,-0,-0.00787377171218395,0.999969005584717,0.0475765019655228,0.0168518144637346,-0.998725473880768,0.0475512892007828,0.0172255579382181,-0.998720288276672,0.0481552183628082,0.00824378803372383,-0.99880588054657,0.0621007792651653,0.0083475261926651,-0.998035073280334,0.0620542764663696,2.216166812331e-016,-0.998072803020477,0.0621452778577805,0.0171832628548145,-0.997919201850891,0.0262735784053802,0.0163611210882664,-0.999520897865295,0.0262758918106556,2.21967935208415e-016,-0.999654710292816,
  937. 0.0262758918106556,2.21967935208415e-016,-0.999654710292816,0.023612042888999,-0.999576508998871,-0.017008388414979,0.0394643507897854,-0.999083876609802,-0.0165536105632782,0.023612042888999,-0.999576508998871,-0.017008388414979,0.0394756309688091,-0.999056160449982,-0.0181244853883982,0.0236117262393236,-0.999563038349152,-0.0177821200340986,0.0394756309688091,-0.999056160449982,-0.0181244853883982,0.0395607985556126,-0.998752892017365,-0.0304572843015194,0.0552485026419163,-0.998006165027618,-0.030517041683197,0.0395607985556126,-0.998752892017365,-0.0304572843015194,0.0550574921071529,-0.998478889465332,-0.00294942012988031,0.0393645353615284,-0.99921989440918,-0.00319669675081968,0.0550574921071529,-0.998478889465332,-0.00294942012988031,0.0584725104272366,0.0180205944925547,-0.998126447200775,0.0574729703366756,0.0262900833040476,-0.998000919818878,0.059526115655899,0.00926584377884865,-0.998183846473694,0.0589743852615356,0.00925306975841522,-0.998216688632965,0.0588479153811932,2.21659813738961e-016,-0.9982670545578,0.059089869260788,0.0180443190038204,-0.998089611530304,0.0663410648703575,0.0183225404471159,-0.997628808021545,0.0663468912243843,2.21555377223543e-016,-0.997796714305878,0.0663468912243843,2.21555377223543e-016,-0.997796714305878,0.0201593209058046,-0.0623804219067097,0.997848868370056,0.0199397671967745,-0.0545540377497673,0.998311698436737,0.0201593209058046,-0.0623804219067097,0.997848868370056,0.0140731642022729,-0.0546976923942566,0.998403787612915,0.0142512191087008,-0.0625258311629295,0.997941672801971,0.0140731642022729,-0.0546976923942566,0.998403787612915,0.0140731642022729,-0.0546976923942566,0.998403787612915,0.0137140229344368,-0.0390124507248402,0.999144673347473,0.0140731642022729,-0.0546976923942566,0.998403787612915,0.192999258637428,-0.0340475775301456,0.98060804605484,0.193374186754227,-0.0494411624968052,0.979878544807434,0.192999258637428,-0.0340475775301456,0.98060804605484,0.000553434307221323,0.00788684375584126,-0.999968826770782,3.34536503032723e-006,1.84390188451289e-007,-1,
  938. 0.000553434307221323,0.00788684375584126,-0.999968826770782,-0.00024911283981055,0.00786788854748011,-0.999969065189362,0.00129309936892241,7.12731925887056e-005,-0.999999165534973,-0.000248342897975817,0.00786399655044079,-0.999969124794006,0.0973297953605652,0.00536463363096118,-0.995237827301025,0.0973297953605652,0.00536463363096118,-0.995237827301025,0.0971051305532455,0.0116593027487397,-0.995205819606781,2.22794574256113e-006,8.77143975230865e-008,-1,0.000552360957954079,0.00788681861013174,-0.999968826770782,0.000552360957954079,0.00788681861013174,-0.999968826770782,-0.00501722656190395,0.00775516266003251,-0.999957323074341,-0.00413697073236108,-0.000162872849614359,-0.999991416931152,-0.00412977114319801,-0.000227625176194124,-0.999991536140442,0.0807572305202484,0.0044511859305203,-0.99672394990921,0.0807602405548096,0.00317953666672111,-0.996728539466858,0.0807737186551094,-0.00339614739641547,-0.99672669172287,0.000561253866180778,0.00788702815771103,-0.999968826770782,1.11520112113794e-005,6.14677787780238e-007,-1,0.000561253866180778,0.00788702815771103,-0.999968826770782,0.0300281252712011,0.0085795009508729,-0.999512255191803,0.0314693637192249,0.00173453171737492,-0.999503195285797,0.0299293212592602,0.00904848612844944,-0.999511122703552,0.0984232649207115,0.00542490370571613,-0.995129942893982,0.0984232649207115,0.00542490370571613,-0.995129942893982,0.0982262939214706,0.0117025729268789,-0.995095312595367,1.11389344965573e-005,4.38540723735059e-007,-1,0.000561222725082189,0.00788702815771103,-0.999968826770782,0.000561222725082189,0.00788702815771103,-0.999968826770782,0.0151965962722898,0.00823181495070457,-0.999850749969482,0.0160715449601412,0.000632737937849015,-0.999870657920837,0.0160426031798124,0.000884237932041287,-0.999871015548706,-0.0102529358118773,-0.000565122405532748,-0.999947369098663,-0.0102525847032666,-0.000403645040933043,-0.999947369098663,-0.0102696903049946,-0.00843936577439308,-0.999911725521088,0.987296521663666,0.15809440612793,0.0158707592636347,0.994598150253296,0.102486595511436,0.0164633765816689,
  939. 0.987296521663666,0.15809440612793,0.0158707592636347,0.994697690010071,0.10256789624691,0.00751456571742892,0.987403571605682,0.158044546842575,0.00749794719740748,0.994697690010071,0.10256789624691,0.00751456571742892,0.994448840618134,0.10241012275219,0.0241588652133942,0.998644948005676,0.046634454280138,0.0230979602783918,0.994448840618134,0.10241012275219,0.0241588652133942,0.998572945594788,0.0465587303042412,0.0261597502976656,0.994364082813263,0.102374374866486,0.0275605767965317,0.998572945594788,0.0465587303042412,0.0261597502976656,0.165618941187859,-0.985827028751373,-0.0267490334808826,0.110392697155476,-0.9935342669487,-0.0265203099697828,0.165618941187859,-0.985827028751373,-0.0267490334808826,0.110343858599663,-0.993094682693481,-0.0398420169949532,0.165548041462898,-0.985405027866364,-0.039633359760046,0.110343858599663,-0.993094682693481,-0.0398420169949532,0.110391221940517,-0.993520975112915,-0.0270188171416521,0.0708748623728752,-0.997118771076202,-0.0270387064665556,0.110391221940517,-0.993520975112915,-0.0270188171416521,0.0708466246724129,-0.997235774993896,-0.0223991647362709,0.11040498316288,-0.993644893169403,-0.0219228472560644,0.0708466246724129,-0.997235774993896,-0.0223991647362709,-0.00171051803044975,0.00775977503508329,-0.999968469142914,0.00169020658358932,-0.00772931659594178,-0.999968707561493,0.00169020658358932,-0.00772931659594178,-0.999968707561493,0.00075409485725686,-0.00787909422069788,-0.999968707561493,-0.00075653987005353,0.00785820465534925,-0.999968886375427,-0.00075653987005353,0.00785820465534925,-0.999968886375427,-0.00075653987005353,0.00785820465534925,-0.999968886375427,-0.00150686898268759,0.0156748909503222,-0.999876081943512,-0.00075653987005353,0.00785820465534925,-0.999968886375427,0,0.0157460812479258,-0.999876081943512,5.82076609134674e-011,0.0079362578690052,-0.999968588352203,0,0.0157460812479258,-0.999876081943512,0.0398626737296581,-0.999141037464142,0.0113199250772595,0.0507917404174805,-0.998696446418762,-0.00506420712918043,0.00213143648579717,-0.997705280780792,0.0676731020212173,
  940. -0.00941946730017662,-0.999922275543213,0.00817007943987846,-0.00924464873969555,-0.999922156333923,-0.00838295090943575,-0.00940780993551016,-0.999930918216705,0.00705862231552601,0.309186816215515,-0.950953364372253,0.00955397076904774,0.3094103038311,-0.950925946235657,-0.00225760089233518,0.309629499912262,-0.950704097747803,-0.0170661918818951,-0.362822711467743,-0.931457281112671,-0.0273324120789766,-0.363331913948059,-0.931444585323334,0.0200261678546667,-0.363308668136597,-0.930864989757538,0.0386950969696045,0.303330719470978,-0.127153903245926,-0.944363474845886,0.897906422615051,-0.437395632266998,-0.0494909062981606,0.898514568805695,-0.438240051269531,-0.0248489640653133,0.0076193786226213,-0.999950110912323,0.00645779818296433,-0.0236867386847734,-0.999519169330597,-0.0200090873986483,-1.7998358089244e-005,-1,9.92035438684979e-007,-1.7998358089244e-005,-1,9.92035438684979e-007,-0.00649858126416802,-0.999963879585266,-0.00547783588990569,0.0076193786226213,-0.999950110912323,0.00645779818296433,-0.0396053083240986,0.0372742190957069,0.998519897460938,-0.995458781719208,-0.00858732964843512,0.0948055908083916,-0.212366983294487,0.034332312643528,0.976586699485779,-0.995493292808533,0.00211006007157266,0.0948088839650154,-0.039367314428091,0.00355628132820129,0.99921852350235,-0.999719083309174,0.00186929584015161,0.0236301310360432,-0.999718010425568,0.00234131282195449,0.0236338227987289,-0.99691104888916,0.00260128942318261,-0.0784969329833984,-0.995493173599243,0.00214527756907046,0.0948088690638542,-0.996912717819214,-0.00184375257231295,-0.0784970670938492,-0.999717533588409,-0.00288627413101494,0.0235926490277052,-0.996911525726318,-0.00184360309503973,-0.0785114914178848,-0.996913850307465,-0.00107350025791675,-0.0784971565008163,-0.999226033687592,-0.000506156124174595,-0.0393356196582317,-0.995494484901428,0.00143649347592145,0.0948089957237244,-0.996912777423859,0.00175356201361865,-0.0784970745444298,-0.0314906127750874,0.00129478354938328,-0.999503254890442,-0.99922388792038,0.00170874129980803,-0.0393529795110226,
  941. -0.0471905060112476,0.00635526655241847,-0.99886566400528,-0.996913731098175,-0.00109671533573419,-0.0784971490502357,-0.996913075447083,-0.0010966588743031,-0.0785057246685028,0,-0,-0,0,-0,-0,0,-0,-0,-0.999943912029266,0.0105938035994768,2.3522969348992e-018,-0.999912798404694,0.0106044504791498,0.00787332933396101,-0.999912798404694,0.0106044504791498,0.00787332933396101,-0.999969005584717,5.66891731068608e-006,0.00787377171218395,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.998831570148468,-0.0483264587819576,-1.07306294476656e-017,-0.998831570148468,-0.0483264587819576,-1.07306294476656e-017,-0.998831570148468,-0.0483264587819576,-1.07306294476656e-017,-0.999685645103455,-0.0195176135748625,0.0157430823892355,-0.999811887741089,-0.0193951185792685,-4.3065814424078e-018,-0.999685645103455,-0.0195176135748625,0.0157430823892355,-1,0,-0,-0.999876022338867,6.495276466012e-006,0.0157460793852806,-1,0,-0,-1,0,-0,-0.999721109867096,-9.74140584730776e-006,-0.0236154589802027,-1,0,-0,-0.999719500541687,-0.00185086124110967,-0.0236154217272997,-0.999998509883881,-0.00172660185489804,-3.83382626733661e-019,-0.999719500541687,-0.00185086124110967,-0.0236154217272997,-0.999984741210938,1.22743159747636e-018,-0.0055278604850173,-0.999984741210938,1.22743159747636e-018,-0.0055278604850173,-0.999984741210938,1.22743159747636e-018,-0.0055278604850173,-0.999984562397003,1.23327873043134e-018,-0.00555419363081455,-0.999984562397003,1.23327873043134e-018,-0.00555419363081455,-0.999984562397003,1.23327873043134e-018,-0.00555419363081455,-0.999984622001648,1.232188506384e-018,-0.00554928369820118,-0.999984622001648,1.232188506384e-018,-0.00554928369820118,-0.999984622001648,1.232188506384e-018,-0.00554928369820118,-0.999997138977051,5.28617835462985e-019,-0.0023806830868125,-0.999997138977051,5.28617835462985e-019,-0.0023806830868125,-0.999997138977051,5.28617835462985e-019,-0.0023806830868125,-0.999998211860657,-4.20667456802364e-019,0.00189451780170202,-0.999998211860657,-4.20667456802364e-019,0.00189451780170202,-0.999998211860657,-4.20667456802364e-019,0.00189451780170202,
  942. -0.999998688697815,3.56980831038558e-019,-0.00160769873764366,-0.999998688697815,3.56980831038558e-019,-0.00160769873764366,-0.999998688697815,3.56980831038558e-019,-0.00160769873764366,-0.999998688697815,3.57329435967961e-019,-0.00160926871467382,-0.999998688697815,3.57329435967961e-019,-0.00160926871467382,-0.999998688697815,3.57329435967961e-019,-0.00160926871467382,-0.999999761581421,-1.51278499811757e-019,0.000681297795381397,-0.999999761581421,-1.51278499811757e-019,0.000681297795381397,-0.999999761581421,-1.51278499811757e-019,0.000681297795381397,-0.999927222728729,-0.00914238393306732,-0.00787344295531511,-0.999957621097565,-0.00920567102730274,-2.04406958632724e-018,-0.999927222728729,-0.00914238393306732,-0.00787344295531511,-1,0,-0,-0.999969005584717,-5.18177375852247e-006,-0.00787377171218395,-1,0,-0,-1,0,-0,-0.999969005584717,5.18177375852247e-006,0.00787377171218395,-1,0,-0,-0.999969005584717,4.214869113639e-005,0.00787377171218395,-1,4.75205451948568e-005,1.05516806836141e-020,-0.999969005584717,4.214869113639e-005,0.00787377171218395,-0.999994277954102,-7.50546774895782e-019,0.00338016217574477,-0.999994277954102,-7.50546774895782e-019,0.00338016217574477,-0.999994277954102,-7.50546774895782e-019,0.00338016217574477,-0.999991357326508,-9.23058703763743e-019,0.00415708683431149,-0.999991357326508,-9.23058703763743e-019,0.00415708683431149,-0.999991357326508,-9.23058703763743e-019,0.00415708683431149,-0.999989986419678,-9.93158021376973e-019,0.00447278609499335,-0.999989986419678,-9.93158021376973e-019,0.00447278609499335,-0.999989986419678,-9.93158021376973e-019,0.00447278609499335,-0.999995410442352,6.70621068593305e-019,-0.00302020879462361,-0.999995410442352,6.70621068593305e-019,-0.00302020879462361,-0.999995410442352,6.70621068593305e-019,-0.00302020879462361,0.00933597702533007,0.00787342898547649,-0.999925434589386,0.00933597702533007,0.00787342898547649,-0.999925434589386,0.00933597702533007,0.00787342898547649,-0.999925434589386,0.00872836355119944,0.00787347182631493,-0.999930918216705,0.00872836355119944,0.00787347182631493,-0.999930918216705,
  943. 0.00872836355119944,0.00787347182631493,-0.999930918216705,-0.0057976390235126,0.00787363946437836,-0.99995219707489,-0.00579594168812037,2.22040872686107e-016,-0.999983191490173,-0.0057976390235126,0.00787363946437836,-0.99995219707489,-0.00473408121615648,2.22042116765749e-016,-0.999988794326782,-0.00472883880138397,0.00787368323653936,-0.999957799911499,-0.00473408121615648,2.22042116765749e-016,-0.999988794326782,-0.999995708465576,2.3044116460369e-005,0.00292660272680223,-0.999995708465576,2.3044116460369e-005,0.00292660272680223,-0.999995708465576,2.3044116460369e-005,0.00292660272680223,-0.999918222427368,-0.000100763318187092,-0.0127969412133098,-0.999918222427368,-0.000100763318187092,-0.0127969412133098,-0.999918222427368,-0.000100763318187092,-0.0127969412133098,-0.999928414821625,2.65704454142931e-018,-0.0119662648066878,-0.999928414821625,-9.42182741709985e-005,-0.0119657209143043,-0.999928414821625,-9.42182741709985e-005,-0.0119657209143043,-0.999546647071838,-0.000237070140428841,-0.0301079079508781,-0.999546647071838,6.68537669463983e-018,-0.0301082599908113,-0.999546647071838,6.68537669463983e-018,-0.0301082599908113,-0.00268022180534899,-0.999996423721313,2.11041096918052e-005,-0.00268034171313047,-0.999996423721313,-2.22043810831643e-016,-0.00268022180534899,-0.999996423721313,2.11041096918052e-005,-0.00239442638121545,-0.999997138977051,-2.22043969650321e-016,-0.00239431951195002,-0.999997138977051,1.88529102160828e-005,-0.00239442638121545,-0.999997138977051,-2.22043969650321e-016,-0.00224174419417977,-0.999997496604919,-2.2204404905966e-016,-0.00224174419417977,-0.999997496604919,-2.2204404905966e-016,-0.00224174419417977,-0.999997496604919,-2.2204404905966e-016,-0.00208290247246623,-0.999997854232788,-2.22044128468998e-016,-0.00208290247246623,-0.999997854232788,-2.22044128468998e-016,-0.00208290247246623,-0.999997854232788,-2.22044128468998e-016,0.99985533952713,-0.00643464643508196,0.0157457534223795,0.999979138374329,-0.00646010879427195,-1.43443230499683e-018,0.999979138374329,-0.00646010879427195,-1.43443230499683e-018,
  944. 1,0,0,0.999876022338867,-4.96697657581535e-006,0.0157460793852806,0.999876022338867,-4.96697657581535e-006,0.0157460793852806,0.999876022338867,-4.96697657581535e-006,0.0157460793852806,0.999504387378693,-9.93026060314151e-006,0.0314804539084435,0.999876022338867,-4.96697657581535e-006,0.0157460793852806,0.999501407146454,-0.00245284358970821,0.031480360776186,0.999873220920563,-0.00236373813822865,0.015746034681797,0.999501407146454,-0.00245284358970821,0.031480360776186,-0.006171690300107,-0.999980926513672,-2.22040369760295e-016,-0.006171690300107,-0.999980926513672,-2.22040369760295e-016,-0.006171690300107,-0.999980926513672,-2.22040369760295e-016,-0.00800573360174894,-0.999967932701111,-2.22037484554318e-016,-0.00800573360174894,-0.999967932701111,-2.22037484554318e-016,-0.00800573360174894,-0.999967932701111,-2.22037484554318e-016,0.00732524693012238,-0.999973177909851,-2.22038649224621e-016,0.00732524693012238,-0.999973177909851,-2.22038649224621e-016,0.00732524693012238,-0.999973177909851,-2.22038649224621e-016,0.00488037150353193,-0.999988079071045,-2.22041957947071e-016,0.00488037150353193,-0.999988079071045,-2.22041957947071e-016,0.00488037150353193,-0.999988079071045,-2.22041957947071e-016,0.999910771846771,-0.013358760625124,-2.96624072529372e-018,0.999910771846771,-0.013358760625124,-2.96624072529372e-018,0.999910771846771,-0.013358760625124,-2.96624072529372e-018,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999582767487,-0.000887085858266801,-1.96972628933434e-019,0.999999582767487,-0.000887085858266801,-1.96972628933434e-019,0.999999582767487,-0.000887085858266801,-1.96972628933434e-019,0.99998927116394,-1.02994284661478e-018,0.00463845022022724,0.99998927116394,-1.02994284661478e-018,0.00463845022022724,0.99998927116394,-1.02994284661478e-018,0.00463845022022724,0.999995112419128,-6.94270369101349e-019,0.00312671577557921,0.999995112419128,-6.94270369101349e-019,0.00312671577557921,0.999995112419128,-6.94270369101349e-019,0.00312671577557921,0.999995887279511,-6.35338661841833e-019,0.00286131096072495,
  945. 0.999995887279511,-6.35338661841833e-019,0.00286131096072495,0.999995887279511,-6.35338661841833e-019,0.00286131096072495,0.999960720539093,-1.96741165703466e-018,0.00886043440550566,0.999960720539093,-1.96741165703466e-018,0.00886043440550566,0.999960720539093,-1.96741165703466e-018,0.00886043440550566,0.999945878982544,-2.31073938092454e-018,0.0104066450148821,0.999945878982544,-2.31073938092454e-018,0.0104066450148821,0.999945878982544,-2.31073938092454e-018,0.0104066450148821,0.999946534633636,-2.29663450391444e-018,0.0103431222960353,0.999946534633636,-2.29663450391444e-018,0.0103431222960353,0.999946534633636,-2.29663450391444e-018,0.0103431222960353,0.999946534633636,-2.29663450391444e-018,0.0103431222960353,0.999946534633636,-2.29663450391444e-018,0.0103431222960353,0.999946534633636,-2.29663450391444e-018,0.0103431222960353,0.999960541725159,-1.97196280476493e-018,0.00888093095272779,0.999960541725159,-1.97196280476493e-018,0.00888093095272779,0.999960541725159,-1.97196280476493e-018,0.00888093095272779,-0.00736633967608213,0.00787355843931437,0.999941885471344,-0.00736633967608213,0.00787355843931437,0.999941885471344,-0.00736633967608213,0.00787355843931437,0.999941885471344,-0.00623760931193829,0.00787361897528172,0.99994957447052,-0.00623760931193829,0.00787361897528172,0.99994957447052,-0.00623760931193829,0.00787361897528172,0.99994957447052,0.00392168993130326,0.0078737111762166,0.999961316585541,0.00392002006992698,-2.22042897624247e-016,0.999992311000824,0.00392168993130326,0.0078737111762166,0.999961316585541,0.0041552628390491,-2.2204268586601e-016,0.999991357326508,0.00414995802566409,0.00787370372563601,0.999960422515869,0.0041552628390491,-2.2204268586601e-016,0.999991357326508,0.00731158209964633,0.00787356123328209,-0.999942302703857,0.00731158209964633,0.00787356123328209,-0.999942302703857,0.00731158209964633,0.00787356123328209,-0.999942302703857,0.00817615445703268,0.00787350814789534,-0.999935567378998,0.00817615445703268,0.00787350814789534,-0.999935567378998,0.00817615445703268,0.00787350814789534,-0.999935567378998,
  946. -0.00382953532971442,0.00787371397018433,-0.999961674213409,-0.00382937886752188,2.22042977033586e-016,-0.999992668628693,-0.00382953532971442,0.00787371397018433,-0.999961674213409,-0.00296131055802107,2.22043625543186e-016,-0.999995589256287,-0.00295613473281264,0.00787373725324869,-0.999964654445648,-0.00296131055802107,2.22043625543186e-016,-0.999995589256287,-6.67371714371257e-005,0.0823495388031006,0.996603488922119,-0.00457155145704746,0.0831872820854187,0.996523439884186,-6.67371714371257e-005,0.0823495388031006,0.996603488922119,-0.00462958868592978,0.0817370861768723,0.99664318561554,-0.000126074053696357,0.0817307606339455,0.996654510498047,-0.00462958868592978,0.0817370861768723,0.99664318561554,-0.00784708745777607,0.0822590887546539,0.996580123901367,-0.00460872426629066,0.0822584927082062,0.996600389480591,-0.00460872426629066,0.0822584927082062,0.996600389480591,-0.00787377171218395,-4.00395992983249e-006,0.999969005584717,-0.00787393003702164,-4.0039885789156e-006,0.999969005584717,-0.00787377171218395,-4.00395992983249e-006,0.999969005584717,5.18622620404585e-008,1.317301553172e-006,1,3.1083107643326e-008,1.3158515912437e-006,1,3.1083107643326e-008,1.3158515912437e-006,1,6.18278619413104e-008,1.30868977521459e-006,1,3.0995948918644e-008,1.31216188492544e-006,1,5.15687048618929e-008,1.30984506085952e-006,1,5.15687048618929e-008,1.30984506085952e-006,1,7.20689286026754e-008,1.30753630855907e-006,1,6.18278619413104e-008,1.30868977521459e-006,1,1.22386781388427e-017,0,1,8.74191437434009e-018,-2.58493941422821e-026,1,1.22386781388427e-017,0,1,-0.000547765055671334,0.00789533648639917,0.999968767166138,-0.00164701079484075,0.0236543100327253,0.999718844890594,-0.00164701079484075,0.0236543100327253,0.999718844890594,-0.0616104900836945,0.0107693308964372,0.998042166233063,-0.0600362978875637,0.0249902289360762,0.997883379459381,-0.0616637319326401,0.0102863209322095,0.998043954372406,-0.0623666234314442,0.0103136468678713,0.998000025749207,-0.0631380379199982,0.00348004931584001,0.997998833656311,-0.0623113736510277,0.0108020985499024,0.997998297214508,
  947. -0.0663533508777618,0.00365727138705552,0.99778950214386,-0.0663550496101379,0.0104686329141259,0.997741162776947,-0.0663533508777618,0.00365727138705552,0.99778950214386,-0.000553680991288275,0.00789556931704283,0.999968767166138,-0.00165286671835929,0.0236544497311115,0.999718844890594,-0.00165286671835929,0.0236544497311115,0.999718844890594,0.00265057594515383,0.0235527995973825,0.999719083309174,0.00088120112195611,0.00783907808363438,0.999968886375427,0.00088120112195611,0.00783907808363438,0.999968886375427,0.00088120112195611,0.00783907808363438,0.999968886375427,-0.000882597349118441,-0.00782512500882149,0.999969005584717,0.00088120112195611,0.00783907808363438,0.999968886375427,0,-0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,-0.00516210868954659,0.0571276247501373,0.998353540897369,-0.00650824420154095,0.0572636649012566,0.998337984085083,-0.00516210868954659,0.0571276247501373,0.998353540897369,-0.00653415033593774,0.0561872906982899,0.998398959636688,-0.00520698633044958,0.056186567991972,0.998406708240509,-0.00653415033593774,0.0561872906982899,0.998398959636688,-0.00786140747368336,0.0560198985040188,0.998398721218109,-0.0065381764434278,0.0560199320316315,0.998408257961273,-0.0065381764434278,0.0560199320316315,0.998408257961273,-0.00787377171218395,0,0.999969005584717,-0.00787377264350653,1.45519152283669e-011,0.999969065189362,-0.00787377171218395,0,0.999969005584717,6.67325148242526e-005,0.0823495909571648,-0.996603488922119,0.00457154866307974,0.0831873416900635,-0.996523439884186,6.67325148242526e-005,0.0823495909571648,-0.996603488922119,0.00462943688035011,0.0817408710718155,-0.996642887592316,0.000125712700537406,0.0817345306277275,-0.996654093265533,0.00462943688035011,0.0817408710718155,-0.996642887592316,0.00460857385769486,0.0822622552514076,-0.996600091457367,0.00784708466380835,0.0822628661990166,-0.996579766273499,0.00460857385769486,0.0822622552514076,-0.996600091457367,0.00787393003702164,-4.0039885789156e-006,-0.999969005584717,
  948. 0.00787377171218395,-4.00395992983249e-006,-0.999969005584717,0.00787377171218395,-4.00395992983249e-006,-0.999969005584717,-9.32493193772643e-008,3.94755443267059e-006,-1,-1.55586789674089e-007,3.95190454582917e-006,-1,-9.32493193772643e-008,3.94755443267059e-006,-1,-9.29878609667867e-008,3.93648588215001e-006,-1,-1.54706114585679e-007,3.92953552363906e-006,-1,-1.85483585823931e-007,3.92606898458325e-006,-1,-1.54706114585679e-007,3.92953552363906e-006,-1,-2.16206785808026e-007,3.92260881199036e-006,-1,-1.85483585823931e-007,3.92606898458325e-006,-1,1.22386781388427e-017,0,-1,8.74191437434009e-018,2.58493941422821e-026,-1,1.22386781388427e-017,0,-1,0.00164701079484075,0.0236543100327253,-0.999718844890594,0.000547765055671334,0.00789533648639917,-0.999968767166138,0.00164701079484075,0.0236543100327253,-0.999718844890594,-0.00265353475697339,0.0235527288168669,-0.999719083309174,-0.000884155393578112,0.00783896166831255,-0.999968886375427,-0.000883375760167837,0.00783203728497028,-0.999969005584717,-0.000884155393578112,0.00783896166831255,-0.999968886375427,-1.47456307786342e-006,-8.12751252965427e-008,-1,-0.000883375760167837,0.00783203728497028,-0.999969005584717,0.0663533806800842,0.00365727301687002,-0.99778950214386,0.0663550794124603,0.0104686338454485,-0.997741162776947,0.0663533806800842,0.00365727301687002,-0.99778950214386,0.000553680991288275,0.00789556931704283,-0.999968767166138,0.00165286671835929,0.0236544497311115,-0.999718844890594,0.00165286671835929,0.0236544497311115,-0.999718844890594,-0.00264761736616492,0.0235528685152531,-0.999719083309174,-0.000878246850334108,0.0078391944989562,-0.999968886375427,-0.000878246850334108,0.0078391944989562,-0.999968886375427,-0.000878246850334108,0.0078391944989562,-0.999968886375427,0.000885546440258622,-0.00782496202737093,-0.999969005584717,-0.000878246850334108,0.0078391944989562,-0.999968886375427,0,-0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0.00516210868954659,0.0571276247501373,-0.998353540897369,
  949. 0.00650824420154095,0.0572636649012566,-0.998337984085083,0.00516210868954659,0.0571276247501373,-0.998353540897369,0.00653415033593774,0.0561872906982899,-0.998398959636688,0.00520698633044958,0.056186567991972,-0.998406708240509,0.00653415033593774,0.0561872906982899,-0.998398959636688,0.00653817597776651,0.0560199543833733,-0.998408257961273,0.00786140747368336,0.0560199245810509,-0.998398721218109,0.00653817597776651,0.0560199543833733,-0.998408257961273,0.00787377264350653,1.45519152283669e-011,-0.999969065189362,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,-0.179713100194931,-0.0232309810817242,-0.983444809913635,-0.179713100194931,-0.0232309810817242,-0.983444809913635,-0.179713100194931,-0.0232309810817242,-0.983444809913635,-9.55268551479094e-005,-0.0236154589802027,-0.999721109867096,-9.55268551479094e-005,-0.0236154589802027,-0.999721109867096,-9.55268551479094e-005,-0.0236154589802027,-0.999721109867096,-9.55268551479094e-005,-0.0236154589802027,-0.999721109867096,-0.000106722072814591,-0.0157460793852806,-0.999876022338867,-9.55268551479094e-005,-0.0236154589802027,-0.999721109867096,-0.0375657044351101,-0.0157349649816751,-0.999170243740082,-0.0377032198011875,-0.0235986709594727,-0.999010384082794,-0.0375657044351101,-0.0157349649816751,-0.999170243740082,-0.015720009803772,0.99822062253952,0.0575206279754639,-0.0166254453361034,0.998206615447998,0.0575091950595379,-0.0166254453361034,0.998206615447998,0.0575091950595379,-0.0157196801155806,0.998199641704559,0.0578822046518326,-0.0166307855397463,0.998185694217682,0.0578692369163036,-0.0157196801155806,0.998199641704559,0.0578822046518326,-0.0157340951263905,0.99911504983902,0.0390070416033268,-0.0232898015528917,0.998964369297028,0.0390883199870586,-0.0157340951263905,0.99911504983902,0.0390070416033268,-0.0232866369187832,0.998950302600861,0.0394481606781483,-0.0157338790595531,0.999101281166077,0.0393595695495605,-0.0232866369187832,0.998950302600861,0.0394481606781483,-0.014309111982584,-0.0451251193881035,0.99887889623642,
  950. 0.00140485295560211,-0.0446040816605091,0.999003767967224,-0.014309111982584,-0.0451251193881035,0.99887889623642,0.00098441110458225,-0.0312550514936447,0.999510943889618,-0.0147395692765713,-0.03171281889081,0.999388337135315,0.00098441110458225,-0.0312550514936447,0.999510943889618,0.00847546383738518,-0.0255823452025652,0.999636888504028,0.000812993501313031,-0.0258125420659781,0.999666512012482,0.000812993501313031,-0.0258125420659781,0.999666512012482,0.000757841218728572,-0.0240614581853151,0.999710261821747,0.00843513943254948,-0.0238609816879034,0.999679744243622,0.00843513943254948,-0.0238609816879034,0.999679744243622,-9.32288628519018e-008,3.9466885937145e-006,-1,-1.55552513092516e-007,3.95103370465222e-006,-1,-9.32288628519018e-008,3.9466885937145e-006,-1,-6.97258144555235e-008,2.95172594633186e-006,-1,-1.16004571282247e-007,2.94651613330643e-006,-1,-1.16004571282247e-007,2.94651613330643e-006,-1,-1.16004571282247e-007,2.94651613330643e-006,-1,-1.62120244340258e-007,2.94132451017504e-006,-1,-1.16004571282247e-007,2.94651613330643e-006,-1,-3.40678951715745e-007,6.18088961346075e-006,-1,-2.4334212866961e-007,6.1808900682081e-006,-1,-3.40678951715745e-007,6.18088961346075e-006,-1,-0.00097810395527631,0.0621096044778824,-0.998068869113922,-0.00244861212559044,0.062194749712944,-0.998061120510101,-0.00097810395527631,0.0621096044778824,-0.998068869113922,1.59813382083485e-007,-4.05925993618439e-006,-1,6.4065559968185e-008,-4.06816297982004e-006,-1,1.59813382083485e-007,-4.05925993618439e-006,-1,1.59813382083485e-007,-4.05925993618439e-006,-1,1.91636260638006e-007,-4.05630089517217e-006,-1,1.59813382083485e-007,-4.05925993618439e-006,-1,8.74191437434009e-018,2.58493941422821e-026,-1,1.04902962565914e-017,5.16987882845642e-026,-1,1.04902962565914e-017,5.16987882845642e-026,-1,-0.00218819826841354,-0.0315320156514645,-0.999500393867493,0.000561832042876631,0.0078958896920085,-0.999968767166138,-0.00218819826841354,-0.0315320156514645,-0.999500393867493,0.00353761669248343,-0.0313967727124691,-0.999500811100006,
  951. -0.000880487146787345,0.00783910602331162,-0.999968886375427,-0.000880487146787345,0.00783910602331162,-0.999968886375427,-0.000880487146787345,0.00783910602331162,-0.999968886375427,-0.00352073926478624,0.0312863886356354,-0.999504268169403,-0.000880487146787345,0.00783910602331162,-0.999968886375427,0.109778732061386,0.0373344048857689,-0.993254661560059,0.109752155840397,0.0121468156576157,-0.993884861469269,0.109778732061386,0.0373344048857689,-0.993254661560059,0.01573421433568,-0.999122560024261,-0.0388142727315426,0.0393097698688507,-0.998468160629272,-0.0389371104538441,0.01573421433568,-0.999122560024261,-0.0388142727315426,0.0393259078264236,-0.998878121376038,-0.0263832099735737,0.0393259078264236,-0.998878121376038,-0.0263832099735737,0.0157405119389296,-0.99952244758606,-0.0265914108604193,0.039338231086731,-0.999191105365753,-0.00834661722183228,0.0472553223371506,-0.998848080635071,-0.0083375284448266,0.039338231086731,-0.999191105365753,-0.00834661722183228,0.0472986549139023,-0.998779118061066,-0.0142550384625793,0.0393355637788773,-0.999123334884644,-0.0143273314461112,0.0472986549139023,-0.998779118061066,-0.0142550384625793,1.33676730911247e-005,5.262863282951e-007,-1,-0.00218609464354813,-0.0315319634974003,-0.999500393867493,-0.00218609464354813,-0.0315319634974003,-0.999500393867493,0.00352849322371185,-0.0313969887793064,-0.999500811100006,-6.64551453155582e-006,-2.61634426124147e-007,-1,-6.64551453155582e-006,-2.61634426124147e-007,-1,-6.64551453155582e-006,-2.61634426124147e-007,-1,-0.00264923041686416,0.0234694369137287,-0.999721050262451,-6.64551453155582e-006,-2.61634426124147e-007,-1,0.0983707755804062,0.0289195589721203,-0.994729578495026,0.098357655107975,0.00387234846130013,-0.995143592357636,0.0983707755804062,0.0289195589721203,-0.994729578495026,5.296730520854e-008,-3.36342395712563e-006,-1,1.06034093505514e-007,-3.36658240485122e-006,-1,5.296730520854e-008,-3.36342395712563e-006,-1,6.61316903460829e-008,-4.1993621380243e-006,-1,1.32063945557093e-007,-4.19303023591056e-006,-1,1.32063945557093e-007,-4.19303023591056e-006,-1,
  952. 1.32063945557093e-007,-4.19303023591056e-006,-1,1.97797660916876e-007,-4.1867169784382e-006,-1,1.32063945557093e-007,-4.19303023591056e-006,-1,-2.47365534278288e-007,5.23590369994054e-006,-1,-1.64910346711622e-007,5.23590369994054e-006,-1,-2.47365534278288e-007,5.23590369994054e-006,-1,1.90883724826563e-007,-1.13621263153618e-006,-1,1.27625412460475e-007,-1.14862871214427e-006,-1,1.90883724826563e-007,-1.13621263153618e-006,-1,-0.0108796926215291,0.0979172363877296,-0.995135128498077,-0.0163292586803436,0.0971979722380638,-0.995131134986877,-0.0108796926215291,0.0979172363877296,-0.995135128498077,-0.010831605643034,0.0974844545125961,-0.99517810344696,-0.0069445394910872,0.0979951769113541,-0.995162725448608,-0.010831605643034,0.0974844545125961,-0.99517810344696,4.02819239297969e-007,-3.62537343789882e-006,-1,2.56916194985024e-007,-3.62537321052514e-006,-1,2.56916194985024e-007,-3.62537321052514e-006,-1,0.0782304629683495,0.226407304406166,0.970886051654816,0.061316005885601,0.220792263746262,0.973391592502594,0.891116797924042,0.374906420707703,0.255648255348206,0.00919390935450792,0.972307324409485,-0.233525291085243,-0.0147120589390397,0.972232580184937,-0.233553931117058,-0.0107346503064036,0.972283542156219,-0.233558416366577,-0.00622108625248075,0.987417042255402,0.158015593886375,0.0202470757067204,0.987163960933685,0.158421456813812,0.000304434448480606,0.987418949604034,0.158125951886177,0.000278243620414287,0.999990224838257,0.00441711721941829,-0.000174501750734635,0.999990165233612,0.00443234434351325,-0.00875492580235004,0.999950528144836,0.00472075678408146,-0.00114224234130234,0.999578356742859,0.029012955725193,0.00663224793970585,0.999634146690369,0.0262230988591909,-0.113395981490612,-0.993473947048187,0.0122870374470949,-0.147938668727875,0.39969390630722,0.904632031917572,-0.0369535386562347,0.342968165874481,0.938619911670685,-0.84522533416748,0.533094704151154,0.0374741815030575,0.0384258031845093,-0.214283585548401,-0.976015388965607,0.959820210933685,0.277753859758377,-0.0399752333760262,
  953. 0.959820210933685,0.277753859758377,-0.0399752333760262,-0.0363236479461193,0.383994460105896,0.92262065410614,-0.888074219226837,0.458629816770554,0.0313522890210152,-0.886678993701935,0.460776895284653,0.0385367870330811,0.675761044025421,-0.734756112098694,-0.0589950121939182,0.687556207180023,-0.725156962871552,-0.0376007333397865,0.178695812821388,-0.779312372207642,-0.60061651468277,0.244412705302238,0.969669282436371,0.00198735576122999,0.243770703673363,0.969560444355011,-0.0229899678379297,0.244082778692245,0.969685256481171,-0.0115837994962931,-0.1570765376091,0.987487852573395,-0.0139596108347178,-0.157527893781662,0.987308442592621,0.0201778523623943,-0.15728797018528,0.98755270242691,0.000345077336532995,-0.000153695000335574,0.999969124794006,-0.00786409061402082,-0.000153872082591988,0.999969005584717,-0.0078798308968544,-0.000245642644586042,0.999871432781219,-0.0160392094403505,-0.170037791132927,0.985331535339355,-0.0144529165700078,-0.165639653801918,0.986186325550079,-6.02486470597796e-005,-0.0277736000716686,-0.843253016471863,-0.53679883480072,-0.127846345305443,0.898490428924561,-0.419964730739594,-0.602705776691437,0.789794027805328,-0.113891266286373,-0.689488112926483,0.723552107810974,-0.0328424610197544,0.926031947135925,0.375955760478973,0.0334976688027382,0.0178440697491169,0.965400874614716,0.260159224271774,0.0656381696462631,0.964353203773499,0.256348878145218,-0.0711170136928558,-0.121549643576145,-0.990034461021423,-0.976082980632782,-0.214271500706673,-0.0367412865161896,-0.975880444049835,-0.214589297771454,-0.0401101671159267,-0.830806076526642,0.555325508117676,-0.0370815396308899,-0.0444767773151398,-0.844447195529938,-0.533789277076721,-0.00712245423346758,-0.852878093719482,-0.522061586380005,0.0360295437276363,0.172847554087639,0.984289467334747,0.988903701305389,-0.143054783344269,0.0400596335530281,0.988903701305389,-0.143054783344269,0.0400596335530281,-0.00685284379869699,-0.999845445156097,-0.0161917824298143,0.0151173695921898,-0.999758958816528,-0.0159223526716232,
  954. -0.00902196392416954,-0.999827802181244,-0.0162179619073868,0.0211851187050343,-0.989602446556091,0.142261058092117,-0.0168673079460859,-0.989420711994171,0.144090920686722,-0.00791933387517929,-0.989592611789703,0.143679335713387,0.0375802107155323,-0.98248302936554,-0.182523727416992,0.0082391295582056,-0.982912182807922,-0.183890923857689,0.0101311253383756,-0.982910096645355,-0.183807566761971,0.0252576619386673,-0.888466477394104,-0.458246141672134,0.0221191085875034,-0.88662052154541,-0.461968421936035,0.313359081745148,-0.948031842708588,-0.0551511980593205,0.175367772579193,-0.984019041061401,-0.0308647267520428,0.0405804738402367,-0.973929226398468,-0.22319321334362,0.0142725463956594,-0.965786635875702,-0.258944779634476,0,-0,-0,0,-0,-0,0,-0,-0,-0.998867213726044,0.0061064544133842,0.0471905767917633,-0.0862910747528076,-0.000876210920978338,0.996269583702087,-0.0785043984651566,-0.000925245112739503,0.996913373470306,-0.0862910002470016,-0.00159381923731416,0.996268689632416,0.0235942006111145,-0.00269062956795096,0.999718070030212,-0.0785101726651192,-0.00167246349155903,0.996911942958832,-0.998469769954681,-0.00544191850349307,0.0550337694585323,-0.023607149720192,0.00105413841083646,0.999720752239227,-0.0862910822033882,0.000704313395544887,0.996269702911377,0.0236737299710512,0.00748865725472569,0.999691665172577,-0.0862881615757942,0.00826960802078247,0.996235966682434,0.0314795859158039,0.00742969242855906,0.999476790428162,-0.0862907618284225,0.00281395367346704,0.996266007423401,-0.0235882587730885,0.00343885901384056,0.999715924263,0.0314802043139935,0.0039757564663887,0.999496459960938,0.0314795859158039,0.00742969242855906,0.999476790428162,0.999203324317932,-0.00703594367951155,0.039283312857151,0.0236737299710512,0.00748865725472569,0.999691665172577,0.0947571843862534,-0.00635775178670883,0.995480179786682,0.03147978708148,-0.00651548663154244,0.999483168125153,-0.023667125031352,-0.00663139764219522,0.999697864055634,0.97149646282196,-0.00414883019402623,0.237017810344696,0.999210596084595,-0.00585659500211477,0.0392928831279278,
  955. 0.0314795523881912,0.0075744865462184,0.999475717544556,0.999471306800842,0.00789225567132235,0.0315415523946285,0.0314787626266479,-0.010370559990406,0.999450623989105,0.0947273969650269,-0.00980739574879408,0.995454907417297,0.0314802899956703,-0.00321582285687327,0.999499201774597,0.999503493309021,0.00116735824849457,0.0314896181225777,0.971521973609924,0.000462531519588083,0.236949041485786,-0.734239041805267,-0.676424920558929,0.0578140988945961,-0.744845330715179,-0.662084758281708,0.0827605873346329,-0.0286102257668972,0.692367434501648,0.72097772359848,-0.993171095848084,-0.0865776613354683,0.078202448785305,-0.0279239844530821,-0.461719512939453,0.886586487293243,-0.995757758617401,-0.0742838978767395,0.0542993731796741,-0.116843640804291,-0.993143558502197,-0.00368011463433504,-0.116307072341442,-0.993129312992096,0.0129230078309774,-0.11643123626709,-0.993156492710114,0.0091678136959672,-0.0637060403823853,-0.997959315776825,-0.00434659142047167,-0.0636808499693871,-0.997968316078186,-0.00200569606386125,-0.0636033043265343,-0.997962772846222,0.00500813452526927,-0.00558982556685805,-0.999984264373779,0.000621091749053448,-0.00559138972312212,-0.999984443187714,-0.000176106768776663,-0.00559138972312212,-0.999984443187714,-0.000176106768776663,-0.154789015650749,-0.987752020359039,-0.0196557492017746,-0.155346050858498,-0.987847983837128,-0.00489278882741928,-0.155551627278328,-0.987827479839325,0.000795541796833277,-0.108203940093517,-0.994122922420502,-0.00340799801051617,-0.00238086725585163,-0.998166978359222,-0.0604740306735039,-0.108203940093517,-0.994122922420502,-0.00340799801051617,-0.78656679391861,-0.617008090019226,-0.024773757904768,-0.773264944553375,-0.626434028148651,-0.0981923714280128,-0.207903861999512,-0.401264846324921,-0.89205527305603,0.00320183276198804,-0.996682345867157,0.0813265517354012,0.126055836677551,-0.992015182971954,0.00397026259452105,0.00240163411945105,-0.996643841266632,0.0818246454000473,0.00876717083156109,-0.999929189682007,0.00805648602545261,0.0154937924817204,-0.999848067760468,0.0079961596056819,
  956. 0.00908644217997789,-0.999926388263702,0.00805363059043884,0.888930439949036,-0.457185834646225,0.0279978103935719,0.0464104190468788,-0.0801084041595459,0.995705246925354,0.102875418961048,-0.108654461801052,0.988742172718048,0.0136597827076912,-0.997779369354248,0.0651915892958641,0.014635999687016,-0.997771143913269,0.0651050060987473,-0.00209701876156032,-0.997778832912445,0.0665803477168083,-0.00902934372425079,-0.999658823013306,-0.0245113186538219,0.000777763372752815,-0.999694764614105,-0.0246939864009619,0.00537740904837847,-0.999678492546082,-0.0247788429260254,0.0162441004067659,-0.999742031097412,-0.0158792026340961,0.00126312579959631,-0.999194741249084,-0.0401042439043522,0.0206880401819944,-0.999748229980469,-0.00868652295321226,-0.00619114469736815,-0.980470478534698,0.196568846702576,0.00157949049025774,-0.980434775352478,0.196838334202766,-0.013910268433392,-0.980447351932526,0.196289360523224,0.000813580001704395,-0.999871134757996,0.0160397887229919,-0.00943938177078962,-0.999927282333374,-0.00750181404873729,-0.000416266382671893,-0.999912619590759,0.0132164573296905,0.916463017463684,-0.160781547427177,-0.366394430398941,0.031093617901206,-0.156285926699638,-0.98722231388092,0.0697750374674797,-0.160273998975754,-0.984603345394135,-0.0245440639555454,-0.626202464103699,0.779273986816406,-0.765533983707428,-0.569123804569244,0.300093024969101,-0.814958870410919,-0.533075928688049,0.227315410971642
  957. }
  958. BinormalsW: *2178 {
  959. 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,
  960. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  961. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  962. }
  963. }
  964. LayerElementTangent: 0 {
  965. Version: 102
  966. Name: "UVmap_0"
  967. MappingInformationType: "ByPolygonVertex"
  968. ReferenceInformationType: "Direct"
  969. Tangents: *6534 {
  970. a: -0.368110328912735,0.158403396606445,-0.91618949174881,0.419080674648285,0.162399113178253,-0.893307268619537,0.371236741542816,-0.15598663687706,-0.915342271327972,-0.393144428730011,0.0950560197234154,-0.914550185203552,-0.388982892036438,-0.381708294153214,-0.838445782661438,0.440027385950089,0.104809306561947,-0.891846895217896,0.291983991861343,-0.953580975532532,-0.0736794024705887,-0.11270135641098,-0.991586744785309,0.0636721253395081,0.251640856266022,-0.967574059963226,0.0218487959355116,-0.119916215538979,-0.992020547389984,0.0389276295900345,-0.189626678824425,-0.980318069458008,-0.0549398884177208,0.252475619316101,-0.967513203620911,0.0131999049335718,-0.433215796947479,-0.885614097118378,0.167367175221443,-0.321369498968124,-0.935011088848114,-0.149919837713242,0.353305280208588,-0.92256087064743,0.155102670192719,0.351120084524155,-0.922598302364349,0.159772008657455,0.393403768539429,-0.839932382106781,-0.37382760643959,-0.429033219814301,-0.885666310787201,0.177554816007614,-0.343229353427887,-0.915123105049133,-0.211526185274124,-0.342886805534363,-0.922651469707489,0.17647360265255,0.287257730960846,-0.938446223735809,0.191837623715401,-0.352865487337112,-0.922151267528534,0.15850231051445,0.359547317028046,-0.829052031040192,-0.42825049161911,0.306910485029221,-0.937786459922791,0.162365213036537,0.999954760074615,0.00787365902215242,-0.00534177245572209,0.999954760074615,0.00787365902215242,-0.00534177245572209,0.999954760074615,0.00787365902215242,-0.00534177245572209,0.999953031539917,0.00787364598363638,-0.00566829787567258,0.999953031539917,0.00787364598363638,-0.00566829787567258,0.999953031539917,0.00787364598363638,-0.00566829787567258,0.208323746919632,-0.977216482162476,-0.0406096093356609,-0.300979286432266,-0.945946991443634,0.12081304192543,-0.239394009113312,-0.969678699970245,-0.0491298176348209,0.207267850637436,-0.977246701717377,-0.045043408870697,-0.237232521176338,-0.969764530658722,-0.0572510398924351,0.278488993644714,-0.956649720668793,0.0852372795343399,
  971. 0.186415746808052,-0.975492417812347,-0.116892702877522,-0.415568888187408,-0.908214271068573,-0.0494904965162277,-0.349823415279388,-0.905249178409576,0.24113841354847,-0.428634703159332,-0.903453707695007,-0.00662587257102132,0.236893653869629,-0.970607817173004,-0.0424488224089146,0.305981993675232,-0.797131299972534,0.520535051822662,-0.350901693105698,-0.92260068655014,-0.160237327218056,0.430957853794098,-0.885655701160431,-0.172885313630104,0.32362025976181,-0.935051202774048,0.144738405942917,-0.373969376087189,-0.920930743217468,-0.109697259962559,-0.361334890127182,-0.839170098304749,0.406485766172409,0.450604140758514,-0.884164869785309,-0.123323261737823,0.354303896427155,-0.922046065330505,-0.155883848667145,-0.298781245946884,-0.938203990459442,-0.174651265144348,0.332009583711624,-0.914853632450104,0.229809761047363,0.334175258874893,-0.922769606113434,-0.191893696784973,-0.383673280477524,-0.829418659210205,0.406029224395752,-0.287470549345016,-0.938445389270782,-0.191522598266602,-0.999911606311798,0.00787332002073526,0.0107229426503181,-0.999911606311798,0.00787332002073526,0.0107229426503181,-0.999911606311798,0.00787332002073526,0.0107229426503181,-0.999904751777649,0.00787326600402594,0.0113377515226603,-0.999904751777649,0.00787326600402594,0.0113377515226603,-0.999904751777649,0.00787326600402594,0.0113377515226603,-0.984121382236481,-3.89052986021863e-017,0.177496910095215,-0.984121382236481,-3.89052986021863e-017,0.177496910095215,-0.984121382236481,-3.89052986021863e-017,0.177496910095215,-0.981825888156891,4.21321169368659e-017,-0.189784005284309,-0.981825888156891,4.21321169368659e-017,-0.189784005284309,-0.981825888156891,4.21321169368659e-017,-0.189784005284309,0.954307198524475,6.42739717683996e-017,-0.298827409744263,0.954307198524475,6.42739717683996e-017,-0.298827409744263,0.954307198524475,6.42739717683996e-017,-0.298827409744263,0.99953019618988,6.78302123004865e-018,-0.0306501090526581,0.99953019618988,6.78302123004865e-018,-0.0306501090526581,0.99953019618988,6.78302123004865e-018,-0.0306501090526581,
  972. 0.165868073701859,2.19104593269781e-016,-0.986148059368134,0.165868073701859,2.19104593269781e-016,-0.986148059368134,0.165868073701859,2.19104593269781e-016,-0.986148059368134,-0.198635786771774,2.17440120588867e-016,-0.980073392391205,-0.198635786771774,2.17440120588867e-016,-0.980073392391205,-0.198635786771774,2.17440120588867e-016,-0.980073392391205,0.312021404504776,-2.10574587679126e-016,0.950075089931488,0.312021404504776,-2.10574587679126e-016,0.950075089931488,0.312021404504776,-2.10574587679126e-016,0.950075089931488,-0.0134203433990479,-2.22778294276031e-016,0.999909937381744,-0.0134203433990479,-2.22778294276031e-016,0.999909937381744,-0.0134203433990479,-2.22778294276031e-016,0.999909937381744,0.986981451511383,-3.57103962042615e-017,0.16083425283432,0.986981451511383,-3.57103962042615e-017,0.16083425283432,0.986981451511383,-3.57103962042615e-017,0.16083425283432,0.98008519411087,4.39288624151719e-017,-0.198577478528023,0.98008519411087,4.39288624151719e-017,-0.198577478528023,0.98008519411087,4.39288624151719e-017,-0.198577478528023,-0.94776576757431,-7.10586593537922e-017,0.318967163562775,-0.94776576757431,-7.10586593537922e-017,0.318967163562775,-0.94776576757431,-7.10586593537922e-017,0.318967163562775,-0.999813139438629,3.85594171649503e-018,-0.0193304028362036,-0.999813139438629,3.85594171649503e-018,-0.0193304028362036,-0.999813139438629,3.85594171649503e-018,-0.0193304028362036,0.17649045586586,-2.19858624646405e-016,0.984302341938019,0.17649045586586,-2.19858624646405e-016,0.984302341938019,0.17649045586586,-2.19858624646405e-016,0.984302341938019,-0.187243238091469,-2.18208657404713e-016,0.982313573360443,-0.187243238091469,-2.18208657404713e-016,0.982313573360443,-0.187243238091469,-2.18208657404713e-016,0.982313573360443,-0.30198147892952,2.09547652874809e-016,-0.953313767910004,-0.30198147892952,2.09547652874809e-016,-0.953313767910004,-0.30198147892952,2.09547652874809e-016,-0.953313767910004,-0.0341045372188091,2.21214102355138e-016,-0.999418258666992,-0.0341045372188091,2.21214102355138e-016,-0.999418258666992,
  973. -0.0341045372188091,2.21214102355138e-016,-0.999418258666992,-0.129226431250572,-0.219620868563652,-0.966988742351532,0.0854985862970352,-0.0352190956473351,-0.995715618133545,-0.127649456262589,-0.0269384235143662,-0.991453468799591,-0.120313182473183,-0.0121189393103123,-0.992662012577057,0.0799587965011597,-0.0230757016688585,-0.996531128883362,0.0434046983718872,-0.0925824195146561,-0.994758546352386,-0.0934494733810425,0.00386976217851043,0.995616614818573,0.0899071618914604,-0.00537142856046557,0.995935678482056,0.0753270089626312,-0.147757157683373,0.986150920391083,0.0813318863511086,0.0128557262942195,0.996604263782501,-0.0811170488595963,0.030756089836359,0.996229946613312,-0.0650352761149406,-0.073053702712059,0.995205283164978,-0.0854850634932518,-0.213439702987671,-0.973209023475647,0.0765022709965706,-0.0123394886031747,-0.996993064880371,-0.141144081950188,0.0192019771784544,-0.989802837371826,-0.133678317070007,0.0295222867280245,-0.990584969520569,0.0724318698048592,-0.00656191632151604,-0.997351765632629,0.0416647158563137,-0.0945602506399155,-0.994646906852722,-0.999994695186615,-0.00326217990368605,-5.11827930184537e-019,-0.999994695186615,-0.00326217990368605,-5.11827930184537e-019,-0.999994695186615,-0.00326217990368605,-5.11827930184537e-019,-0.999996304512024,-0.00272950646467507,-5.11737870895345e-019,-0.999996304512024,-0.00272950646467507,-5.11737870895345e-019,-0.999996304512024,-0.00272950646467507,-5.11737870895345e-019,-0.0687040016055107,0.0203002896159887,0.997430622577667,0.0371428243815899,0.013750184327364,0.999215364456177,0.0539814718067646,-0.105375222861767,0.992966294288635,0.0404328741133213,0.00611209403723478,0.999163568019867,-0.0724852159619331,0.0120729822665453,0.997296392917633,-0.0620072446763515,-0.0492151826620102,0.996861577033997,-0.116532742977142,-0.251305490732193,-0.960867166519165,0.0940407887101173,0.00369059294462204,-0.995561480522156,-0.169384807348251,0.0331859327852726,-0.984991133213043,-0.159897953271866,0.0467253476381302,-0.98602706193924,0.0884146615862846,0.0116909900680184,-0.996015250682831,
  974. 0.0628532394766808,-0.106328718364239,-0.992342531681061,0.0359273739159107,0.0162458065897226,0.999222338199615,-0.12132903188467,0.0179598666727543,0.992449879646301,-0.102797277271748,-0.0585846044123173,0.99297571182251,-0.111928686499596,0.0388947315514088,0.992954790592194,0.0270214583724737,0.0364775657653809,0.998969078063965,0.0569550469517708,-0.056960441172123,0.99675053358078,0.0365424156188965,-0.0512777604162693,-0.998015642166138,-0.232108250260353,0.179773718118668,-0.95593273639679,-0.122245669364929,-0.0541711896657944,-0.991020441055298,0.0275538451969624,-0.0698022991418839,-0.997180342674255,-0.111639387905598,-0.0755288228392601,-0.990874409675598,0.0725768804550171,0.0118733663111925,-0.997292160987854,-0.103288516402245,-0.275468468666077,-0.955745160579681,0.101739972829819,0.00919231306761503,-0.994768559932709,-0.070592537522316,0.0369476154446602,-0.996820747852325,-0.0517584830522537,0.0634967908263206,-0.996638953685761,0.0886828824877739,0.0341223850846291,-0.995475292205811,0.105423405766487,-0.0362416319549084,-0.993766784667969,0.0726913064718246,-0.0607173144817352,-0.995504677295685,-0.0968921408057213,-0.0710083916783333,-0.992758631706238,0.0492561087012291,0.100179277360439,-0.993749558925629,-0.0883948430418968,-0.0791612640023232,-0.992935061454773,0.0627690926194191,-0.0707526728510857,-0.995517015457153,-0.0956314951181412,0.104818224906921,-0.989882707595825,0.140686377882957,-0.00802433118224144,0.990021705627441,-0.0598227307200432,0.210169494152069,0.975832998752594,-0.074594259262085,-0.0194076970219612,0.997025191783905,-0.0619688853621483,-0.0356421060860157,0.997441470623016,0.105905942618847,0.0838530287146568,0.990834295749664,0.131494551897049,-0.0241816621273756,0.991021931171417,0.0861706584692001,0.020985184237361,0.996059358119965,-0.0346873365342617,0.0190657060593367,0.999216437339783,-0.0482883751392365,-0.0558963418006897,0.997268199920654,-0.0295977480709553,0.0306298844516277,0.999092578887939,0.0801630914211273,0.0336989164352417,0.99621194601059,0.083561860024929,-0.0284433923661709,0.996096551418304,
  975. 0.0677516683936119,-0.0418614596128464,0.996823728084564,-0.104698553681374,-0.0360989645123482,0.993848621845245,0.0924944281578064,0.0607850700616837,0.993856132030487,-0.104310601949692,-0.0370193980634212,0.993855655193329,0.0673674792051315,-0.0427091717720032,0.996813714504242,-0.108262076973915,0.0483379885554314,0.99294650554657,-0.999993145465851,8.31483244208011e-019,-0.00372824957594275,-0.999993145465851,8.31483244208011e-019,-0.00372824957594275,-0.999993145465851,8.31483244208011e-019,-0.00372824957594275,-0.999986588954926,1.150798276807e-018,-0.00517697166651487,-0.999986588954926,1.150798276807e-018,-0.00517697166651487,-0.999986588954926,1.150798276807e-018,-0.00517697166651487,-0.999997019767761,-0.0024359617382288,-5.14123252986795e-019,-0.999997019767761,-0.0024359617382288,-5.14123252986795e-019,-0.999997019767761,-0.0024359617382288,-5.14123252986795e-019,-0.999996542930603,-0.00263463100418448,-5.13965881875256e-019,-0.999996542930603,-0.00263463100418448,-5.13965881875256e-019,-0.999996542930603,-0.00263463100418448,-5.13965881875256e-019,-0.999999225139618,2.89195628737128e-019,-0.0012399812694639,-0.999999225139618,2.89195628737128e-019,-0.0012399812694639,-0.999999225139618,2.89195628737128e-019,-0.0012399812694639,-0.999999165534973,3.03322348485279e-019,-0.00136648037005216,-0.999999165534973,3.03322348485279e-019,-0.00136648037005216,-0.999999165534973,3.03322348485279e-019,-0.00136648037005216,-0.999997615814209,-0.00219344347715378,-4.8271267188753e-019,-0.999997615814209,-0.00219344347715378,-4.8271267188753e-019,-0.999997615814209,-0.00219344347715378,-4.8271267188753e-019,-0.999995708465576,-0.00292493216693401,-6.43717587856689e-019,-0.999995708465576,-0.00292493216693401,-6.43717587856689e-019,-0.999995708465576,-0.00292493216693401,-6.43717587856689e-019,0.128998994827271,-0.219803839921951,0.966977536678314,-0.0856709852814674,-0.0355974398553371,0.995687365531921,0.127829447388649,-0.027302784845233,0.991420388221741,0.120526939630508,-0.0125498427078128,0.99263072013855,-0.0801592096686363,-0.0235145464539528,0.996504664421082,
  976. -0.043196365237236,-0.0930164158344269,0.99472713470459,-0.0753260254859924,-0.147757783532143,-0.986150920391083,0.0934497714042664,0.00386909139342606,-0.995616495609283,-0.0899070426821709,-0.00537117384374142,-0.995935678482056,-0.0813313126564026,0.0128569277003407,-0.996604204177856,0.0811171680688858,0.0307558327913284,-0.996229946613312,0.0650361329317093,-0.0730524212121964,-0.995205342769623,0.0792719349265099,-0.233443766832352,0.969133615493774,-0.105766981840134,-0.0130266156047583,0.994305610656738,0.152020812034607,0.0192682575434446,0.988189458847046,0.145059436559677,0.0288273077458143,0.989003002643585,-0.101670667529106,-0.00718022743239999,0.994792222976685,-0.0499369017779827,-0.110304944217205,0.992642521858215,0.99996417760849,-0.00311399064958096,0.00787373352795839,0.99987119436264,-0.00311402883380651,0.0157460030168295,0.99996417760849,-0.00311399064958096,0.00787373352795839,0.999871790409088,-0.00291887298226357,0.0157460123300552,0.999964833259583,-0.00291883968748152,0.00787373911589384,0.999871790409088,-0.00291887298226357,0.0157460123300552,-0.0479290187358856,-0.11916609108448,-0.991716921329498,0.100975558161736,0.0248553063720465,-0.99457848072052,-0.0361108854413033,0.0154234115034342,-0.999228775501251,-0.0379477627575397,0.0111240250989795,-0.999217808246613,0.102665796875954,0.0211662575602531,-0.994490683078766,0.0861678048968315,-0.0562803819775581,-0.994689702987671,0.119871288537979,-0.267046838998795,0.956199169158936,-0.103440091013908,0.00250948872417212,0.994632542133331,0.185397669672966,0.036887776106596,0.981971085071564,0.175865858793259,0.0505510568618774,0.983115375041962,-0.0982877090573311,0.00992160104215145,0.995108604431152,-0.0660559386014938,-0.115653418004513,0.991090774536133,0.118607610464096,0.0429294891655445,-0.992012858390808,-0.0326362363994122,0.0432428494095802,-0.998531401157379,-0.0627648085355759,-0.061491210013628,-0.996132254600525,-0.0431196764111519,0.0194392632693052,-0.998880803585052,0.129697754979134,0.0182104539126158,-0.991386353969574,
  977. 0.116105727851391,-0.0665145888924599,-0.991007208824158,0.142210736870766,-0.0670809522271156,0.987560749053955,-0.0398826748132706,-0.0623893216252327,0.997254729270935,0.25227478146553,0.195681884884834,0.947663486003876,-0.0306923072785139,-0.0812876522541046,0.996218025684357,0.130876272916794,-0.0892852321267128,0.987370014190674,-0.0804496854543686,0.0132406419143081,0.996670722961426,0.0548663474619389,-0.0315909683704376,0.99799382686615,-0.118603862822056,0.189058065414429,0.974776983261108,-0.0964695438742638,-0.025867061689496,0.994999766349792,0.0577800534665585,-0.0252711270004511,0.998009443283081,-0.0971342101693153,-0.0248633902519941,0.994960784912109,0.0564501360058784,0.0629009604454041,0.996422052383423,-0.0490870103240013,-0.0737481042742729,0.996068120002747,0.121329702436924,0.114642433822155,0.985969662666321,0.10900703817606,-0.0811702013015747,0.99072140455246,0.118220932781696,-0.0724863931536675,0.990338087081909,-0.0304475873708725,0.104602977633476,0.994047880172729,-0.0599345080554485,-0.0625523701310158,0.996240556240082,-0.115034446120262,-0.00594787672162056,-0.993343710899353,0.0641748830676079,0.189940363168716,-0.979696094989777,0.0692606121301651,-0.0135127622634172,-0.997507095336914,-0.106769576668739,-0.0203982163220644,-0.994074523448944,0.0579941608011723,-0.0279997140169144,-0.997924208641052,-0.0836768075823784,0.0729420259594917,-0.993819713592529,0.0115633048117161,0.0324877314269543,-0.999405264854431,-0.104614108800888,0.0368080288171768,-0.993831515312195,-0.103124104440212,-0.0275129340589046,-0.99428802728653,-0.11271720379591,0.0195983815938234,-0.993433833122253,0.0185750424861908,0.0165562517940998,-0.999690473079681,0.0270689334720373,-0.0596472844481468,-0.997852444648743,0.118310168385506,-0.0438399612903595,-0.992008566856384,-0.079959399998188,-0.0528733171522617,-0.995394945144653,0.131031304597855,0.057244561612606,-0.989724159240723,-0.0818028822541237,-0.0488097220659256,-0.995452702045441,0.120117954909801,-0.0395482741296291,-0.991971671581268,-0.104089498519897,0.0724744275212288,-0.991923809051514,
  978. 0.999882221221924,3.40863821678785e-018,-0.0153484418988228,0.999882221221924,3.40863821678785e-018,-0.0153484418988228,0.999882221221924,3.40863821678785e-018,-0.0153484418988228,0.999902069568634,3.108087931481e-018,-0.0139948595315218,0.999902069568634,3.108087931481e-018,-0.0139948595315218,0.999902069568634,3.108087931481e-018,-0.0139948595315218,0.999873161315918,-0.00239716097712517,-0.015746034681797,0.999873161315918,-0.00239716097712517,-0.015746034681797,0.999873161315918,-0.00239716097712517,-0.015746034681797,0.999872863292694,-0.0025537651963532,-0.0157460290938616,0.999872863292694,-0.0025537651963532,-0.0157460290938616,0.999872863292694,-0.0025537651963532,-0.0157460290938616,0.99984610080719,3.88279985739433e-018,-0.0175445843487978,0.99984610080719,3.88279985739433e-018,-0.0175445843487978,0.99984610080719,3.88279985739433e-018,-0.0175445843487978,0.99984484910965,3.91199354275316e-018,-0.0176209453493357,0.99984484910965,3.91199354275316e-018,-0.0176209453493357,0.99984484910965,3.91199354275316e-018,-0.0176209453493357,0.999873459339142,-0.0022617953363806,-0.0157460384070873,0.99971866607666,-0.00226181466132402,-0.0236154049634933,0.999873459339142,-0.0022617953363806,-0.0157460384070873,0.999718844890594,-0.00218375981785357,-0.0236154086887836,0.999873638153076,-0.00218374095857143,-0.0157460421323776,0.999718844890594,-0.00218375981785357,-0.0236154086887836,0,-0.00647734431549907,0.999979019165039,-0.00831556972116232,-0.00561277382075787,0.99994969367981,0,-0.00647734431549907,0.999979019165039,-0.00817844457924366,-0.00387033075094223,0.999959170818329,0,-0.00414993753656745,0.999991416931152,-0.00817844457924366,-0.00387033075094223,0.999959170818329,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,-1,0.000214708605199121,0,-1,0.000214708605199121,0,-1,0.000214708605199121,0,-1,-3.03608048852766e-005,0,-1,-3.03608048852766e-005,0,-1,-3.03608048852766e-005,0,0,0.00612520566210151,0.999981343746185,0.000243677292019129,0.00618940452113748,0.999980807304382,0,0.00612520566210151,0.999981343746185,
  979. -0.000277167331660166,-0.00704005314037204,0.999975204467773,0,-0.00691215926781297,0.999976098537445,-0.000277167331660166,-0.00704005314037204,0.999975204467773,0.000149018262163736,-1,-2.22024673180991e-016,0.000149018262163736,-1,-2.22024673180991e-016,0.000149018262163736,-1,-2.22024673180991e-016,0.000345043954439461,-0.999999940395355,-2.22016255791078e-016,0.000345043954439461,-0.999999940395355,-2.22016255791078e-016,0.000345043954439461,-0.999999940395355,-2.22016255791078e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00572616327553988,-0.999983608722687,-2.22041150618793e-016,0.00572616327553988,-0.999983608722687,-2.22041150618793e-016,0.00572616327553988,-0.999983608722687,-2.22041150618793e-016,-0.00259153661318123,-0.999996662139893,-2.22043863771202e-016,-0.00259153661318123,-0.999996662139893,-2.22043863771202e-016,-0.00259153661318123,-0.999996662139893,-2.22043863771202e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0083042848855257,-0.00546936830505729,-0.999950587749481,0,-0.00574640883132815,-0.999983489513397,0.0083042848855257,-0.00546936830505729,-0.999950587749481,0,-0.00475542619824409,-0.999988794326782,0.00818088557571173,-0.00390135287307203,-0.99995893239975,0,-0.00475542619824409,-0.999988794326782,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,0.999999463558197,-0.0011290266411379,-4.59628284039071e-019,0.999999463558197,-0.0011290266411379,-4.59628284039071e-019,0.999999463558197,-0.0011290266411379,-4.59628284039071e-019,1,5.57011953787878e-005,0,1,5.57011953787878e-005,0,1,5.57011953787878e-005,0,0.00027717262855731,-0.00704018725082278,-0.999975204467773,0,-0.00691229430958629,-0.999976098537445,0.00027717262855731,-0.00704018725082278,-0.999975204467773,0,0.0061251362785697,-0.999981343746185,-0.000243674556259066,0.00618933513760567,-0.999980807304382,
  980. 0,0.0061251362785697,-0.999981343746185,0.000764523050747812,-0.999999701976776,-2.22015130825445e-016,0.000764523050747812,-0.999999701976776,-2.22015130825445e-016,0.000764523050747812,-0.999999701976776,-2.22015130825445e-016,-0.000281594868283719,-1,-2.2202477906011e-016,-0.000281594868283719,-1,-2.2202477906011e-016,-0.000281594868283719,-1,-2.2202477906011e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0.00156412494834512,-0.999998867511749,-2.22044406401684e-016,-0.00156412494834512,-0.999998867511749,-2.22044406401684e-016,-0.00156412494834512,-0.999998867511749,-2.22044406401684e-016,-0.00152550463099033,-0.999998927116394,-2.22044419636574e-016,-0.00152550463099033,-0.999998927116394,-2.22044419636574e-016,-0.00152550463099033,-0.999998927116394,-2.22044419636574e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.0736480727791786,0.994881093502045,0.0691923648118973,-0.177900075912476,0.956112027168274,-0.232811957597733,0.078185185790062,0.991789579391479,-0.101195476949215,0.0917472392320633,0.993951141834259,0.0603624172508717,0.100055515766144,0.990926086902618,-0.0897464156150818,-0.000114938615297433,0.992677390575409,0.120795704424381,-0.0207929201424122,0.0314736515283585,-0.999288380146027,-0.0207929201424122,0.0314736515283585,-0.999288380146027,-0.0207929201424122,0.0314736515283585,-0.999288380146027,0.00987497810274363,0.0314789190888405,-0.999455630779266,0.00987497810274363,0.0314789190888405,-0.999455630779266,0.00987497810274363,0.0314789190888405,-0.999455630779266,-0.000245667732087895,0.0311998017132282,-0.999513149261475,-0.000245667732087895,0.0311998017132282,-0.999513149261475,-0.000245667732087895,0.0311998017132282,-0.999513149261475,-0.000253456935752183,0.032189030200243,-0.999481737613678,-0.000253456935752183,0.032189030200243,-0.999481737613678,
  981. -0.000253456935752183,0.032189030200243,-0.999481737613678,0.000331530958646908,0.0421044304966927,-0.999113261699677,0.000331530958646908,0.0421044304966927,-0.999113261699677,0.000331530958646908,0.0421044304966927,-0.999113261699677,0.000340355501975864,0.0432251468300819,-0.999065279960632,0.000340355501975864,0.0432251468300819,-0.999065279960632,0.000340355501975864,0.0432251468300819,-0.999065279960632,-0.0198287311941385,0.0314742624759674,-0.999307870864868,-0.0198287311941385,0.0314742624759674,-0.999307870864868,-0.0198287311941385,0.0314742624759674,-0.999307870864868,-0.0176481362432241,0.0314755514264107,-0.999348700046539,-0.0176481362432241,0.0314755514264107,-0.999348700046539,-0.0176488999277353,0.0393334738910198,-0.999070286750793,0.0322154723107815,-0.998410761356354,0.0462420284748077,0.0312535911798477,-0.988239526748657,-0.149685844779015,-0.0872460007667542,-0.993256866931915,0.0763473138213158,0.0346878580749035,-0.988347411155701,-0.148210510611534,0.0346894860267639,-0.998375415802002,0.0452037863433361,-0.0599008239805698,-0.987308442592621,-0.14708548784256,0.0991187170147896,0.994486689567566,0.0342297963798046,-0.185488969087601,0.931747734546661,-0.312153726816177,0.0964966341853142,0.980296909809113,-0.172355905175209,0.0853978991508484,0.99546217918396,0.0419815592467785,0.09540144354105,0.980273842811584,-0.173094615340233,-0.0663644224405289,0.996029555797577,0.059337105602026,0.232579052448273,-0.94823431968689,0.216237500309944,-0.0569744184613228,-0.996812582015991,-0.0558448433876038,-0.047264713793993,-0.979253590106964,0.197049289941788,-0.0545457489788532,-0.979867339134216,0.192054137587547,-0.0607477650046349,-0.996738314628601,-0.053126685321331,0.0941712558269501,-0.995335876941681,-0.020939351990819,-0.00590358581393957,-0.0157458055764437,-0.999858617782593,-0.00590358581393957,-0.0157458055764437,-0.999858617782593,-0.00590358581393957,-0.0157458055764437,-0.999858617782593,-0.00526354229077697,-0.0157458614557981,-0.999862194061279,-0.00526354229077697,-0.0157458614557981,-0.999862194061279,
  982. -0.00526354229077697,-0.0157458614557981,-0.999862194061279,-0.0756160691380501,0.997077465057373,0.0109058553352952,0.160765811800957,0.947564423084259,0.276181221008301,-0.0772462040185928,0.981860756874084,0.173155054450035,-0.0955802425742149,0.995205163955688,0.0207620896399021,-0.100971937179565,0.981665015220642,0.161673918366432,-0.015211870893836,0.999594926834106,-0.0240535140037537,-0.00768746202811599,-0.998372435569763,0.0565121509134769,-0.0102667538449168,-0.99421614408493,-0.106906943023205,0.0778275281190872,-0.994921028614044,0.0638356879353523,-0.0110407760366797,-0.994243919849396,-0.10656975209713,-0.00969673134386539,-0.998401999473572,0.0556724295020103,0.0923510640859604,-0.984803199768066,-0.147084906697273,0.0176299177110195,-0.686575651168823,-0.726844668388367,0.0185515005141497,-0.701981604099274,-0.711953401565552,0.017496544867754,-0.686479866504669,-0.726938366889954,0.0190027467906475,-0.686417698860168,-0.72695916891098,0.0198759604245424,-0.701889216899872,-0.712008774280548,0.0198759604245424,-0.701889216899872,-0.712008774280548,0.000276779639534652,-0.711486995220184,-0.702699244022369,0.00013943987141829,-0.711520135402679,-0.702665686607361,0.000276779639534652,-0.711486995220184,-0.702699244022369,0.000305810506688431,-0.716749548912048,-0.697330594062805,0.000612454896327108,-0.716762542724609,-0.697317063808441,0.000305810506688431,-0.716749548912048,-0.697330594062805,0.00981505773961544,-0.710466265678406,-0.703662812709808,0.00844039581716061,-0.690958440303802,-0.722845196723938,0.00981505773961544,-0.710466265678406,-0.703662812709808,0.0019389676162973,-0.710936903953552,-0.703253090381622,0.000587966700550169,-0.691205859184265,-0.722657680511475,0.000358524994226173,-0.687076807022095,-0.726584672927856,0.0107096955180168,-0.700291931629181,-0.713776230812073,-0.000206203854759224,-0.700529515743256,-0.713623404502869,0.0107096955180168,-0.700291931629181,-0.713776230812073,-0.000417383213061839,-0.693730592727661,-0.720234453678131,0.0102810710668564,-0.693417012691498,-0.720463156700134,
  983. 0.00525169726461172,-0.693636000156403,-0.720306515693665,0.0232208054512739,-0.706916093826294,0.706916093826294,0.0232208054512739,-0.706916093826294,0.706916093826294,0.0232208054512739,-0.706916093826294,0.706916093826294,0.0110788708552718,-0.707063436508179,0.707063436508179,0.0110788708552718,-0.707063436508179,0.707063436508179,0.0110788708552718,-0.707063436508179,0.707063436508179,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0.0169442407786846,0.695539355278015,-0.71828818321228,0.0180147923529148,0.679868876934052,-0.733112394809723,0.0169442407786846,0.695539355278015,-0.71828818321228,0.0180902406573296,0.679872334003448,-0.733107328414917,0.0169052500277758,0.695538699626923,-0.718289732933044,0.0180902406573296,0.679872334003448,-0.733107328414917,0.00175439054146409,0.678706049919128,-0.734407961368561,0.000880428473465145,0.678600132465363,-0.734507381916046,0.00175439054146409,0.678706049919128,-0.734407961368561,0.00120646844152361,0.667762637138367,-0.744373381137848,0.00241132196970284,0.667788088321686,-0.74434757232666,0.00120646844152361,0.667762637138367,-0.744373381137848,0.000508947647176683,0.695172607898712,-0.718842744827271,0.00224918778985739,0.670836627483368,-0.741601765155792,0.000508947647176683,0.695172607898712,-0.718842744827271,0.00829771906137466,0.695369839668274,-0.718604147434235,0.0100657325237989,0.671261608600616,-0.741152167320251,0.0100657325237989,0.671261608600616,-0.741152167320251,0.00137686624657363,0.684910416603088,-0.728625953197479,0.000684932980220765,0.68502551317215,-0.728518784046173,0.00137686624657363,0.684910416603088,-0.728625953197479,0.000483272306155413,0.691596329212189,-0.722284078598022,0.000967843225225806,0.691574990749359,-0.722304046154022,0.000483272306155413,0.691596329212189,-0.722284078598022,0.0126010226085782,-0.734139561653137,-0.678881704807281,0.0126010226085782,-0.734139561653137,-0.678881704807281,
  984. 0.0126010226085782,-0.734139561653137,-0.678881704807281,0.0181778054684401,-0.73407655954361,-0.678823411464691,0.0181778054684401,-0.73407655954361,-0.678823411464691,0.0181778054684401,-0.73407655954361,-0.678823411464691,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,0.0205274615436792,0.695594370365143,-0.718141436576843,0.0215865578502417,0.680027604103088,-0.732868671417236,0.0205274615436792,0.695594370365143,-0.718141436576843,0.018715949729085,0.679900765419006,-0.733065247535706,0.0175339076668024,0.695549070835114,-0.718264698982239,0.018715949729085,0.679900765419006,-0.733065247535706,0.00208535161800683,0.673224925994873,-0.739434838294983,0.00104614964220673,0.673110604286194,-0.739541113376617,0.00208535161800683,0.673224925994873,-0.739434838294983,0.00120646366849542,0.667762756347656,-0.744373202323914,0.00241131195798516,0.66778826713562,-0.744347393512726,0.00120646366849542,0.667762756347656,-0.744373202323914,0.00773050962015986,0.695356905460358,-0.718622982501984,0.00944075174629688,0.671229124069214,-0.741189777851105,0.00773050962015986,0.695356905460358,-0.718622982501984,0.00830191560089588,0.695369958877563,-0.718604028224945,0.0100699532777071,0.671261847019196,-0.741151928901672,0.0100699532777071,0.671261847019196,-0.741151928901672,0.00137682550121099,0.684911131858826,-0.728625357151031,0.000684910570271313,0.685026228427887,-0.728518068790436,0.00137682550121099,0.684911131858826,-0.728625357151031,0.000483259209431708,0.691596746444702,-0.722283720970154,0.000967824133113027,0.691575288772583,-0.722303748130798,0.000483259209431708,0.691596746444702,-0.722283720970154,0.0125482762232423,-0.734140038490295,-0.678882122039795,0.0125482762232423,-0.734140038490295,-0.678882122039795,0.0125482762232423,-0.734140038490295,-0.678882122039795,0.0181567836552858,-0.734076857566834,-0.678823709487915,0.0181567836552858,-0.734076857566834,-0.678823709487915,
  985. 0.0181567836552858,-0.734076857566834,-0.678823709487915,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,0.0182006806135178,-0.686555504798889,-0.726849615573883,0.0191203989088535,-0.701942086219788,-0.711977362632751,0.0180671885609627,-0.686456501483917,-0.726946413516998,0.0199434924870729,-0.686378121376038,-0.726971387863159,0.0208120606839657,-0.701823115348816,-0.712047159671783,0.0208120606839657,-0.701823115348816,-0.712047159671783,0.000276825303444639,-0.711487770080566,-0.702698528766632,0.000139459429192357,-0.711520731449127,-0.702665090560913,0.000276825303444639,-0.711487770080566,-0.702698528766632,0.000305803521769121,-0.716749370098114,-0.697330832481384,0.000612440111581236,-0.71676230430603,-0.69731730222702,0.000305803521769121,-0.716749370098114,-0.697330832481384,0.00981924124062061,-0.710466027259827,-0.703662991523743,0.00844457000494003,-0.690958261489868,-0.722845315933228,0.00981924124062061,-0.710466027259827,-0.703662991523743,0.00193885166663677,-0.710936903953552,-0.703253090381622,0.000587842834647745,-0.691205859184265,-0.722657680511475,0.000358401157427579,-0.68707686662674,-0.726584672927856,0.0106931142508984,-0.70002692937851,-0.714036405086517,-0.000214490122743882,-0.700263917446136,-0.713883996009827,0.0106931142508984,-0.70002692937851,-0.714036405086517,-0.000257865816820413,-0.698872148990631,-0.715246617794037,0.0106011126190424,-0.698554933071136,-0.715477883815765,0.00537193985655904,-0.698777556419373,-0.715318858623505,0.0231704711914063,-0.706916987895966,0.706916987895966,0.0231704711914063,-0.706916987895966,0.706916987895966,0.0231704711914063,-0.706916987895966,0.706916987895966,0.0120931696146727,-0.70705509185791,0.70705509185791,0.0120931696146727,-0.70705509185791,0.70705509185791,0.0120931696146727,-0.70705509185791,0.70705509185791,0,0.707106828689575,-0.707106828689575,
  986. 0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,-0.000492853985633701,0.020864075049758,-0.999782204627991,0.00671394588425756,0.021012220531702,-0.999756693840027,-0.000492853985633701,0.020864075049758,-0.999782204627991,0.00663323514163494,0.022472096607089,-0.999725461006165,-0.000518787594046444,0.0219620428979397,-0.999758660793304,0.00663323514163494,0.022472096607089,-0.999725461006165,0.0108220279216766,-0.999941468238831,-2.22031806786594e-016,0.0108220279216766,-0.999941468238831,-2.22031806786594e-016,0.0108220279216766,-0.999941468238831,-2.22031806786594e-016,0.0107650468125939,-0.999942064285278,-2.22031528853908e-016,0.0107650468125939,-0.999942064285278,-2.22031528853908e-016,0.0107650468125939,-0.999942064285278,-2.22031528853908e-016,-0.0308368001133204,0.999524414539337,2.22042302054206e-016,-0.0308368001133204,0.999524414539337,2.22042302054206e-016,-0.0308368001133204,0.999524414539337,2.22042302054206e-016,0,1,2.22044949032166e-016,0,1,2.22044949032166e-016,0,1,2.22044949032166e-016,-0.0131622022017837,-0.999913394451141,-2.22025255516142e-016,-0.0131622022017837,-0.999913394451141,-2.22025255516142e-016,-0.0131622022017837,-0.999913394451141,-2.22025255516142e-016,0.0109674762934446,-0.999939858913422,-2.22031158276994e-016,0.0109674762934446,-0.999939858913422,-2.22031158276994e-016,0.0109674762934446,-0.999939858913422,-2.22031158276994e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0.000395332812331617,0.0251036342233419,-0.999684870243073,0.00668117823079228,0.0251917708665133,-0.999660313129425,-0.000395332812331617,0.0251036342233419,-0.999684870243073,0.00660996371880174,0.0266927666962147,-0.99962192773819,-0.000413278612541035,0.0262431912124157,-0.999655604362488,0.00660996371880174,0.0266927666962147,-0.99962192773819,
  987. 0.00527570210397244,-0.999986112117767,-2.22041706484165e-016,0.00527570210397244,-0.999986112117767,-2.22041706484165e-016,0.00527570210397244,-0.999986112117767,-2.22041706484165e-016,-0.0173958856612444,-0.999848783016205,-2.22010988304937e-016,-0.0173958856612444,-0.999848783016205,-2.22010988304937e-016,-0.0173958856612444,-0.999848783016205,-2.22010988304937e-016,0.0115199489519,0.999933660030365,2.22109032368582e-016,0.0115199489519,0.999933660030365,2.22109032368582e-016,0.0115199489519,0.999933660030365,2.22109032368582e-016,0,1,2.22044366697015e-016,0,1,2.22044366697015e-016,0,1,2.22044366697015e-016,0.26007267832756,-0.965589046478271,-2.14403904519654e-016,0.26007267832756,-0.965589046478271,-2.14403904519654e-016,0.26007267832756,-0.965589046478271,-2.14403904519654e-016,0.26000589132309,-0.965607047080994,-2.14407835281925e-016,0.26000589132309,-0.965607047080994,-2.14407835281925e-016,0.26000589132309,-0.965607047080994,-2.14407835281925e-016,-0,1,2.22044816683268e-016,-0,1,2.22044816683268e-016,-0,1,2.22044816683268e-016,-0,1,2.22044816683268e-016,-0,1,2.22044816683268e-016,-0,1,2.22044816683268e-016,0.999820351600647,-0.0157452039420605,-0.0105615220963955,0.999820351600647,-0.0157452039420605,-0.0105615220963955,0.999913215637207,-0.00787333212792873,-0.0105618741363287,0.999641418457031,-5.85191447251508e-018,0.0267785396426916,0.999610424041748,-0.00787094794213772,0.0267781261354685,0.999517440795898,-0.0157404318451881,0.0267793722450733,0.998987376689911,-0.00786604266613722,0.0443007983267307,0.999018251895905,-9.92405307699065e-018,0.0443003736436367,0.999018251895905,-9.92405307699065e-018,0.0443003736436367,-0.0167104471474886,-0.999706447124481,0.0175448544323444,-0.0155970696359873,-0.999705731868744,0.0185841657221317,-0.0087252501398325,-0.999799013137817,0.0180512871593237,2.33725968428189e-005,-0.999999821186066,0.000742074567824602,-0.00790716148912907,-0.999968588352203,0.000706821214407682,-0.0157384537160397,-0.999875664710999,0.00096805696375668,-0.00700330641120672,-0.999806225299835,-0.0183976925909519,
  988. -0.000619194761384279,-0.999806642532349,-0.0196594577282667,0.000851766963023692,-0.999837219715118,-0.0180290602147579,3.53711875504814e-005,-0.999999463558197,0.0011230354430154,-3.48906578437891e-005,-0.999999403953552,0.00110777805093676,-5.20912399224471e-005,-0.999999403953552,0.0011025978019461,8.9784580268315e-006,-1,-0.000285074609564617,4.61473928226042e-006,-1,0.000146526537719183,0.00786824151873589,-0.999969065189362,-0.00011705460929079,0.00112741510383785,-0.999358594417572,-0.0357954315841198,0.00617524329572916,-0.999338209629059,-0.035847045481205,0.0252397581934929,-0.999078929424286,-0.0347020402550697,-0.0167038142681122,-0.999708771705627,0.0174238439649343,0.00713686412200332,-0.999799966812134,0.0186836551874876,0.00859579164534807,-0.999794244766235,0.0183742474764585,0.00833224505186081,-0.999897301197052,-0.0116595486178994,-0.0152492728084326,-0.999804556369781,-0.0125902835279703,0.0074045630171895,-0.999901711940765,-0.0119044538587332,-0.0159401763230562,-0.999853909015656,-0.0061736716888845,0.00759953632950783,-0.999946892261505,-0.00696116080507636,-0.0154543910175562,-0.999853193759918,-0.00739973457530141,-0.0162722952663898,-0.999777734279633,0.0134052280336618,0.00051397574134171,-0.999914765357971,0.0130549734458327,-0.0153146786615252,-0.999789476394653,0.0136536993086338,8.81192900124006e-005,-0.999997496604919,0.00223821587860584,-0.0158629436045885,-0.999869763851166,0.00297089060768485,0.00763734802603722,-0.999961614608765,0.00428837770596147,0.00397991109639406,-0.994869291782379,0.101090237498283,0.00542977638542652,-0.999007821083069,0.0442031808197498,0.494109183549881,-0.865358769893646,0.0837274864315987,-0.99999988079071,-1.2336469550509e-019,0.000492610968649387,-0.99999988079071,-1.2336469550509e-019,0.000492610968649387,-0.99999988079071,-1.2336469550509e-019,0.000492610968649387,-0.999999701976776,-1.78022709506366e-019,0.000788277015089989,-0.999999701976776,-1.78022709506366e-019,0.000788277015089989,-0.999999701976776,-1.78022709506366e-019,0.000788277015089989,
  989. -0.999999582767487,-2.09560715194054e-019,0.00092551251873374,-0.999999582767487,-2.09560715194054e-019,0.00092551251873374,-0.999999582767487,-2.09560715194054e-019,0.00092551251873374,0.999910712242126,-2.8540963341323e-018,0.0133624095469713,0.999910712242126,-2.8540963341323e-018,0.0133624095469713,0.999910712242126,-2.8540963341323e-018,0.0133624095469713,0.999925434589386,-2.79027997025929e-018,0.0122134834527969,0.999925434589386,-2.79027997025929e-018,0.0122134834527969,0.999925434589386,-2.79027997025929e-018,0.0122134834527969,0.999907493591309,-3.03459686316357e-018,0.0136016299948096,0.999907493591309,-3.03459686316357e-018,0.0136016299948096,0.999907493591309,-3.03459686316357e-018,0.0136016299948096,0.017388267442584,0.00800948776304722,-0.999816715717316,0.017514742910862,0.0162951704114676,-0.999713838100433,0.0174535550177097,0.0161558669060469,-0.999717235565186,-0.000613657815847546,0.0157315842807293,-0.999876081943512,-0.000165524921612814,2.22084230185095e-016,-1,-0.000253011006861925,0.00787177961319685,-0.999969005584717,0.00716503337025642,2.22092038770078e-016,-0.999974429607391,0.0067631215788424,0.0159054379910231,-0.999850630760193,0.00716503337025642,2.22092038770078e-016,-0.999974429607391,0.0211862158030272,0.00837243534624577,-0.999740481376648,0.0210790615528822,0.0246055070310831,-0.999475002288818,0.0213033817708492,0.0165810063481331,-0.999635577201843,0.00891276076436043,0.0160962622612715,-0.999830722808838,0.00974459014832973,-0.00787339918315411,-0.99992161989212,0.00943400431424379,0.00809625815600157,-0.999922811985016,-0.00310468906536698,-0.00787373352795839,-0.99996417760849,-0.0037807491607964,0.0155971562489867,-0.99987131357193,-0.00310468906536698,-0.00787373352795839,-0.99996417760849,-0.00795722473412752,-0.0106558846309781,-0.999911665916443,-0.0159101523458958,-0.0104761216789484,-0.999818563461304,-8.43906454974785e-005,-0.0107176126912236,-0.999942660331726,5.15608116984367e-005,0.00654821982607245,-0.99997866153717,-0.0078736012801528,0.00657198671251535,-0.999947428703308,
  990. -0.00782155431807041,0.00661026034504175,-0.999947667121887,-0.0078725628554821,-0.0175247006118298,-0.999815464019775,-0.000138342889840715,-0.0175695531070232,-0.999845743179321,-0.0078725628554821,-0.0175247006118298,-0.999815464019775,-0.015745036303997,0.0115092843770981,-0.999809801578522,-0.00787325017154217,0.0115083614364266,-0.999902784824371,9.05093111214228e-005,0.0114946803078055,-0.999933958053589,-0.00787155330181122,-0.0237406026571989,-0.999687254428864,-0.00805828906595707,-0.0237164236605167,-0.999686241149902,-0.00018723274115473,-0.0237785615026951,-0.999717235565186,4.6290300815599e-005,0.00587886245921254,-0.999982714653015,-0.00782685726881027,0.00594080612063408,-0.999951720237732,-0.00782685726881027,0.00594080612063408,-0.999951720237732,-0.0143942004069686,-0.0631996840238571,0.997897088527679,-0.0143942004069686,-0.0631996840238571,0.997897088527679,-0.0145794134587049,-0.0553720816969872,0.998359441757202,-0.00907659158110619,-0.0552460737526417,0.998431622982025,-0.00889148097485304,-0.0630742460489273,0.997969329357147,-0.00907659158110619,-0.0552460737526417,0.998431622982025,0.00844650529325008,-0.0391389839351177,0.999198079109192,0.0088174706324935,-0.0548247806727886,0.998457074165344,0.0088174706324935,-0.0548247806727886,0.998457074165344,0.0169872231781483,-0.0389332696795464,0.999097406864166,0.0173586998134851,-0.0546174719929695,0.998356461524963,0.0169872231781483,-0.0389332696795464,0.999097406864166,0.999876081943512,-0.000290603173198178,0.0157460812479258,0.999969065189362,-0.000290587457129732,0.00787377264350653,0.999969065189362,-0.000290587457129732,0.00787377264350653,0.999968290328979,-0.00127034820616245,0.0078737661242485,0.999875366687775,-0.00135521066840738,0.0157354008406401,0.99987530708313,-0.00127041665837169,0.0157460682094097,0.999876022338867,-0.000242571652051993,0.0157441683113575,1,-0.000269744865363464,0,0.999876081943512,-0.000269696785835549,0.0157460812479258,0.999999582767487,0.000919557467568666,0,0.999875545501709,0.000950571440625936,0.0157535560429096,
  991. 0.999968588352203,0.000919728714507073,-0.00787376891821623,0.999876022338867,1.09620132207056e-005,-0.0157460793852806,1,1.09631873783655e-005,0,0.999969005584717,1.09622606032644e-005,-0.00787377171218395,0.999876022338867,1.62093892868143e-005,-0.0157460793852806,0.999969005584717,1.62098513101228e-005,-0.00787377171218395,0.999876022338867,1.62093892868143e-005,-0.0157460793852806,0.999820291996002,-0.0157452020794153,-0.0105673149228096,0.999820291996002,-0.0157452020794153,-0.0105673149228096,0.999913156032562,-0.00787333212792873,-0.0105680068954825,0.999957203865051,1.98114430276911e-018,-0.00925395358353853,0.999833226203918,-0.0157454051077366,-0.00925488118082285,0.999926209449768,-0.00787343457341194,-0.00925413053482771,0.999822854995728,-0.0157452411949635,-0.010314553976059,0.99994683265686,1.98172829228157e-018,-0.0103142261505127,0.99994683265686,1.98172829228157e-018,-0.0103142261505127,0.999967038631439,0.00787375587970018,-0.00198990479111671,0.999998033046722,0,-0.00198994157835841,0.999998033046722,0,-0.00198994157835841,0.999999344348907,0,-0.00122871494386345,0.999968349933624,0.00787376705557108,-0.00122869980987161,0.999968349933624,0.00787376705557108,-0.00122869980987161,1,-8.23847658466548e-005,0,0.999876022338867,-8.23741793283261e-005,0.0157460793852806,0.999876022338867,-8.23741793283261e-005,0.0157460793852806,0.999876022338867,3.64121951861307e-005,0.0157460793852806,1,3.64171246474143e-005,0,1,3.64171246474143e-005,0,0.999873757362366,0.00217612227424979,-0.0157460439950228,0.999997735023499,0.00217638397589326,0,0.999997735023499,0.00217638397589326,0,0.999999046325684,0.00137904298026115,0,0.999875068664551,0.00137885066214949,-0.0157460644841194,0.999875068664551,0.00137885066214949,-0.0157460644841194,0.999993741512299,0.00353555753827095,9.65718269109481e-019,0.999993741512299,0.00353555753827095,9.65718269109481e-019,0.999993741512299,0.00353555753827095,9.65718269109481e-019,0.99999612569809,0.00279294606298208,6.03613545314646e-019,0.99999612569809,0.00279294606298208,6.03613545314646e-019,
  992. 0.99999612569809,0.00279294606298208,6.03613545314646e-019,0.999969780445099,0.00777464173734188,2.00571508247954e-018,0.999969780445099,0.00777464173734188,2.00571508247954e-018,0.999969780445099,0.00777464173734188,2.00571508247954e-018,0.99999737739563,0.00229622307233512,4.76366904119541e-019,0.99999737739563,0.00229622307233512,4.76366904119541e-019,0.99999737739563,0.00229622307233512,4.76366904119541e-019,0.99999862909317,0.00166480452753603,2.7851742496271e-019,0.99999862909317,0.00166480452753603,2.7851742496271e-019,0.99999862909317,0.00166480452753603,2.7851742496271e-019,0.998514413833618,-0.000429043313488364,0.0544884949922562,0.998514413833618,-0.000429043313488364,0.0544884949922562,0.998514413833618,-0.000429043313488364,0.0544884949922562,0.998419940471649,-0.000442450022092089,0.0561911463737488,0.998419940471649,-0.000442450022092089,0.0561911463737488,0.998419940471649,-0.000442450022092089,0.0561911463737488,0.999352216720581,-0.000283364992355928,0.0359873659908772,0.999354958534241,-8.22600265347138e-018,0.0359115675091743,0.999352216720581,-0.000283364992355928,0.0359873659908772,0.999217867851257,-8.19781647409863e-018,0.0395455025136471,0.999214768409729,-0.000311972398776561,0.039620503783226,0.999217867851257,-8.19781647409863e-018,0.0395455025136471,0.9992715716362,-8.53085014206045e-018,0.0381622761487961,0.999240636825562,0.00786803662776947,0.0381613299250603,0.9992715716362,-8.53085014206045e-018,0.0381622761487961,0.999214708805084,0.00786783266812563,0.0388336516916752,0.999245643615723,-8.65369721637253e-018,0.038834672421217,0.999214708805084,0.00786783266812563,0.0388336516916752,0.999981224536896,-0.00612990697845817,-1.42385101060106e-018,0.999981224536896,-0.00612990697845817,-1.42385101060106e-018,0.999981224536896,-0.00612990697845817,-1.42385101060106e-018,0.99996018409729,-0.00892687495797873,-2.09495525606967e-018,0.99996018409729,-0.00892687495797873,-2.09495525606967e-018,0.99996018409729,-0.00892687495797873,-2.09495525606967e-018,0.999992072582245,-0.00398737518116832,-6.78052666011635e-019,
  993. 0.999992072582245,-0.00398737518116832,-6.78052666011635e-019,0.999992072582245,-0.00398737518116832,-6.78052666011635e-019,0.999995529651642,-0.00299908732995391,-7.22756556542509e-019,0.999995529651642,-0.00299908732995391,-7.22756556542509e-019,0.999995529651642,-0.00299908732995391,-7.22756556542509e-019,0.99996143579483,-0.00878104194998741,-1.67931891854801e-018,0.99996143579483,-0.00878104194998741,-1.67931891854801e-018,0.99996143579483,-0.00878104194998741,-1.67931891854801e-018,0.999968409538269,-0.00787376705557108,0.00109236303251237,0.999999463558197,-8.8702654466033e-006,0.00112652836833149,0.999999463558197,-8.8702654466033e-006,0.00112652836833149,0.999998986721039,1.16948458526167e-005,-0.00148523866664618,0.999967813491821,-0.00787376239895821,-0.00153526931535453,0.999998807907104,0,-0.0015352985356003,0.999202132225037,-0.00786773394793272,0.0391560345888138,0.999202311038971,0.00786773487925529,0.03915074467659,0.999233245849609,-8.31874366220899e-018,0.0391521789133549,0.99939239025116,0.0078692315146327,0.0339578092098236,0.999423265457153,-7.09260639559612e-018,0.0339586511254311,0.99939239025116,0.0078692315146327,0.0339578092098236,-0.99989902973175,-0.00787322036921978,0.0118309259414673,-0.999806046485901,-0.0157449766993523,0.0118306372314692,-0.999806046485901,-0.0157449766993523,0.0118306372314692,-0.999814748764038,-0.0157451145350933,0.0110688023269176,-0.999907732009888,-0.0078732892870903,0.0110690370202065,-0.999907732009888,-0.0078732892870903,0.0110690370202065,-0.997280716896057,1.63455488164684e-017,-0.0736968517303467,-0.997249782085419,-0.00785236060619354,-0.073697030544281,-0.997249782085419,-0.00785236060619354,-0.073697030544281,-0.996979534626007,-0.00785023253411055,-0.0772672444581985,-0.997010409832001,1.71588079793122e-017,-0.0772671550512314,-0.997010409832001,1.71588079793122e-017,-0.0772671550512314,-0.999968886375427,-0.000507303513586521,-0.00787377078086138,-0.999721050262451,-0.000655210751574486,-0.0236103031784296,-0.999968886375427,-0.000507303513586521,-0.00787377078086138,
  994. -0.999969005584717,-9.30027672438882e-005,-0.00787377171218395,-0.999504387378693,-0.000314056407660246,-0.0314779803156853,-0.999721229076386,-0.000252118654316291,-0.0236134827136993,-0.999504506587982,-0.00029044016264379,-0.0314781703054905,-0.999999940395355,-0.000370921072317287,0,-0.999721229076386,-0.000228519624215551,-0.0236136615276337,-0.999999940395355,-0.000384878308977932,0,-0.999504506587982,-0.000292040145723149,-0.0314781591296196,-0.999968945980072,-0.000385021412512288,0.00787377171218395,-0.999969005584717,3.22823289025109e-005,0.00787377171218395,-0.999876022338867,3.22804917232133e-005,0.0157460793852806,-1,3.22861669701524e-005,0,-0.999969065189362,0.000287036033114418,0.00787377264350653,-0.999876081943512,0.000287018512608483,0.0157460812479258,-0.999876081943512,0.000287018512608483,0.0157460812479258,-0.999953210353851,0.00562426308169961,-0.00787364691495895,-0.999705135822296,0.00548918498679996,-0.0236583091318607,-0.999953210353851,0.00562426308169961,-0.00787364691495895,-0.999504387378693,-0.000211180071346462,-0.0314787924289703,-0.999969005584717,-4.21299700974487e-005,-0.00787377171218395,-0.999721229076386,-0.000149259925819933,-0.0236142911016941,-0.999993622303009,-0.00357614317908883,0,-0.999499142169952,-0.00349990441463888,-0.0314527302980423,-0.999715864658356,-0.00343831884674728,-0.0235882587730885,-0.999499380588531,0.00292627699673176,-0.0315033383667469,-0.999995946884155,0.0028496750164777,0,-0.999964952468872,0.00285069621168077,0.00787374004721642,-0.999998271465302,0.00191196950618178,0,-0.999874293804169,0.00191161688417196,0.0157460533082485,-0.999967277050018,0.00191173399798572,0.00787375774234533,-0.999874830245972,-0.00155922584235668,0.0157460607588291,-0.999967813491821,-0.00155932980123907,0.00787376239895821,-0.999874830245972,-0.00155922584235668,0.0157460607588291,-0.999790608882904,-0.0157447345554829,0.0130724972113967,-0.999883651733398,-0.00787309929728508,0.0130731444805861,-0.999790608882904,-0.0157447345554829,0.0130724972113967,-0.999912977218628,-0.00787333026528358,0.0105852605774999,
  995. -0.999820113182068,-0.015745198354125,0.0105841029435396,-0.999912977218628,-0.00787333026528358,0.0105852605774999,-0.999997794628143,6.77065270854188e-019,-0.00210425234399736,-0.99996680021286,-0.00787375401705503,-0.00210425839759409,-0.99996680021286,-0.00787375401705503,-0.00210425839759409,-0.999997735023499,6.8021455424133e-019,-0.00213786796666682,-0.999966740608215,-0.00787375401705503,-0.00213787285611033,-0.999997735023499,6.8021455424133e-019,-0.00213786796666682,-0.999934673309326,0.00787350162863731,0.00829793699085712,-0.999965667724609,-1.94421379034591e-018,0.0082979891449213,-0.999965667724609,-1.94421379034591e-018,0.0082979891449213,-0.999971628189087,-1.96519295183664e-018,0.00754662416875362,-0.999940633773804,0.00787354819476604,0.00754658365622163,-0.999940633773804,0.00787354819476604,0.00754658365622163,-0.999843835830688,0.00803843513131142,0.0157455727458,-0.999967694282532,0.00803916156291962,2.3846411444161e-018,-0.999843835830688,0.00803843513131142,0.0157455727458,-0.999971449375153,0.00755814556032419,2.38521520776121e-018,-0.999847590923309,0.00755750481039286,0.0157456323504448,-0.999971449375153,0.00755814556032419,2.38521520776121e-018,-0.999932408332825,0.0116267530247569,1.99043581579477e-018,-0.999901413917542,0.0116257108747959,-0.00787323992699385,-0.999932408332825,0.0116267530247569,1.99043581579477e-018,-0.999960899353027,-0.00405214494094253,-0.0078737074509263,-0.999991774559021,-0.00405249139294028,0,-0.999960899353027,-0.00405214494094253,-0.0078737074509263,-0.999965369701386,-0.0027291071601212,-0.00787374377250671,-0.999996304512024,-0.00272897630929947,-4.74745423323784e-019,-0.999965369701386,-0.0027291071601212,-0.00787374377250671,-0.999994397163391,0.00335319596342742,7.44875055929447e-019,-0.999963402748108,0.00335330190137029,-0.00787372794002295,-0.999994397163391,0.00335319596342742,7.44875055929447e-019,-0.998365640640259,-0.000449984421720728,-0.0571480169892311,-0.998365640640259,-0.000449984421720728,-0.0571480169892311,-0.998365640640259,-0.000449984421720728,-0.0571480169892311,
  996. -0.998246788978577,-0.000466038211015984,-0.0591868460178375,-0.998246788978577,-0.000466038211015984,-0.0591868460178375,-0.998246788978577,-0.000466038211015984,-0.0591868460178375,-0.999289572238922,-0.000296766171231866,-0.0376893021166325,-0.999288737773895,8.15816805297774e-018,-0.0377099514007568,-0.999289572238922,-0.000296766171231866,-0.0376893021166325,-0.99917459487915,9.16293276251733e-018,-0.0406245924532413,-0.999175369739532,-0.000319715443765745,-0.0406038574874401,-0.99917459487915,9.16293276251733e-018,-0.0406245924532413,-0.999286234378815,8.53069628646651e-018,-0.0377761870622635,-0.999286234378815,8.53069628646651e-018,-0.0377761870622635,-0.999286234378815,8.53069628646651e-018,-0.0377761870622635,-0.999253153800964,8.65365833888374e-018,-0.0386414118111134,-0.999253153800964,8.65365833888374e-018,-0.0386414118111134,-0.999253153800964,8.65365833888374e-018,-0.0386414118111134,-0.99986606836319,-0.00448253424838185,0.0157459229230881,-0.999990046024323,-0.00448298826813698,0,-0.99986606836319,-0.00448253424838185,0.0157459229230881,-0.999985992908478,-0.00529019767418504,-2.34459443583026e-018,-0.999862134456635,-0.0052894726395607,0.0157458614557981,-0.999985992908478,-0.00529019767418504,-2.34459443583026e-018,-0.999974846839905,0.007093436550349,2.0076233881527e-018,-0.999943852424622,0.00709279533475637,-0.00787357334047556,-0.999974846839905,0.007093436550349,2.0076233881527e-018,-0.999894320964813,-0.0122225200757384,-0.0078731831163168,-0.999925315380096,-0.0122235780581832,-2.01228000141107e-018,-0.999894320964813,-0.0122225200757384,-0.0078731831163168,-0.999923706054688,-0.0123541727662086,-2.62926967761615e-018,-0.999892711639404,-0.0123544251546264,-0.00787317100912333,-0.999892711639404,-0.0123544251546264,-0.00787317100912333,-0.999942600727081,-0.00726964883506298,-0.00787356402724981,-0.999973595142365,-0.007269486784935,-1.66491522254162e-018,-0.999973595142365,-0.007269486784935,-1.66491522254162e-018,-0.999931454658508,-0.00780466990545392,0.00873842556029558,-0.999962389469147,6.83156322338618e-005,0.00867608655244112,
  997. -0.999962389469147,6.83156322338618e-005,0.00867608655244112,-0.999912142753601,0.000104381440905854,0.0132564418017864,-0.999881148338318,-0.00776820816099644,0.0133187090978026,-0.999881148338318,-0.00776820816099644,0.0133187090978026,-0.99981552362442,3.84357660710829e-018,-0.0192081220448017,-0.999782800674438,-0.00802380125969648,-0.0192399118095636,-0.999782800674438,-0.00802380125969648,-0.0192399118095636,-0.99988842010498,-0.00797262322157621,-0.0126346964389086,-0.999920606613159,1.9200392301489e-018,-0.0126025853678584,-0.999920606613159,1.9200392301489e-018,-0.0126025853678584,-0.9991734623909,0.00786750763654709,-0.0398833341896534,-0.999204218387604,9.33689794432397e-018,-0.0398862287402153,-0.999204218387604,9.33689794432397e-018,-0.0398862287402153,-0.999306857585907,7.52208353271733e-018,-0.0372288525104523,-0.999275863170624,0.00786831416189671,-0.0372271575033665,-0.999275863170624,0.00786831416189671,-0.0372271575033665,-0.135942563414574,0.990711629390717,0.00321097811684012,-0.0268630962818861,0.999201774597168,0.0295670032501221,-0.145232260227203,0.730260729789734,0.667552888393402,0.0188867039978504,0.999821543693542,-0.000446145597379655,0.0197607893496752,0.999804317951202,0.000933580391574651,0.0177903473377228,0.999305725097656,0.0327349342405796,-0.00555903138592839,0.999984622001648,-0.00026263139443472,-0.00548442872241139,0.999984979629517,0.000129553736769594,-0.0054473471827805,0.999985158443451,0.000257355015492067,-0.00802702642977238,0.999967813491821,0.000379229808459058,-0.00904024485498667,0.999959051609039,-0.000427098042564467,-0.00802702642977238,0.999967813491821,0.000379229808459058,-0.000701395270880312,0.999999761581421,2.22031978840161e-016,-0.000743628828786314,0.999999821186066,-3.51320559275337e-005,-0.000656037824228406,0.99999988079071,3.09939314320218e-005,0.0160213783383369,0.999871373176575,-0.000756915658712387,0.0164268743246794,0.999865174293518,2.22256521980522e-016,0.0160213783383369,0.999871373176575,-0.000756915658712387,-0.261541426181793,0.901279330253601,-0.345386296510696,
  998. -0.364980101585388,0.931015312671661,2.31913729900626e-016,-0.34455007314682,0.938626825809479,0.016277963295579,0.11052729934454,0.993798494338989,0.0121766394004226,0.0363808274269104,0.999239683151245,0.0140172615647316,0.16752153635025,0.847408592700958,0.503820598125458,0.00848377868533134,0.999930322170258,0.008207474835217,0.00843535829335451,0.999930739402771,-0.00820557121187449,0.00947688706219196,0.999838173389435,0.0152977574616671,0.0133126545697451,0.999876141548157,-0.00839716102927923,0.0132578425109386,0.999876976013184,0.00839500967413187,0.0141870956867933,0.999784052371979,-0.0151860825717449,-0.0156075665727258,0.999744355678558,-0.0163584761321545,-0.0147507535293698,0.999864637851715,-0.00729221105575562,-0.0147507535293698,0.999864637851715,-0.00729221105575562,-0.00515680853277445,0.999956965446472,0.00771125731989741,-0.00489392317831516,0.999958515167236,-0.0076810154132545,-0.00432305317372084,0.999863982200623,-0.0159160885959864,-0.00810101628303528,0.999938666820526,-0.00755459535866976,-0.00705709680914879,0.999945819377899,0.00765131879597902,-0.0074803433381021,0.999938666820526,0.00816803425550461,0.00321733555756509,0.999873638153076,-0.0155687080696225,0.00164208153728396,0.99996817111969,0.00780911603942513,0.00185263098683208,0.99996680021286,0.00793210510164499,0.0292849689722061,0.999424457550049,-0.0171225108206272,0.0303889065980911,0.999515891075134,0.00667379004880786,0.0313791856169701,0.999409377574921,-0.0140091693028808,0.155779987573624,0.86838436126709,-0.470787823200226,0.00512963766232133,0.758662045001984,-0.651464343070984,-0.0301654953509569,0.769028067588806,-0.638502836227417,0.000756920257117599,0.999871373176575,0.0160214751958847,-0.000129820517031476,0.999864161014557,0.0164872128516436,0.000756920257117599,0.999871373176575,0.0160214751958847,-0.00779864890500903,0.999968349933624,-0.00158998975530267,-5.59061118110549e-005,0.999999403953552,-0.0011833457974717,9.50104549701791e-006,0.999999284744263,-0.001206633169204,-0.000332963332766667,0.999975204467773,-0.00704772071912885,
  999. -0.00747847557067871,0.999937176704407,-0.00836180802434683,-0.000332963332766667,0.999975204467773,-0.00704772071912885,-0.00778247276321054,0.999967873096466,-0.001932303304784,-0.0079111959785223,0.999967992305756,-0.00118846620898694,-6.6568492911756e-005,0.999999105930328,-0.00140903249848634,-0.0317817181348801,0.999474465847015,0.00639665499329567,-0.00767072336748242,0.999949932098389,0.00644205464050174,-0.00822831504046917,0.999937951564789,0.00750970328226686,-0.00887300912290812,0.999453127384186,-0.0318547412753105,-0.029956916347146,0.99904078245163,-0.0319391787052155,-0.0407615825533867,0.998702228069305,-0.030534939840436,-0.0121913785114884,0.993755638599396,0.11091024428606,-0.0140022924169898,0.999228537082672,0.0366939790546894,-0.503989636898041,0.847228348255157,0.167924299836159,-0.00820891559123993,0.999930024147034,0.00852045882493258,0.00820720568299294,0.999930381774902,0.00847692973911762,-0.0152957644313574,0.999837815761566,0.00951893534511328,0.00836897455155849,0.999885678291321,0.0125948255881667,-0.00835990346968174,0.999888598918915,0.0123638082295656,0.0153290890157223,0.999795377254486,0.0131991067901254,0.0160463787615299,0.999825537204742,-0.00955975987017155,-0.00822128728032112,0.999927163124084,-0.00883524492383003,0.0075013036839664,0.999927282333374,-0.00945234578102827,0.0159519612789154,0.999851405620575,-0.00654904684051871,-0.0154451057314873,0.999851584434509,-0.00763491773977876,-0.0081469751894474,0.999942719936371,-0.00694461679086089,-0.00763414241373539,0.999952375888824,0.00608324958011508,-0.00763414241373539,0.999952375888824,0.00608324958011508,-0.0160276666283607,0.9998459815979,0.00716438936069608,-0.714024305343628,-0.699756026268005,0.0226013120263815,-0.733073949813843,-0.678227663040161,-0.0510863848030567,-0.480061054229736,-0.870710134506226,-0.106795288622379,0.022222138941288,-0.99971479177475,-0.00874665752053261,0.0222803857177496,-0.999713599681854,0.00874894112348557,0.0234349295496941,-0.999621033668518,-0.0144503749907017,0.025419395416975,-0.999637484550476,0.00887192506343126,
  1000. 0.0251286514103413,-0.999645054340363,-0.00886053778231144,0.0259763672947884,-0.999551177024841,0.0149228097870946,-0.0155614418908954,-0.999747097492218,0.0162341725081205,-0.0147506603971124,-0.999864637851715,0.00729221478104591,-0.0147506603971124,-0.999864637851715,0.00729221478104591,-0.00601142412051558,-0.999952435493469,-0.00768430484458804,-0.00613169651478529,-0.999952077865601,0.00763223320245743,-0.00526892021298409,-0.999859511852264,0.0159117691218853,-0.00810093060135841,-0.999938666820526,0.00755459908396006,-0.00705716665834188,-0.999945819377899,-0.00765131693333387,-0.00748025812208653,-0.999938666820526,-0.00816803146153688,0.00716986833140254,-0.999464392662048,0.0319308377802372,0.0094786761328578,-0.999927043914795,-0.00750026572495699,0.00894659664481878,-0.999926745891571,-0.00815522111952305,-0.285750389099121,0.834147930145264,-0.471745908260345,-0.325293868780136,0.944277822971344,-0.0502319596707821,-0.290119677782059,0.956845164299011,0.0166718177497387,-0.0257312525063753,-0.999668657779694,-0.000810433004517108,-0.0256343632936478,-0.999649226665497,-0.00666018109768629,-0.0246782302856445,-0.999388456344604,-0.0247735027223825,-0.00360822002403438,-0.999993503093719,-0.00011364458623575,-0.00343926786445081,-0.999994099140167,5.41616973350756e-005,-0.00368942436762154,-0.999963581562042,-0.00769942486658692,-0.00241887173615396,-0.999997079372406,3.80924684577622e-005,-0.00251382379792631,-0.999996840953827,-7.91754719102755e-005,-0.00254292343743145,-0.999996781349182,-0.000120138094644062,0.0233316849917173,-0.999726951122284,0.00128599838353693,0.0233187675476074,-0.99972802400589,-0.000367224711226299,0.0233417972922325,-0.999726951122284,0.0011027620639652,0.0106836510822177,-0.999943017959595,-0.000168246464454569,0.010795914568007,-0.999941647052765,0.000595050456468016,0.0108077563345432,-0.999911904335022,0.00770312268286943,-0.999995589256287,-6.59970342724861e-019,0.00297273695468903,-0.999995589256287,-6.59970342724861e-019,0.00297273695468903,-0.999995589256287,-6.59970342724861e-019,0.00297273695468903,
  1001. -0.999980390071869,-1.40876530417962e-018,0.00626217713579535,-0.999980390071869,-1.40876530417962e-018,0.00626217713579535,-0.999980390071869,-1.40876530417962e-018,0.00626217713579535,-0.999994695186615,7.23157635742021e-019,-0.00328712561167777,-0.999994695186615,7.23157635742021e-019,-0.00328712561167777,-0.999994695186615,7.23157635742021e-019,-0.00328712561167777,-0.999994456768036,7.36509778394699e-019,-0.00332947983406484,-0.999994456768036,7.36509778394699e-019,-0.00332947983406484,-0.999994456768036,7.36509778394699e-019,-0.00332947983406484,-0.999995589256287,-6.50148658625348e-019,0.00297799427062273,-0.999995589256287,-6.50148658625348e-019,0.00297799427062273,-0.999995589256287,-6.50148658625348e-019,0.00297799427062273,-0.999994218349457,-7.54233105295625e-019,0.00339676439762115,-0.999994218349457,-7.54233105295625e-019,0.00339676439762115,-0.999994218349457,-7.54233105295625e-019,0.00339676439762115,-0.999989092350006,1.03721345400639e-018,-0.00467119412496686,-0.999989092350006,1.03721345400639e-018,-0.00467119412496686,-0.999989092350006,1.03721345400639e-018,-0.00467119412496686,-0.999994516372681,7.49814151367002e-019,-0.003341592149809,-0.999994516372681,7.49814151367002e-019,-0.003341592149809,-0.999994516372681,7.49814151367002e-019,-0.003341592149809,-0.999966084957123,-0.00245234044268727,0.00787374936044216,-0.999997019767761,-0.00245238491334021,-1.04248704060415e-018,-0.999966084957123,-0.00245234044268727,0.00787374936044216,-0.999997198581696,-0.00240944139659405,-1.04280591873029e-018,-0.999966204166412,-0.00240940041840076,0.00787374936044216,-0.999997198581696,-0.00240944139659405,-1.04280591873029e-018,-0.999997735023499,-0.002125647617504,-5.1547988089017e-019,-0.999997735023499,-0.002125647617504,-5.1547988089017e-019,-0.999997735023499,-0.002125647617504,-5.1547988089017e-019,-0.999997794628143,-0.00209456589072943,-5.15424614885494e-019,-0.999997794628143,-0.00209456589072943,-5.15424614885494e-019,-0.999997794628143,-0.00209456589072943,-5.15424614885494e-019,-0.99999988079071,0,0.000533212791197002,
  1002. -0.99999988079071,0,0.000533212791197002,-0.99999988079071,0,0.000533212791197002,-0.999999344348907,2.56276942284814e-019,-0.00122466485481709,-0.999999344348907,2.56276942284814e-019,-0.00122466485481709,-0.999999344348907,2.56276942284814e-019,-0.00122466485481709,-0.999998807907104,-2.60528081946666e-019,0.00160218204837292,-0.999998807907104,-2.60528081946666e-019,0.00160218204837292,-0.999998807907104,-2.60528081946666e-019,0.00160218204837292,-0.999996781349182,5.16090702073752e-019,-0.00253366306424141,-0.999996781349182,5.16090702073752e-019,-0.00253366306424141,-0.999996781349182,5.16090702073752e-019,-0.00253366306424141,-0.999998807907104,-3.84988132603838e-019,0.00160561269149184,-0.999998807907104,-3.84988132603838e-019,0.00160561269149184,-0.999998807907104,-3.84988132603838e-019,0.00160561269149184,-1,0,-0.000212700586416759,-1,0,-0.000212700586416759,-1,0,-0.000212700586416759,-0.999998509883881,-0.00173176196403801,0,-0.999967515468597,-0.00173175125382841,-0.00787375960499048,-0.999967515468597,-0.00173175125382841,-0.00787375960499048,-0.999966561794281,-0.00221156049519777,-0.00787375215440989,-0.999997556209564,-0.0022115739993751,-9.66042834102331e-019,-0.999997556209564,-0.0022115739993751,-9.66042834102331e-019,-0.999964773654938,-0.00294126570224762,0.00787373818457127,-0.999995768070221,-0.00294133415445685,-1.09404200285971e-018,-0.999995768070221,-0.00294133415445685,-1.09404200285971e-018,-0.999996662139893,-0.00262055289931595,-1.09385175131882e-018,-0.999965667724609,-0.00262049213051796,0.00787374563515186,-0.999965667724609,-0.00262049213051796,0.00787374563515186,-0.999967753887177,0.00164396257605404,0.00787376239895821,-0.999967753887177,0.00164396257605404,0.00787376239895821,-0.999967753887177,0.00164396257605404,0.00787376239895821,-0.999999582767487,-0.00101327185984701,0,-0.999968588352203,-0.00101327954325825,0.00787376891821623,-0.999968588352203,-0.00101327954325825,0.00787376891821623,-0.999968647956848,-0.000836142164189368,0.00787376891821623,-0.999999642372131,-0.000836149323731661,0,
  1003. -0.999999642372131,-0.000836149323731661,0,-0.999999523162842,-0.000985370948910713,0,-0.999968528747559,-0.000985352788120508,-0.00787376798689365,-0.999968528747559,-0.000985352788120508,-0.00787376798689365,-0.999962151050568,0.00372771359980106,-0.00787371769547462,-0.999993145465851,0.00372778298333287,9.71331516746266e-019,-0.999993145465851,0.00372778298333287,9.71331516746266e-019,-0.999968469142914,-0.00103493663482368,0.00787376705557108,-0.999999463558197,-0.00103497051168233,0,-0.999999463558197,-0.00103497051168233,0,-0.999993860721588,0.00353334122337401,1.01979685601636e-018,-0.999962866306305,0.00353322853334248,0.00787372328341007,-0.999962866306305,0.00353322853334248,0.00787372328341007,-0.999874114990234,-0.00200004992075264,0.0157460495829582,-0.999967098236084,-0.00200007227249444,0.00787375681102276,-0.999874114990234,-0.00200004992075264,0.0157460495829582,-0.999966621398926,-0.00219398154877126,0.00787375308573246,-0.999873638153076,-0.00219395919702947,0.0157460421323776,-0.999966621398926,-0.00219398154877126,0.00787375308573246,-0.999966502189636,-0.00227841828018427,0.00787375215440989,-0.999997496604919,-0.0022783640306443,-5.01238674175362e-019,-0.999966502189636,-0.00227841828018427,0.00787375215440989,-0.999997556209564,-0.00221595703624189,-5.01493600900394e-019,-0.999966561794281,-0.00221601175144315,0.00787375215440989,-0.999997556209564,-0.00221595703624189,-5.01493600900394e-019,-0.999967634677887,-0.0016602638643235,-0.00787376053631306,-0.99999862909317,-0.00166029250249267,0,-0.999967634677887,-0.0016602638643235,-0.00787376053631306,-0.99999612569809,0.00278476881794631,9.69365101635074e-019,-0.999965131282806,0.00278471922501922,-0.00787374097853899,-0.99999612569809,0.00278476881794631,9.69365101635074e-019,-0.999998807907104,-0.00155326421372592,0,-0.999967813491821,-0.00155321834608912,0.00787376239895821,-0.999998807907104,-0.00155326421372592,0,-0.999964475631714,0.00301035214215517,0.00787373632192612,-0.999995470046997,0.00301044271327555,1.01857593743223e-018,-0.999964475631714,0.00301035214215517,0.00787373632192612,
  1004. 0.999995589256287,6.59590666823699e-019,-0.00297181983478367,0.999995589256287,6.59590666823699e-019,-0.00297181983478367,0.999995589256287,6.59590666823699e-019,-0.00297181983478367,0.999993562698364,8.12567950044396e-019,-0.00358656886965036,0.999993562698364,8.12567950044396e-019,-0.00358656886965036,0.999993562698364,8.12567950044396e-019,-0.00358656886965036,0.99998414516449,-1.25879735572618e-018,0.00563352461904287,0.99998414516449,-1.25879735572618e-018,0.00563352461904287,0.99998414516449,-1.25879735572618e-018,0.00563352461904287,0.999994456768036,-7.42572443598041e-019,0.00333015387877822,0.999994456768036,-7.42572443598041e-019,0.00333015387877822,0.999994456768036,-7.42572443598041e-019,0.00333015387877822,0.999998688697815,3.79345675151672e-019,-0.00162505742628127,0.999998688697815,3.79345675151672e-019,-0.00162505742628127,0.999998688697815,3.79345675151672e-019,-0.00162505742628127,0.999988615512848,1.05942759615166e-018,-0.00477123772725463,0.999988615512848,1.05942759615166e-018,-0.00477123772725463,0.999988615512848,1.05942759615166e-018,-0.00477123772725463,0.99998939037323,-1.02253720198817e-018,0.00460508465766907,0.99998939037323,-1.02253720198817e-018,0.00460508465766907,0.99998939037323,-1.02253720198817e-018,0.00460508465766907,0.999994575977325,-7.49175516235322e-019,0.00329908519051969,0.999994575977325,-7.49175516235322e-019,0.00329908519051969,0.999994575977325,-7.49175516235322e-019,0.00329908519051969,0.9999960064888,-0.00282259401865304,-1.04248910855568e-018,0.999965012073517,-0.00282254256308079,-0.00787374004721642,0.999965012073517,-0.00282254256308079,-0.00787374004721642,0.999966204166412,-0.00240940041840076,-0.00787374936044216,0.999997198581696,-0.00240944139659405,-1.04280591873029e-018,0.999997198581696,-0.00240944139659405,-1.04280591873029e-018,0.999997735023499,-0.0021256972104311,-5.1547988089017e-019,0.999997735023499,-0.0021256972104311,-5.1547988089017e-019,0.999997735023499,-0.0021256972104311,-5.1547988089017e-019,0.999997079372406,-0.00241369847208261,-5.15424821680647e-019,
  1005. 0.999997079372406,-0.00241369847208261,-5.15424821680647e-019,0.999997079372406,-0.00241369847208261,-5.15424821680647e-019,0.999924302101135,-2.69793414705933e-018,0.0123058008030057,0.999924302101135,-2.69793414705933e-018,0.0123058008030057,0.999924302101135,-2.69793414705933e-018,0.0123058008030057,0.999876797199249,-3.5339769659001e-018,0.0157037749886513,0.999876797199249,-3.5339769659001e-018,0.0157037749886513,0.999876797199249,-3.5339769659001e-018,0.0157037749886513,0.999908864498138,-2.77305889708655e-018,0.0135007603093982,0.999908864498138,-2.77305889708655e-018,0.0135007603093982,0.999908864498138,-2.77305889708655e-018,0.0135007603093982,0.999962866306305,-0.00787372328341007,0.00349998497404158,0.999993860721588,-9.84685106965015e-019,0.00349998683668673,0.999962866306305,-0.00787372328341007,0.00349998497404158,0.999995410442352,-4.92220699438521e-019,0.00303071667440236,0.999964416027069,-0.00787373539060354,0.00303070689551532,0.999995410442352,-4.92220699438521e-019,0.00303071667440236,0.999994814395905,-9.84055312326133e-019,0.00322281522676349,0.999963819980621,0.00787373073399067,0.00322271953336895,0.999994814395905,-9.84055312326133e-019,0.00322281522676349,0.999963223934174,0.0078737260773778,0.00342848827131093,0.999994218349457,-9.85273025585387e-019,0.00342858000658453,0.999963223934174,0.0078737260773778,0.00342848827131093,0.999999940395355,0,-0.000370573106920347,0.999968945980072,-0.00787377078086138,-0.000370571913663298,0.999968945980072,-0.00787377078086138,-0.000370571913663298,0.999969065189362,-0.00787377264350653,-0.000293104123556986,1,0,-0.000293105287710205,1,0,-0.000293105287710205,0.999968707561493,0.00787376891821623,-0.000766381912399083,0.999999701976776,0,-0.000766407232731581,0.999999701976776,0,-0.000766407232731581,0.999999523162842,0,-0.00107687117997557,0.999968528747559,0.00787376798689365,-0.00107683660462499,0.999968528747559,0.00787376798689365,-0.00107683660462499,0.999999046325684,0.0013879764592275,2.58971095389294e-019,0.999999046325684,0.0013879764592275,2.58971095389294e-019,
  1006. 0.999999046325684,0.0013879764592275,2.58971095389294e-019,0.999998152256012,0.001920583890751,5.17901452133419e-019,0.999998152256012,0.001920583890751,5.17901452133419e-019,0.999998152256012,0.001920583890751,5.17901452133419e-019,0.999999403953552,-0.00111531070433557,0,0.999968469142914,-0.00111529312562197,0.00787376798689365,0.999999403953552,-0.00111531070433557,0,0.999967575073242,-0.00168588326778263,0.00787376053631306,0.999998569488525,-0.00168590375687927,0,0.999967575073242,-0.00168588326778263,0.00787376053631306,0.999968528747559,-0.000981657998636365,0.00787376798689365,0.999999523162842,-0.000981668592430651,0,0.999968528747559,-0.000981657998636365,0.00787376798689365,0.99999326467514,0.00367635558359325,9.71322314361951e-019,0.999962270259857,0.00367631483823061,0.0078737186267972,0.99999326467514,0.00367635558359325,9.71322314361951e-019,0.999999463558197,-0.0010411364492029,0,0.999968469142914,-0.0010411124676466,-0.00787376705557108,0.999999463558197,-0.0010411364492029,0,0.999962568283081,0.0035889174323529,-0.00787372142076492,0.999993562698364,0.00358899752609432,1.01977969201865e-018,0.999962568283081,0.0035889174323529,-0.00787372142076492,0.999967455863953,-0.00181031960528344,-0.00787375960499048,0.999998390674591,-0.0018103503389284,0,0.999967455863953,-0.00181031960528344,-0.00787375960499048,0.999996185302734,-0.00275740586221218,-1.03790249545665e-018,0.999965190887451,-0.00275735487230122,-0.00787374190986156,0.999996185302734,-0.00275740586221218,-1.03790249545665e-018,0.999997496604919,-0.00223187147639692,0,0.999966502189636,-0.00223179324530065,0.00787375215440989,0.999997496604919,-0.00223187147639692,0,0.999966621398926,-0.00218045734800398,0.00787375308573246,0.999997615814209,-0.00218053604476154,0,0.999966621398926,-0.00218045734800398,0.00787375308573246,0.999967634677887,-0.00166885484941304,0.00787376053631306,0.99999862909317,-0.00166887056548148,0,0.999967634677887,-0.00166885484941304,0.00787376053631306,0.999995231628418,0.00309418491087854,9.69334806145139e-019,0.999964237213135,0.003094153245911,0.00787373445928097,
  1007. 0.999995231628418,0.00309418491087854,9.69334806145139e-019,0.999998807907104,-0.00155903550330549,0,0.999967813491821,-0.00155900453682989,-0.00787376239895821,0.999998807907104,-0.00155903550330549,0,0.99996542930603,0.00267602852545679,-0.00787374377250671,0.999996423721313,0.0026760830078274,1.0185407822562e-018,0.99996542930603,0.00267602852545679,-0.00787374377250671,-0.0323428697884083,0.0165016520768404,0.99934059381485,-0.0324128568172455,0.0167584232985973,0.999334156513214,-0.0322563536465168,0.00812364555895329,0.999446630477905,-0.0143291354179382,-2.22021112995635e-016,0.999897360801697,-0.0139999529346824,0.0160751603543758,0.999772787094116,-0.0142828663811088,0.00798542518168688,0.999866127967834,-0.0185133032500744,-2.21808904772568e-016,0.999828636646271,-0.0181989837437868,0.0161732602864504,0.999703586101532,-0.0185133032500744,-2.21808904772568e-016,0.999828636646271,-0.0174535550177097,0.0161558669060469,0.999717235565186,-0.017388267442584,0.00800948776304722,0.999816715717316,-0.017514742910862,0.0162951704114676,0.999713838100433,0.00061365874717012,0.0157315842807293,0.999876081943512,0.000165525954798795,-2.21885746542752e-016,1,0.000253011996392161,0.00787177961319685,0.999969005584717,-0.00814318843185902,-2.22084971338924e-016,0.999966859817505,-0.00774088175967336,0.0159284174442291,0.999843180179596,-0.00814318843185902,-2.22084971338924e-016,0.999966859817505,0.000468853948405012,0.0198478735983372,0.999802887439728,-0.00709715252742171,0.0196885149925947,0.99978095293045,0.000468853948405012,0.0198478735983372,0.999802887439728,-0.00747730489820242,0.0100607601925731,0.999921441078186,0.0002226447686553,0.00942549575120211,0.999955654144287,-0.00747730489820242,0.0100607601925731,0.999921441078186,-0.00678726891055703,0.0275230016559362,0.999598145484924,-0.00634504202753305,0.0276823379099369,0.999596655368805,-0.00678726891055703,0.0275230016559362,0.999598145484924,-0.00735665950924158,0.00937618501484394,0.999929070472717,-0.00749898236244917,0.00951119977980852,0.999926745891571,
  1008. -0.00735665950924158,0.00937618501484394,0.999929070472717,-0.0153754530474544,0.016349395737052,0.999748110771179,-0.0151595687493682,0.0243285391479731,0.999589085578918,-0.0152437565848231,0.00823292415589094,0.999849915504456,-0.0355131290853024,-2.2178149531579e-016,0.999369204044342,-0.0349486283957958,0.0171120334416628,0.999242603778839,-0.035371407866478,0.00870433542877436,0.999336421489716,-0.0124457376077771,-2.22058660378e-016,0.999922573566437,-0.0119807459414005,0.0162165127694607,0.999796748161316,-0.0124457376077771,-2.22058660378e-016,0.999922573566437,-0.0213033817708492,0.0165810063481331,0.999635577201843,-0.0211862158030272,0.00837243534624577,0.999740481376648,-0.0210790615528822,0.024605505168438,0.999475002288818,-0.00891276448965073,0.0160962622612715,0.999830722808838,-0.00974459480494261,-0.00787339918315411,0.99992161989212,-0.00943400803953409,0.00809625815600157,0.999922811985016,0.00310468999668956,-0.00787373352795839,0.99996417760849,0.00378074473701417,0.0155971562489867,0.99987131357193,0.00310468999668956,-0.00787373352795839,0.99996417760849,0.0313232876360416,0.0164780840277672,-0.999373495578766,0.0313931778073311,0.0167268253862858,-0.999367117881775,0.0312372110784054,0.00811587553471327,-0.999479055404663,0.0158298276364803,0.00799742247909307,-0.999842822551727,0.0158762354403734,2.22024474657644e-016,-0.99987405538559,0.0155461458489299,0.0161113161593676,-0.999749362468719,0.0176515001803637,0.016160486266017,-0.999713599681854,0.0179655700922012,2.21809103295915e-016,-0.999838709831238,0.0179655700922012,2.21809103295915e-016,-0.999838709831238,-0.000453617365565151,0.0192028600722551,-0.99981552362442,0.00712258648127317,0.0190449748188257,-0.999793350696564,-0.000453617365565151,0.0192028600722551,-0.99981552362442,0.00747730489820242,0.010060753673315,-0.999921441078186,-0.000222644608584233,0.00942548923194408,-0.999955654144287,0.00747730489820242,0.010060753673315,-0.999921441078186,0.00677262153476477,0.027893016114831,-0.999587953090668,0.00632456224411726,0.0280524510890245,-0.999586462974548,
  1009. 0.00677262153476477,0.027893016114831,-0.999587953090668,0.00733826868236065,0.00970941036939621,-0.999926030635834,0.00748581858351827,0.00984491780400276,-0.999923527240753,0.00733826868236065,0.00970941036939621,-0.999926030635834,0.0151140857487917,0.0163391698151827,-0.999752283096313,0.0148981660604477,0.0243162903934717,-0.999593317508698,0.0149825727567077,0.00822678580880165,-0.999853909015656,0.0350768752396107,0.00869745947420597,-0.999346792697906,0.0352183543145657,2.21782315878958e-016,-0.999379754066467,0.0346544273197651,0.0171006172895432,-0.999253153800964,0.0127749871462584,0.0162476189434528,-0.999786376953125,0.0132411550730467,2.22062233798246e-016,-0.999912321567535,0.0132411550730467,2.22062233798246e-016,-0.999912321567535,-0.0137113118544221,-0.0631842166185379,0.997907698154449,-0.0138965742662549,-0.0553565286099911,0.998369932174683,-0.0137113118544221,-0.0631842166185379,0.997907698154449,-0.00809277500957251,-0.055223360657692,0.998441219329834,-0.00790765322744846,-0.0630516111850739,0.997978925704956,-0.00809277500957251,-0.055223360657692,0.998441219329834,0.0095688970759511,-0.0548067092895508,0.998451232910156,0.00919779855757952,-0.0391210056841373,0.999192237854004,0.0095688970759511,-0.0548067092895508,0.998451232910156,0.0138589683920145,-0.0390089526772499,0.99914276599884,0.0142303481698036,-0.0546938665211201,0.998401761054993,0.0138589683920145,-0.0390089526772499,0.99914276599884,0.0228911470621824,0.00841240864247084,-0.999702572822571,0.0230610743165016,0.00127108278684318,-0.99973326921463,0.0228911470621824,0.00841240864247084,-0.999702572822571,0.0237851329147816,0.00843336246907711,-0.999681532382965,0.0245100799947977,0.00135094986762851,-0.99969869852066,0.0239361170679331,0.00881382077932358,-0.999674618244171,0.0249808356165886,0.00137689616531134,-0.999687075614929,0.0249808356165886,0.00137689616531134,-0.999687075614929,0.0247696116566658,0.00884647388011217,-0.999654054641724,0.00610706489533186,0.000240435139858164,-0.999981343746185,0.00568778347223997,0.00800799299031496,-0.999951779842377,
  1010. 0.00568778347223997,0.00800799299031496,-0.999951779842377,0.0136016951873899,0.00819432269781828,-0.9998739361763,0.0138274896889925,0.000544389244168997,-0.999904274940491,0.0138605674728751,0.000763968389946967,-0.999903738498688,0.0377845615148544,0.00208261329680681,-0.999283730983734,0.0380051024258137,0.00149626424536109,-0.999276518821716,0.0382143594324589,-0.00576183013617992,-0.99925297498703,0.0241379160434008,0.00844162702560425,-0.999673008918762,0.0243081077933311,0.00133981695398688,-0.999703645706177,0.0241379160434008,0.00844162702560425,-0.999673008918762,0.023386025801301,0.00842400919646025,-0.999691009521484,0.0241432469338179,0.00133073085453361,-0.999707639217377,0.0235529951751232,0.00879880972206593,-0.999683856964111,0.0238414872437716,0.0013140975497663,-0.999714910984039,0.0238414872437716,0.0013140975497663,-0.999714910984039,0.0236364621669054,0.00880208052694798,-0.999681890010834,0.00851517450064421,0.000335242570145056,-0.999963700771332,0.00808578822761774,0.00806450564414263,-0.999934792518616,0.00808578822761774,0.00806450564414263,-0.999934792518616,0.0137476054951549,0.00819775369018316,-0.999871909618378,0.0139769874513149,0.000550274970009923,-0.999902188777924,0.0140135455876589,0.00077240023529157,-0.999901533126831,0.036021638661623,0.00198544422164559,-0.999349057674408,0.0362421199679375,0.0014268554514274,-0.999342024326324,0.0364515632390976,-0.00585950631648302,-0.999318242073059,0.0108666317537427,-0.00626070983707905,-0.999921381473541,0.00949724577367306,0.00891571026295424,-0.999915242195129,0.0108666317537427,-0.00626070983707905,-0.999921381473541,0.00880616437643766,0.00884446315467358,-0.999922215938568,0.0107733188197017,-0.00627564731985331,-0.999922275543213,0.00880616437643766,0.00884446315467358,-0.999922215938568,0.0235052574425936,0.0103590339422226,-0.999670028686523,0.0222497619688511,0.0246601887047291,-0.999448359012604,0.0235052574425936,0.0103590339422226,-0.999670028686523,0.0212786663323641,0.0246148314327002,-0.99947053194046,0.0228906236588955,0.010295738466084,-0.999685049057007,
  1011. 0.0212786663323641,0.0246148314327002,-0.99947053194046,-0.00620083697140217,0.036909744143486,-0.999299466609955,-0.00410424871370196,0.0369382426142693,-0.999309122562408,-0.00620083697140217,0.036909744143486,-0.999299466609955,-0.0037830201908946,0.034047182649374,-0.999413073062897,-0.00564137008041143,0.0335795842111111,-0.99942010641098,-0.0037830201908946,0.034047182649374,-0.999413073062897,-0.00241155875846744,0.0217040311545134,-0.999761521816254,0.00628683669492602,0.0223668850958347,-0.999730169773102,-0.00241155875846744,0.0217040311545134,-0.999761521816254,0.00605882192030549,0.0255760215222836,-0.999654531478882,-0.0027163177728653,0.024446863681078,-0.99969744682312,0.00605882192030549,0.0255760215222836,-0.999654531478882,0.0147566171362996,0.0094577968120575,-0.999846398830414,0.0167933460325003,-0.00531182484701276,-0.999844968318939,0.0167933460325003,-0.00531182484701276,-0.999844968318939,0.0169036835432053,-0.00529415579512715,-0.999843120574951,0.0156306903809309,0.00954786688089371,-0.999832272529602,0.0156306903809309,0.00954786688089371,-0.999832272529602,0.00288409413769841,0.00823377072811127,-0.999961972236633,0.00173574918881059,0.0158280394971371,-0.999873220920563,0.00288409413769841,0.00823377072811127,-0.999961972236633,0.00299943168647587,0.0158876795321703,-0.999869287014008,0.00368518219329417,0.00831639673560858,-0.999958634376526,0.00299943168647587,0.0158876795321703,-0.999869287014008,0.00628439709544182,-0.999944806098938,0.00841790065169334,0.00737152295187116,-0.999944925308228,-0.00746727827936411,6.045242480468e-005,-0.999998152256012,0.00191937293857336,0.00242351437918842,-0.999966681003571,0.00779742188751698,0.00242965877987444,-0.999967098236084,-0.00773983867838979,0.00124821113422513,-0.999967455863953,0.00798187498003244,-0.00211159652099013,-0.999965846538544,-0.00799013487994671,-0.00216761184856296,-0.999966204166412,0.00794202089309692,-0.00237380946055055,-0.999997198581696,0.000130839835037477,0.00858389213681221,-0.999935865402222,-0.00740038324147463,
  1012. 0.008512943983078,-0.999963641166687,-0.000469217484351248,0.0047477288171649,-0.999681413173676,-0.024789972230792,0.000919934653211385,-0.999593794345856,-0.028484832495451,0.0975247323513031,-0.995218575000763,-0.00537537876516581,0.0980370044708252,-0.995171546936035,0.004748216830194,0.00757824815809727,-0.999943137168884,0.00750112300738692,0.0075661176815629,-0.999652326107025,-0.025262763723731,0.0126369865611196,-0.999920010566711,-0.000696526491083205,0.00140264583751559,-0.999999105930328,-7.73114297771826e-005,-0.00524375680834055,-0.999942362308502,-0.00937046203762293,0.00815214402973652,-0.999941825866699,-0.00707607576623559,-0.00733681675046682,0.999880313873291,-0.0136209251359105,-0.00362673751078546,0.99999338388443,0.000345404288964346,0.0102870585396886,0.999894976615906,-0.0102111222222447,0.00258677825331688,0.999996721744537,-0.000246359617449343,-0.00769550213590264,0.999960124492645,-0.00452627846971154,0.00249879341572523,0.999966323375702,0.00781472586095333,0.00210913736373186,0.999967157840729,0.0078239357098937,0.00217524310573936,0.999997735023499,0.0001712790253805,0.00172366225160658,0.999998509883881,-0.000164158453117125,-0.000466205354314297,0.99999988079071,-3.67089342034888e-005,-0.00132011703681201,0.999967992305756,0.00790494680404663,-0.00108234421350062,0.999969065189362,0.00778854824602604,-0.00135784177109599,0.999999165534973,-0.000106916901131626,-0.000485968543216586,0.999968826770782,-0.0078929029405117,0.00113996921572834,0.999999344348907,-0.000108567757706624,0.000158013179316185,1,1.24419602798298e-005,-0.00791317410767078,0.999967932701111,-0.0012512932298705,0.000527588708791882,0.999969005584717,-0.0078530004248023,0.000299914361676201,0.999979794025421,0.00634818617254496,-0.001093331258744,0.999999403953552,-8.60889776959084e-005,-0.00170947029255331,0.999968588352203,0.00773916440084577,0,0,0,0,0,0,0,0,0,-0.999996960163116,-0.00246784812770784,-1.04110430481269e-018,-0.999965965747833,-0.00246781413443387,0.00787374749779701,-0.999965965747833,-0.00246781413443387,0.00787374749779701,
  1013. -0.999966144561768,-0.00239450880326331,0.00787374936044216,-0.999997138977051,-0.00239454139955342,-1.04158313898978e-018,-0.999997138977051,-0.00239454139955342,-1.04158313898978e-018,-0.999997496604919,-0.00224174465984106,-5.16355451568557e-019,-0.999997496604919,-0.00224174465984106,-5.16355451568557e-019,-0.999997496604919,-0.00224174465984106,-5.16355451568557e-019,-0.999997198581696,-0.00240638852119446,-5.15530855895418e-019,-0.999997198581696,-0.00240638852119446,-5.15530855895418e-019,-0.999997198581696,-0.00240638852119446,-5.15530855895418e-019,-0.999874413013458,-0.00179541541729122,0.0157460533082485,-0.999998390674591,-0.00179556710645556,0,-0.999874413013458,-0.00179541541729122,0.0157460533082485,-0.999997556209564,-0.00220485031604767,0,-0.999873578548431,-0.00220467150211334,0.0157460402697325,-0.999997556209564,-0.00220485031604767,0,-0.999993681907654,-0.00358336325734854,0,-0.99971479177475,-0.00358258676715195,-0.023615313693881,-0.999993681907654,-0.00358336325734854,0,-0.99971878528595,-0.00217095669358969,-0.0236154049634933,-0.999997735023499,-0.00217141420580447,0,-0.99971878528595,-0.00217095669358969,-0.0236154049634933,-0.9999920129776,8.91371172255638e-019,-0.00400221720337868,-0.9999920129776,8.91371172255638e-019,-0.00400221720337868,-0.9999920129776,8.91371172255638e-019,-0.00400221720337868,-0.999991178512573,9.6548231583975e-019,-0.00422379421070218,-0.999991178512573,9.6548231583975e-019,-0.00422379421070218,-0.999991178512573,9.6548231583975e-019,-0.00422379421070218,-0.999992489814758,8.59025515172671e-019,-0.00387315871194005,-0.999992489814758,8.59025515172671e-019,-0.00387315871194005,-0.999992489814758,8.59025515172671e-019,-0.00387315871194005,-0.999993443489075,8.36343860884949e-019,-0.00362736079841852,-0.999993443489075,8.36343860884949e-019,-0.00362736079841852,-0.999993443489075,8.36343860884949e-019,-0.00362736079841852,-1,-6.42005052570066e-020,0.000281358283245936,-1,-6.42005052570066e-020,0.000281358283245936,-1,-6.42005052570066e-020,0.000281358283245936,-0.99999988079071,-1.05274759571741e-019,0.000474138767458498,
  1014. -0.99999988079071,-1.05274759571741e-019,0.000474138767458498,-0.99999988079071,-1.05274759571741e-019,0.000474138767458498,-0.999999761581421,-1.61019727672002e-019,0.000727283593732864,-0.999999761581421,-1.61019727672002e-019,0.000727283593732864,-0.999999761581421,-1.61019727672002e-019,0.000727283593732864,-0.999999582767487,-2.09119298014984e-019,0.000916132994461805,-0.999999582767487,-2.09119298014984e-019,0.000916132994461805,-0.999999582767487,-2.09119298014984e-019,0.000916132994461805,-0.999967992305756,-0.00143929955083877,-0.00787376333028078,-0.999998986721039,-0.00143930653575808,-5.13634027353258e-019,-0.999967992305756,-0.00143929955083877,-0.00787376333028078,-0.999996840953827,-0.00252128159627318,-5.13449255883929e-019,-0.999965846538544,-0.00252127600833774,-0.00787374656647444,-0.999996840953827,-0.00252128159627318,-5.13449255883929e-019,-0.99999874830246,-0.00159832346253097,0,-0.999967753887177,-0.00159828912001103,0.00787376146763563,-0.99999874830246,-0.00159832346253097,0,-0.999965071678162,-0.00280566979199648,0.00787374097853899,-0.999996066093445,-0.0028057312592864,-1.03365016672267e-018,-0.999965071678162,-0.00280566979199648,0.00787374097853899,-0.999974131584167,-1.60075630249744e-018,0.00720629701390862,-0.999974131584167,-1.60075630249744e-018,0.00720629701390862,-0.999974131584167,-1.60075630249744e-018,0.00720629701390862,-0.999975740909576,-1.53797132945071e-018,0.00696710217744112,-0.999975740909576,-1.53797132945071e-018,0.00696710217744112,-0.999975740909576,-1.53797132945071e-018,0.00696710217744112,-0.999999582767487,-1.78168642260996e-019,0.000917486264370382,-0.999999582767487,-1.78168642260996e-019,0.000917486264370382,-0.999999582767487,-1.78168642260996e-019,0.000917486264370382,-0.999999582767487,-2.37838802087672e-019,0.00101743382401764,-0.999999582767487,-2.37838802087672e-019,0.00101743382401764,-0.999999582767487,-2.37838802087672e-019,0.00101743382401764,-0.999958217144012,7.1982758527156e-005,-0.00914181210100651,-0.999958217144012,7.1982758527156e-005,-0.00914181210100651,
  1015. -0.999958217144012,7.1982758527156e-005,-0.00914181210100651,-0.999965071678162,6.59020079183392e-005,-0.00836955476552248,-0.999965071678162,6.59020079183392e-005,-0.00836955476552248,-0.999965071678162,6.59020079183392e-005,-0.00836955476552248,-0.99998551607132,-4.24016725446563e-005,0.00538501236587763,-0.99998551607132,-1.18720197857757e-018,0.00538348779082298,-0.99998551607132,-4.24016725446563e-005,0.00538501236587763,-0.999988675117493,-1.0810898020332e-018,0.0047586839646101,-0.999988794326782,-3.74275150534231e-005,0.00475329346954823,-0.999988675117493,-1.0810898020332e-018,0.0047586839646101,-0.999958097934723,-7.21674878150225e-005,-0.00916527211666107,-0.999958097934723,-7.21674878150225e-005,-0.00916527211666107,-0.999958097934723,-7.21674878150225e-005,-0.00916527211666107,-0.99995756149292,-7.25635472917929e-005,-0.0092155709862709,-0.99995756149292,-7.25635472917929e-005,-0.0092155709862709,-0.99995756149292,-7.25635472917929e-005,-0.0092155709862709,-0.999988794326782,-1.05495844269961e-018,0.00475477334111929,-0.999988794326782,3.74394294340163e-005,0.00475480780005455,-0.999988794326782,3.74394294340163e-005,0.00475480780005455,-0.999989092350006,3.69422778021544e-005,0.00469166832044721,-0.999988973140717,-1.08462548216398e-018,0.00469679338857532,-0.999988973140717,-1.08462548216398e-018,0.00469679338857532,0.99996542930603,-0.00268030492588878,-0.00787374377250671,0.999996423721313,-0.00268034171313047,-1.04110140968055e-018,0.99996542930603,-0.00268030492588878,-0.00787374377250671,0.999997138977051,-0.00239442638121545,-1.04158313898978e-018,0.999966144561768,-0.00239439378492534,-0.00787374936044216,0.999997138977051,-0.00239442638121545,-1.04158313898978e-018,0.999997496604919,-0.00224174419417977,-5.16355348170981e-019,0.999997496604919,-0.00224174419417977,-5.16355348170981e-019,0.999997496604919,-0.00224174419417977,-5.16355348170981e-019,0.999997198581696,-0.00240648095495999,-5.1553080419663e-019,0.999997198581696,-0.00240648095495999,-5.1553080419663e-019,0.999997198581696,-0.00240648095495999,-5.1553080419663e-019,
  1016. 0.999873578548431,-0.00222157221287489,0.0157460402697325,0.999997556209564,-0.00222136429511011,-5.10453000910109e-019,0.999997556209564,-0.00222136429511011,-5.10453000910109e-019,0.999994516372681,-0.003340233117342,-7.65721506630644e-019,0.999870538711548,-0.00334054324775934,0.0157459937036037,0.999870538711548,-0.00334054324775934,0.0157459937036037,0.999874770641327,-0.00159013376105577,0.015746058896184,0.999503195285797,-0.00158996437676251,0.0314804166555405,0.999874770641327,-0.00159013376105577,0.015746058896184,0.999502122402191,-0.00216451846063137,0.0314803831279278,0.999873697757721,-0.00216473918408155,0.0157460421323776,0.999502122402191,-0.00216451846063137,0.0314803831279278,0.99997752904892,-0.0067038144916296,-1.54229676027133e-018,0.99997752904892,-0.0067038144916296,-1.54229676027133e-018,0.99997752904892,-0.0067038144916296,-1.54229676027133e-018,0.999978244304657,-0.00659636640921235,-1.41451906912296e-018,0.999978244304657,-0.00659636640921235,-1.41451906912296e-018,0.999978244304657,-0.00659636640921235,-1.41451906912296e-018,0.999985933303833,0.00530582992359996,1.28535843538799e-018,0.999985933303833,0.00530582992359996,1.28535843538799e-018,0.999985933303833,0.00530582992359996,1.28535843538799e-018,0.999982237815857,0.00596366310492158,1.28564557045812e-018,0.999982237815857,0.00596366310492158,1.28564557045812e-018,0.999982237815857,0.00596366310492158,1.28564557045812e-018,0.999977350234985,-0.00673224311321974,-1.54735724446377e-018,0.999977350234985,-0.00673224311321974,-1.54735724446377e-018,0.999977350234985,-0.00673224311321974,-1.54735724446377e-018,0.999979972839355,-0.00634384760633111,-1.28891376105832e-018,0.999979972839355,-0.00634384760633111,-1.28891376105832e-018,0.999979972839355,-0.00634384760633111,-1.28891376105832e-018,0.999984443187714,0.00559437600895762,1.29060462162795e-018,0.999984443187714,0.00559437600895762,1.29060462162795e-018,0.999984443187714,0.00559437600895762,1.29060462162795e-018,0.999991834163666,0.0040458757430315,9.03390623543916e-019,0.999991834163666,0.0040458757430315,9.03390623543916e-019,
  1017. 0.999991834163666,0.0040458757430315,9.03390623543916e-019,1,-6.73591848989198e-020,0.000294222234515473,1,-6.73591848989198e-020,0.000294222234515473,1,-6.73591848989198e-020,0.000294222234515473,1,1.68278974254888e-020,-9.94936272036284e-005,1,1.68278974254888e-020,-9.94936272036284e-005,1,1.68278974254888e-020,-9.94936272036284e-005,0.999965012073517,-1.88233530385297e-018,0.00837623421102762,0.999965012073517,-1.88233530385297e-018,0.00837623421102762,0.999965012073517,-1.88233530385297e-018,0.00837623421102762,0.999962985515594,-1.91990894920242e-018,0.00860443711280823,0.999962985515594,-1.91990894920242e-018,0.00860443711280823,0.999962985515594,-1.91990894920242e-018,0.00860443711280823,0.999953031539917,-2.15561406474941e-018,0.00969377346336842,0.999953031539917,-2.15561406474941e-018,0.00969377346336842,0.999953031539917,-2.15561406474941e-018,0.00969377346336842,0.999958038330078,-2.02146356736678e-018,0.0091714495792985,0.999958038330078,-2.02146356736678e-018,0.0091714495792985,0.999958038330078,-2.02146356736678e-018,0.0091714495792985,0.999963641166687,-1.88217359004321e-018,0.00852688867598772,0.999963641166687,-1.88217359004321e-018,0.00852688867598772,0.999963641166687,-1.88217359004321e-018,0.00852688867598772,0.999961376190186,-1.95081386445348e-018,0.00878977309912443,0.999961376190186,-1.95081386445348e-018,0.00878977309912443,0.999961376190186,-1.95081386445348e-018,0.00878977309912443,0.999969601631165,6.14838427281938e-005,0.00780844874680042,0.999969601631165,6.14838427281938e-005,0.00780844874680042,0.999969601631165,6.14838427281938e-005,0.00780844874680042,0.999979257583618,5.08229277329519e-005,0.00645451201125979,0.999979257583618,5.08229277329519e-005,0.00645451201125979,0.999979257583618,5.08229277329519e-005,0.00645451201125979,0.999987781047821,-3.89184169762302e-005,-0.00494263879954815,0.999987781047821,1.08823964105538e-018,-0.00494109932333231,0.999987781047821,-3.89184169762302e-005,-0.00494263879954815,0.999993443489075,7.45791261855426e-019,-0.00362867908552289,0.999993443489075,-2.85297537629958e-005,-0.00362327811308205,
  1018. 0.999993443489075,7.45791261855426e-019,-0.00362867908552289,0.999970018863678,-6.09796661592554e-005,0.00774441845715046,0.999970018863678,-6.09796661592554e-005,0.00774441845715046,0.999970018863678,-6.09796661592554e-005,0.00774441845715046,0.999966323375702,-6.46183762000874e-005,0.00820653419941664,0.999966323375702,-6.46183762000874e-005,0.00820653419941664,0.999966323375702,-6.46183762000874e-005,0.00820653419941664,0.999991714954376,3.20384388032835e-005,-0.00406888173893094,0.999991714954376,9.04146253033484e-019,-0.00406884588301182,0.999991714954376,3.20384388032835e-005,-0.00406888173893094,0.999989986419678,9.95366076624606e-019,-0.00447746785357594,0.999989986419678,3.5213593946537e-005,-0.00447212578728795,0.999989986419678,9.95366076624606e-019,-0.00447746785357594,-0.00441823620349169,0.0368843749165535,0.999309778213501,-0.00645850505679846,0.0358214825391769,0.999337434768677,-0.00441823620349169,0.0368843749165535,0.999309778213501,-0.00645753229036927,0.0358459688723087,0.99933648109436,-0.00460464041680098,0.0349328331649303,0.99937915802002,-0.00645753229036927,0.0358459688723087,0.99933648109436,-0.00787300337105989,0.0139755513519049,0.999871432781219,-0.00732464157044888,0.0139293624088168,0.999876260757446,-0.00732464157044888,0.0139293624088168,0.999876260757446,-0.00787294749170542,0.0144698424264789,0.999864339828491,-0.00730515737086535,0.0144228916615248,0.999869406223297,-0.00787294749170542,0.0144698424264789,0.999864339828491,0.00189291790593416,0.0480800904333591,0.99884170293808,0.00114690943155438,0.0485522262752056,0.998820006847382,0.00114690943155438,0.0485522262752056,0.998820006847382,0.00190142041537911,0.0402467362582684,0.99918806552887,0.000941036676522344,0.0398374013602734,0.999205708503723,0.00157934601884335,0.0401154048740864,0.999193787574768,-0.000747265235986561,-0.0189805459231138,0.999819576740265,-0.00105329405050725,-0.0191097594797611,0.999816834926605,-0.000899828795809299,-0.0190463773906231,0.999818205833435,-6.57030250295065e-005,-0.00119204621296376,0.999999284744263,
  1019. -5.27409829373937e-005,-0.00133961334358901,0.999999105930328,-6.57030250295065e-005,-0.00119204621296376,0.999999284744263,-0.0533773489296436,0.00996387004852295,0.998524725437164,-0.0531888268887997,0.0248377472162247,0.998275518417358,-0.0531888268887997,0.0248377472162247,0.998275518417358,-0.0422298684716225,0.00986171793192625,0.99905925989151,-0.0410123988986015,0.0245638322085142,0.998856663703918,-0.0419596992433071,0.00951868016272783,0.99907398223877,-0.00492365658283234,0.00806750915944576,0.999955356121063,-0.0051614879630506,0.000284491310594603,0.99998664855957,-0.00482663279399276,0.00810169614851475,0.999955534934998,-0.0208891201764345,0.00115136906970292,0.999781131744385,-0.0204396937042475,0.00867678783833981,0.999753534793854,-0.0208891201764345,0.00115136906970292,0.999781131744385,0.0290749780833721,0.0067258239723742,0.999554634094238,0.0300408620387316,0.022895559668541,0.999286413192749,0.0300408620387316,0.022895559668541,0.999286413192749,0.0162860564887524,0.0232278350740671,0.999597549438477,0.0159802865236998,0.00724365981295705,0.999846160411835,0.0159802865236998,0.00724365981295705,0.999846160411835,-0.0212745014578104,0.00870951451361179,0.999735832214355,-0.0220558624714613,-0.00665624905377626,0.999734580516815,-0.0212745014578104,0.00870951451361179,0.999735832214355,-0.00388018949888647,-0.00765985669568181,0.999963164329529,-0.00334368459880352,0.0080053610727191,0.999962389469147,-0.00388018949888647,-0.00765985669568181,0.999963164329529,-0.00539583479985595,0.0522249862551689,0.998620867729187,-0.00663900375366211,0.0518267974257469,0.998634040355682,-0.00539583479985595,0.0522249862551689,0.998620867729187,-0.0068577965721488,0.0427079871296883,0.999064087867737,-0.00586097594350576,0.042456179857254,0.999081134796143,-0.0068577965721488,0.0427079871296883,0.999064087867737,-0.00787375494837761,0.00207552150823176,0.999966859817505,-0.0078241154551506,0.00210154359228909,0.999967277050018,-0.0078241154551506,0.00210154359228909,0.999967277050018,-0.00787252560257912,0.0177885983139277,0.999810755252838,
  1020. -0.00745193799957633,0.0178058464080095,0.999813675880432,-0.00787252560257912,0.0177885983139277,0.999810755252838,0.00441823853179812,0.0368843488395214,-0.999309778213501,0.00645850598812103,0.0358214564621449,-0.999337434768677,0.00441823853179812,0.0368843488395214,-0.999309778213501,0.00645753229036927,0.035845972597599,-0.99933648109436,0.00460464041680098,0.0349328368902206,-0.99937915802002,0.00645753229036927,0.035845972597599,-0.99933648109436,0.00732464157044888,0.0139293633401394,-0.999876260757446,0.00787300337105989,0.0139755522832274,-0.999871432781219,0.00732464157044888,0.0139293633401394,-0.999876260757446,0.00730515690520406,0.0144228981807828,-0.999869406223297,0.00787294749170542,0.0144698489457369,-0.999864339828491,0.00787294749170542,0.0144698489457369,-0.999864339828491,-0.00114743667654693,0.0485745519399643,-0.99881899356842,-0.00189379474613816,0.0481023639440537,-0.998840630054474,-0.00114743667654693,0.0485745519399643,-0.99881899356842,-0.000913602183572948,0.0386760048568249,-0.999251484870911,-0.00153358769603074,0.0389531441032887,-0.999239861965179,-0.00184650009032339,0.039084255695343,-0.999234199523926,0.00071811315137893,-0.0182400830090046,-0.999833405017853,0.00101247010752559,-0.0183690953999758,-0.999830782413483,0.000864839472342283,-0.0183057710528374,-0.999832153320313,0.000100740027846769,-0.00182771764229983,-0.999998331069946,7.78045796323568e-005,-0.00197622878476977,-0.999998033046722,0.000100740027846769,-0.00182771764229983,-0.999998331069946,0.0559144653379917,0.0248985774815083,-0.998125076293945,0.0560963749885559,0.0100697362795472,-0.998374581336975,0.0559144653379917,0.0248985774815083,-0.998125076293945,0.0410123988986015,0.0245638303458691,-0.998856663703918,0.0419596992433071,0.00951868016272783,-0.99907398223877,0.0422298647463322,0.00986171793192625,-0.99905925989151,0.00492365611717105,0.00806750915944576,-0.999955356121063,0.00516148749738932,0.000284491281490773,-0.99998664855957,0.00482663232833147,0.00810169614851475,-0.999955534934998,0.0208891108632088,0.00115136860404164,-0.999781131744385,
  1021. 0.0204396843910217,0.00867678690701723,-0.999753534793854,0.0208891108632088,0.00115136860404164,-0.999781131744385,-0.0290749780833721,0.0067258239723742,-0.999554634094238,-0.0300408620387316,0.022895559668541,-0.999286413192749,-0.0300408620387316,0.022895559668541,-0.999286413192749,-0.0162860453128815,0.0232278350740671,-0.999597549438477,-0.015980277210474,0.00724366027861834,-0.999846160411835,-0.015980277210474,0.00724366027861834,-0.999846160411835,0.0212745014578104,0.00870951451361179,-0.999735832214355,0.0220558624714613,-0.00665624905377626,-0.999734580516815,0.0212745014578104,0.00870951451361179,-0.999735832214355,0.0038801881019026,-0.00765985669568181,-0.999963164329529,0.00334368320181966,0.0080053610727191,-0.999962389469147,0.0038801881019026,-0.00765985669568181,-0.999963164329529,0.00542446319013834,0.0516241826117039,-0.99865186214447,0.00665342947468162,0.0512264035642147,-0.998664915561676,0.00542446319013834,0.0516241826117039,-0.99865186214447,0.00685742450878024,0.0427235625684261,-0.999063491821289,0.00586023647338152,0.0424717217683792,-0.99908047914505,0.00685742450878024,0.0427235625684261,-0.999063491821289,0.00783252343535423,0.00174578896258026,-0.999967813491821,0.00787375960499048,0.00171956839039922,-0.999967515468597,0.00783252343535423,0.00174578896258026,-0.999967813491821,0.00745193846523762,0.0178058389574289,-0.999813675880432,0.00787252560257912,0.0177885908633471,-0.999810755252838,0.00787252560257912,0.0177885908633471,-0.999810755252838,-0.0268025770783424,-0.0236069746315479,-0.999361991882324,-0.0268025770783424,-0.0236069746315479,-0.999361991882324,-0.0268025770783424,-0.0236069746315479,-0.999361991882324,-0.0204322151839733,-0.0236105285584927,-0.999512434005737,-0.0204322151839733,-0.0236105285584927,-0.999512434005737,-0.0204322151839733,-0.0236105285584927,-0.999512434005737,-0.0126700568944216,-0.0236135665327311,-0.999640882015228,-0.0126691609621048,-0.0157448165118694,-0.999795794487,-0.0126700568944216,-0.0236135665327311,-0.999640882015228,-0.0138820968568325,-0.015744561329484,-0.99977970123291,
  1022. -0.0138830011710525,-0.0236131865531206,-0.999624788761139,-0.0138820968568325,-0.015744561329484,-0.99977970123291,0.000966861902270466,-0.0613957308232784,0.998113036155701,-0.0147456852719188,-0.0616385489702225,0.997989594936371,-0.0147456852719188,-0.0616385489702225,0.997989594936371,0.000972823356278241,-0.0617742836475372,0.998089671134949,-0.0147393830120564,-0.0620155334472656,0.997966349124908,0.000972823356278241,-0.0617742836475372,0.998089671134949,0.000586208247113973,-0.0372242219746113,0.999306857585907,0.00874502863734961,-0.0371152758598328,0.99927282333374,0.000586208247113973,-0.0372242219746113,0.999306857585907,0.00875350087881088,-0.0374784991145134,0.999259114265442,0.000591814809013158,-0.0375802367925644,0.999293446540833,0.00875350087881088,-0.0374784991145134,0.999259114265442,-0.0139570944011211,-0.0560281239449978,0.998331725597382,0.00174931949004531,-0.0555408708751202,0.998454868793488,-0.0139570944011211,-0.0560281239449978,0.998331725597382,0.00176552543416619,-0.056055411696434,0.998426079750061,-0.0139404181391001,-0.0565432012081146,0.998302936553955,0.00176552543416619,-0.056055411696434,0.998426079750061,0.00874253641813993,-0.0370084531605244,0.999276697635651,0.00117392442189157,-0.037272110581398,0.999304473400116,0.00117392442189157,-0.037272110581398,0.999304473400116,0.00119621842168272,-0.0379799455404282,0.999277770519257,0.00875917170196772,-0.0377216152846813,0.999249994754791,0.00875917170196772,-0.0377216152846813,0.999249994754791,-0.000139087685965933,0.00588795868679881,-0.99998265504837,-0.00022607391292695,0.00574227003380656,-0.999983489513397,-0.000139087685965933,0.00588795868679881,-0.99998265504837,-0.000144614154123701,0.00612205872312188,-0.999981343746185,-0.00024469883646816,0.00621535582467914,-0.999980747699738,-0.00024469883646816,0.00621535582467914,-0.999980747699738,-0.000280963344266638,0.00713646458461881,-0.999974489212036,-0.000388029118767008,0.00703996047377586,-0.999975144863129,-0.000280963344266638,0.00713646458461881,-0.999974489212036,
  1023. -0.000349220470525324,0.00633585313335061,-0.999979853630066,-0.000245226197876036,0.00622875196859241,-0.999980568885803,-0.000349220470525324,0.00633585313335061,-0.999979853630066,-0.000419981428422034,0.0266688205301762,-0.999644339084625,-0.00105645880103111,0.0268340613692999,-0.999639451503754,-0.000419981428422034,0.0266688205301762,-0.999644339084625,-0.000373080809367821,0.00947624258697033,-0.999955058097839,-0.000153734828927554,0.00976216234266758,-0.999952435493469,-0.000373080809367821,0.00947624258697033,-0.999955058097839,0.000249782693572342,-0.00634447857737541,-0.999979853630066,0.000298778584692627,-0.00632414547726512,-0.999979972839355,0.000249782693572342,-0.00634447857737541,-0.999979853630066,-5.95712663198356e-006,0.000151306827319786,-1,-5.261330443318e-006,0.000111363202449866,-1,-5.261330443318e-006,0.000111363202449866,-1,0.0210950877517462,-0.0309756305068731,-0.999297618865967,0.0193515345454216,0.00863412022590637,-0.999775469303131,0.0210950877517462,-0.0309756305068731,-0.999297618865967,0.03745286911726,-0.0305745154619217,-0.998830556869507,0.0360848866403103,0.00928921345621347,-0.999305546283722,0.0360848866403103,0.00928921345621347,-0.999305546283722,0.0222467891871929,0.00874762330204248,-0.999714255332947,0.0212380364537239,0.0326427705585957,-0.999241411685944,0.0222467891871929,0.00874762330204248,-0.999714255332947,0.0147727364674211,0.032290443778038,-0.999369323253632,0.0156794805079699,0.00849006604403257,-0.999841034412384,0.0147727364674211,0.032290443778038,-0.999369323253632,-0.000598169339355081,0.0379837527871132,-0.99927818775177,-0.00149934890214354,0.0380834676325321,-0.999273419380188,-0.000598169339355081,0.0379837527871132,-0.99927818775177,-0.00109459867235273,0.027802798897028,-0.999612808227539,-0.00109459867235273,0.027802798897028,-0.999612808227539,-0.000441367243183777,0.028026819229126,-0.999607086181641,-0.000315229612169787,0.00800683163106442,-0.999967992305756,0.00747826183214784,0.00836629699915648,-0.999937057495117,-0.000315229612169787,0.00800683163106442,-0.999967992305756,
  1024. 0.00716367410495877,0.0150124970823526,-0.999861657619476,-0.000579461338929832,0.0147183109074831,-0.999891519546509,0.00716367410495877,0.0150124970823526,-0.999861657619476,-0.0196106545627117,-0.000772072351537645,-0.999807417392731,-0.0185575932264328,-0.0319129601120949,-0.999318361282349,-0.0185575932264328,-0.0319129601120949,-0.999318361282349,-0.0189247876405716,-0.0319214090704918,-0.999311208724976,-0.0203725732862949,-0.000802068330813199,-0.999792158603668,-0.0203725732862949,-0.000802068330813199,-0.999792158603668,0.0434202812612057,0.00170945876743644,-0.999055445194244,0.0425797961652279,0.0259395856410265,-0.998756289482117,0.0434202812612057,0.00170945876743644,-0.999055445194244,0.0440712831914425,0.0260202158242464,-0.998689472675323,0.0451007969677448,0.00177562132012099,-0.99898087978363,0.0440712831914425,0.0260202158242464,-0.998689472675323,-4.48853570560459e-005,0.00285022077150643,-0.999995946884155,-8.51990407682024e-005,0.00270505808293819,-0.999996364116669,-4.48853570560459e-005,0.00285022077150643,-0.999995946884155,-6.65313709760085e-005,0.00422474136576056,-0.999991059303284,-0.000136173912324011,0.00432352954521775,-0.99999064207077,-0.000136173912324011,0.00432352954521775,-0.99999064207077,-0.000311326002702117,0.00988459400832653,-0.999951124191284,-0.000462575699202716,0.00979118421673775,-0.999951958656311,-0.000311326002702117,0.00988459400832653,-0.999951124191284,-0.00047817817539908,0.0101214405149221,-0.999948680400848,-0.000315669778501615,0.0100225238129497,-0.999949812889099,-0.00047817817539908,0.0101214405149221,-0.999948680400848,0.000750840816181153,-0.00446929130703211,-0.999989748001099,0.000479410606203601,-0.00431469501927495,-0.999990582466125,0.000750840816181153,-0.00446929130703211,-0.999989748001099,0.000549993885215372,-0.00494994549080729,-0.999987602233887,0.00080456305295229,-0.00478906510397792,-0.999988198280334,0.000549993885215372,-0.00494994549080729,-0.999987602233887,-0.00116263865493238,0.0104637481272221,-0.999944567680359,-0.000733111519366503,0.0103450305759907,-0.999946236610413,
  1025. -0.00116263865493238,0.0104637481272221,-0.999944567680359,-0.00104712031316012,0.00942408386617899,-0.999955058097839,-0.000689660955686122,0.00973186455667019,-0.999952435493469,-0.000689660955686122,0.00973186455667019,-0.999952435493469,0.00807579047977924,0.999964118003845,0.00256612803786993,0.000198910041945055,0.999994993209839,0.00315769808366895,0.00266864104196429,0.999996244907379,0.000765593256801367,-8.90695009729825e-005,0.999997437000275,0.00226236577145755,0.000137191687826999,0.999997615814209,0.00217791739851236,0.00799539871513844,0.999966859817505,0.00154488161206245,0.000154900393681601,0.999992251396179,-0.00393447000533342,0.0075200810097158,0.999961733818054,-0.00449114525690675,0.00804206635802984,0.999961316585541,-0.00356352236121893,0.000842976034618914,0.999910116195679,0.0133822495117784,-0.000493075116537511,0.999921441078186,0.0125241000205278,-0.00959267467260361,0.99990439414978,0.00995899550616741,-1.92415936908219e-005,0.99999988079071,0.000488733814563602,0.0078343478962779,0.999968945980072,0.000834457809105515,0.00285714212805033,0.999964118003845,-0.00798621959984303,-0.00970114301890135,0.999896466732025,0.010637316852808,-0.000589059549383819,0.999887883663177,0.0149620939046144,0.0228470806032419,0.99971467256546,0.00697227753698826,0.000869633455295116,0.999755620956421,-0.0220886766910553,-0.0147507535293698,0.999864637851715,-0.00729221105575562,-0.0147507535293698,0.999864637851715,-0.00729221105575562,-0.000257305917330086,0.999978601932526,0.00653556874021888,0.00123497692402452,0.999967873096466,-0.00792238395661116,0.00185383623465896,0.999967873096466,0.00780077697709203,-0.00563967134803534,0.999949514865875,0.00831768661737442,-0.00677750306203961,0.999949395656586,-0.00744668813422322,-0.00782241951674223,0.999968528747559,-0.00130381062626839,-0.00419584196060896,0.999958992004395,-0.00803888402879238,-0.0047595277428627,0.999960005283356,-0.00757388770580292,-0.00360490870662034,0.999960243701935,0.00815755408257246,0.00471007730811834,0.999959349632263,-0.00768825970590115,
  1026. 0.00492999004200101,0.999959826469421,0.00748551124706864,0.00403083255514503,0.999959349632263,0.00806412845849991,-0.0250814463943243,0.99966561794281,-0.00629144906997681,-0.0248662792146206,0.999651610851288,-0.00885025970637798,-0.0225591715425253,0.999549865722656,-0.0197827387601137,-0.000113521171442699,0.999969065189362,-0.00787824206054211,-0.000768462719861418,0.999969005584717,0.00783746596425772,0.00798788852989674,0.999963998794556,0.00289956806227565,-0.00723184691742063,0.999968290328979,0.00336236972361803,-0.0229889303445816,0.999538540840149,-0.0198547560721636,-0.0271597970277071,0.999591112136841,-0.0089400801807642,0.0130052156746387,0.999888360500336,-0.0073611200787127,0.00746439211070538,0.999918282032013,-0.0103880977258086,-0.00938748568296433,0.999947428703308,-0.00415216758847237,-0.00838552881032228,-0.999938726425171,-0.00722481776028872,0.00285395956598222,-0.9999640583992,0.00798609387129545,0.00347257102839649,-0.9999640583992,-0.00773701723664999,0.00285395956598222,-0.9999640583992,0.00798609387129545,-0.00838552881032228,-0.999938726425171,-0.00722481776028872,0.015409542247653,-0.99984484910965,-0.0085355332121253,0.0165879279375076,-0.999631762504578,0.0214806608855724,-0.0147506603971124,-0.999864637851715,0.00729221478104591,-0.0147506603971124,-0.999864637851715,0.00729221478104591,-0.00780630391091108,-0.999969065189362,-0.00107105600181967,0.0156952571123838,-0.999876081943512,-0.00129089085385203,-0.00788390450179577,-0.999969005584717,-0.000142979799420573,0.01551229134202,-0.999862194061279,-0.00593266170471907,-0.00753944739699364,-0.999957501888275,-0.00530595518648624,0.000267543480731547,-0.999988198280334,-0.00485400622710586,0.0230278819799423,-0.999707102775574,0.0074580037035048,0.0159977227449417,-0.999851524829865,0.00640157563611865,-0.00032543353154324,-0.999982535839081,0.00590430153533816,0.000270556396571919,-0.9999880194664,-0.00490866554901004,-0.00753316143527627,-0.999957025051117,-0.00540568586438894,0.00174347613938153,-0.999998450279236,-0.000306850939523429,
  1027. -0.00314082950353622,-0.999994933605194,0.00055278476793319,0.0229078028351069,-0.999697268009186,0.00898007024079561,-0.000391623616451398,-0.99997466802597,0.00710517028346658,-0.000550731085240841,0.999979734420776,0.00635840324684978,0.0160213783383369,0.999871373176575,-0.000756915658712387,0.0160213783383369,0.999871373176575,-0.000756915658712387,0.00418578227981925,0.999991238117218,-0.000197753543034196,-0.000173762324266136,0.999997973442078,0.00200615497305989,0.00766441645100713,0.999967098236084,0.00265861698426306,-8.68290735525079e-005,0.999999523162842,0.0010024590883404,0.00791898183524609,0.99996680021286,0.0019146102713421,0.00774011807516217,0.999968707561493,0.00169737124815583,-0.00423444574698806,0.999990999698639,0.000233394544920884,0.00793261826038361,0.99996542930603,-0.00249238242395222,0.000206531520234421,0.999997138977051,-0.00238449010066688,0.00772685883566737,0.99995082616806,-0.00621324498206377,0.000587724149227142,0.999976813793182,-0.00678555713966489,-0.000187950747204013,0.999982178211212,-0.0059674265794456,0.000173511391039938,0.999997973442078,-0.00200324598699808,0.0079315546900034,0.999965667724609,-0.00244730617851019,-9.98523537418805e-005,0.999994993209839,-0.00317032425664365,-0.000180590883246623,0.999983549118042,-0.00573374796658754,0.00919044762849808,0.999923884868622,0.00823524501174688,0.00773193966597319,0.999952137470245,-0.00599859375506639,0.00836130324751139,0.999955177307129,0.0044640633277595,0.000169775972608477,0.999985575675964,0.00539038423448801,0.00773909967392683,0.999953925609589,0.00569608062505722,0.00900153070688248,0.99986070394516,-0.0140624027699232,0.00663662375882268,0.999944984912872,0.00813486706465483,-0.000205852324143052,0.999978601932526,-0.00653580203652382,-0.0081363283097744,0.999937891960144,0.00761726452037692,0.00032647026819177,0.999946236610413,0.0103654200211167,0.00879440829157829,0.999920785427094,0.00901451986283064,4.4471296860138e-005,0.999999105930328,0.00141196104232222,-0.00226777512580156,0.999967098236084,0.00780233088880777,
  1028. 0.00213044136762619,0.999873876571655,-0.0157384909689426,-0.00215770746581256,-0.999997675418854,0.000169898601598106,-0.00292344251647592,-0.999995768070221,0.000324827211443335,-0.00900233536958694,-0.999672949314117,0.0239372793585062,0.000500451074913144,-0.99999988079071,-3.94056114600971e-005,3.09725073748268e-005,-0.999999523162842,-0.000983377569355071,4.65017765236553e-005,-0.999969005584717,-0.00787633471190929,-0.0050652539357543,-0.999987185001373,-0.000159536051796749,-0.00672428170219064,-0.999977111816406,0.000747142534237355,-0.00637349346652627,-0.999979555606842,0.000501850096043199,-0.00110429036431015,-0.999968886375427,-0.00781290419399738,-0.00169275898952037,-0.999998569488525,-5.33147831447423e-005,-0.000392880174331367,-0.999999940395355,3.09352690237574e-005,-0.013989994302392,-0.999900937080383,0.001554443850182,-0.0129312556236982,-0.999916315078735,-0.00040728400927037,-0.0129312556236982,-0.999916315078735,-0.00040728400927037,0.00487640593200922,-0.9999880194664,0.00061922607710585,0.00557579100131989,-0.999984443187714,0.000175615728949197,0.00569799914956093,-0.999950230121613,-0.00818768702447414,-0.0127534065395594,-0.999918580055237,-0.000401682656956837,0.000508346303831786,-0.999916613101959,0.0129119856283069,-0.0127534065395594,-0.999918580055237,-0.000401682656956837,0.00459103751927614,-0.999989449977875,0.000144599936902523,0.00374191137962043,-0.999992907047272,0.000475163193186745,-0.0168940108269453,-0.999851524829865,-0.00339837768115103,0.000332872790750116,-0.99996429681778,0.00845495704561472,-0.0148496516048908,-0.999889612197876,-0.000467705947812647,-0.0141320619732141,-0.999861121177673,0.00883380230516195,0.00759522477164865,-0.999965786933899,-0.00330518698319793,0.0159312188625336,-0.999855756759644,-0.00588836148381233,0.00758414017036557,-0.999968230724335,-0.00246480409987271,0.0123332403600216,-0.999923884868622,0.000388448563171551,-0.00785071216523647,-0.999969065189362,0.000488119549117982,0.00793520547449589,-0.999968528747559,-1.01972527772887e-005,
  1029. 0.0155194131657481,-0.999853849411011,0.00718556297942996,0.00872967019677162,-0.999932289123535,0.00769278034567833,-0.000210734491702169,-0.999977588653564,0.00669080205261707,-0.00774700613692403,-0.999966382980347,0.00268275989219546,-0.000102364036138169,-0.999994814395905,0.00325007271021605,0.00802130531519651,-0.999967515468597,0.000824383809231222,0.0155215505510569,-0.999854207038879,0.00711785024031997,-0.000208606419619173,-0.999978065490723,0.00662323413416743,0.0149171929806471,-0.999852955341339,-0.0084601491689682,0.000155066096340306,-0.999987959861755,-0.00492334086447954,-0.00811047479510307,-0.999954521656036,-0.0050126239657402,0.000331012910464779,-0.999989032745361,-0.00467094266787171,0.015847597271204,-0.999802350997925,0.0120051540434361,0.0142199154943228,-0.99986344575882,-0.00843278039246798,-0.000249625998549163,-0.999968588352203,0.00792560633271933,-0.0072082239203155,-0.999958336353302,-0.00560315093025565,0.000137362410896458,-0.999990582466125,-0.00436124764382839,0.000288947921944782,-0.999991655349731,-0.00407735677435994,0.000180196191649884,-0.999983608722687,-0.00572122167795897,-0.00573304994031787,-0.999964416027069,-0.00619077170267701,0.000304165703710169,-0.999869108200073,0.0161764286458492
  1030. }
  1031. TangentsW: *2178 {
  1032. 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,
  1033. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1034. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1035. }
  1036. }
  1037. LayerElementTangent: 1 {
  1038. Version: 102
  1039. Name: "LightMapUV"
  1040. MappingInformationType: "ByPolygonVertex"
  1041. ReferenceInformationType: "Direct"
  1042. Tangents: *6534 {
  1043. a: -0.371190100908279,0.150876268744469,-0.916217386722565,0.422047853469849,0.154533684253693,-0.893305599689484,0.367998212575912,-0.163321360945702,-0.915370643138886,-0.393502831459045,0.0941107049584389,-0.914493680000305,-0.38840651512146,-0.382368892431259,-0.838411867618561,0.440377414226532,0.103803165256977,-0.891791820526123,0.289407461881638,-0.953815102577209,-0.0804985761642456,-0.114777304232121,-0.991778492927551,0.0565829314291477,0.252342849969864,-0.96752792596817,0.0145889697596431,-0.119916215538979,-0.992020547389984,0.0389276295900345,-0.189626678824425,-0.980318069458008,-0.0549398884177208,0.252475619316101,-0.967513203620911,0.0131999049335718,-0.428321152925491,-0.885664522647858,0.179274544119835,-0.326166063547134,-0.935060560703278,-0.13884325325489,0.34816986322403,-0.922609984874725,0.166037917137146,0.356306046247482,-0.922469019889832,0.148651048541069,0.385934978723526,-0.83991140127182,-0.381579607725143,-0.434045076370239,-0.885590791702271,0.165329545736313,-0.349805474281311,-0.915084004402161,-0.200642377138138,-0.336608171463013,-0.922765791416168,0.187611922621727,0.280458122491837,-0.938401639461517,0.20185549557209,-0.358858704566956,-0.921656668186188,0.147544682025909,0.351882338523865,-0.828752458095551,-0.435141503810883,0.313220769166946,-0.937318205833435,0.15273354947567,0.999944269657135,0.00787357706576586,-0.00704811699688435,0.999944269657135,0.00787357706576586,-0.00704811699688435,0.999944269657135,0.00787357706576586,-0.00704811699688435,0.999951481819153,0.00787363387644291,-0.00591830490157008,0.999951481819153,0.00787363387644291,-0.00591830490157008,0.999951481819153,0.00787363387644291,-0.00591830490157008,0.206636115908623,-0.977255165576935,-0.0476871952414513,-0.303509026765823,-0.945973217487335,0.114092625677586,-0.237532839179039,-0.969756662845612,-0.0561265535652637,0.206418186426163,-0.977256298065186,-0.0485974326729774,-0.23628506064415,-0.969780385494232,-0.0607897415757179,0.279499232769012,-0.956665873527527,0.0816735774278641,
  1044. 0.171998485922813,-0.975441932678223,-0.137584909796715,-0.407583057880402,-0.910134673118591,-0.0743704438209534,-0.363831400871277,-0.905291140079498,0.219259291887283,-0.431998610496521,-0.901860952377319,0.00489947432652116,0.242679312825203,-0.96952086687088,-0.0337083786725998,0.299973458051682,-0.796435952186584,0.525076866149902,-0.347996801137924,-0.922609269618988,-0.166404142975807,0.428187936544418,-0.88566380739212,-0.179595872759819,0.326325267553329,-0.93505996465683,0.138473436236382,-0.373848676681519,-0.920947313308716,-0.109969392418861,-0.36150997877121,-0.839178919792175,0.406311839818954,0.450489282608032,-0.884181439876556,-0.123623736202717,0.354303896427155,-0.922046065330505,-0.155883848667145,-0.298781245946884,-0.938203990459442,-0.174651265144348,0.332009583711624,-0.914853632450104,0.229809761047363,0.32136195898056,-0.92242693901062,-0.214137971401215,-0.400341272354126,-0.829143524169922,0.390189856290817,-0.274181425571442,-0.938239634037018,-0.211023643612862,-0.99989515542984,0.00787318963557482,0.0121545093134046,-0.99989515542984,0.00787318963557482,0.0121545093134046,-0.99989515542984,0.00787318963557482,0.0121545093134046,-0.999902307987213,0.00787324644625187,0.0115486346185207,-0.999902307987213,0.00787324644625187,0.0115486346185207,-0.999902307987213,0.00787324644625187,0.0115486346185207,-0.98158848285675,-4.27419972025012e-017,0.19100795686245,-0.98158848285675,-4.27419972025012e-017,0.19100795686245,-0.98158848285675,-4.27419972025012e-017,0.19100795686245,-0.980934143066406,4.31850649170867e-017,-0.194340586662292,-0.980934143066406,4.31850649170867e-017,-0.194340586662292,-0.980934143066406,4.31850649170867e-017,-0.194340586662292,0.940779745578766,7.44815393459816e-017,-0.33901846408844,0.940779745578766,7.44815393459816e-017,-0.33901846408844,0.940779745578766,7.44815393459816e-017,-0.33901846408844,0.999961972236633,1.94744785974584e-018,-0.0087220836430788,0.999961972236633,1.94744785974584e-018,-0.0087220836430788,0.999961972236633,1.94744785974584e-018,-0.0087220836430788,
  1045. 0.227494224905968,2.16599215395591e-016,-0.973779439926147,0.227494224905968,2.16599215395591e-016,-0.973779439926147,0.227494224905968,2.16599215395591e-016,-0.973779439926147,-0.197066858410835,2.17572773889341e-016,-0.980390071868896,-0.197066858410835,2.17572773889341e-016,-0.980390071868896,-0.197066858410835,2.17572773889341e-016,-0.980390071868896,0.319269269704819,-2.10411454427441e-016,0.947664022445679,0.319269269704819,-2.10411454427441e-016,0.947664022445679,0.319269269704819,-2.10411454427441e-016,0.947664022445679,-0.0014090551994741,-2.21132006333704e-016,0.999999105930328,-0.0014090551994741,-2.21132006333704e-016,0.999999105930328,-0.0014090551994741,-2.21132006333704e-016,0.999999105930328,0.975148916244507,-4.9500661685823e-017,0.221550896763802,0.975148916244507,-4.9500661685823e-017,0.221550896763802,0.975148916244507,-4.9500661685823e-017,0.221550896763802,0.980401694774628,4.37574838271407e-017,-0.197009056806564,0.980401694774628,4.37574838271407e-017,-0.197009056806564,0.980401694774628,4.37574838271407e-017,-0.197009056806564,-0.937663018703461,-7.72139485198157e-017,0.347545832395554,-0.937663018703461,-7.72139485198157e-017,0.347545832395554,-0.937663018703461,-7.72139485198157e-017,0.347545832395554,-0.999845147132874,-4.88835948750258e-018,0.017602976411581,-0.999845147132874,-4.88835948750258e-018,0.017602976411581,-0.999845147132874,-4.88835948750258e-018,0.017602976411581,0.228217110037804,-2.16291424798382e-016,0.973610281944275,0.228217110037804,-2.16291424798382e-016,0.973610281944275,0.228217110037804,-2.16291424798382e-016,0.973610281944275,-0.183520212769508,-2.18195806326716e-016,0.983015954494476,-0.183520212769508,-2.18195806326716e-016,0.983015954494476,-0.183520212769508,-2.18195806326716e-016,0.983015954494476,-0.339298784732819,2.09914259322292e-016,-0.940678656101227,-0.339298784732819,2.09914259322292e-016,-0.940678656101227,-0.339298784732819,2.09914259322292e-016,-0.940678656101227,-0.011002479121089,2.21534519037217e-016,-0.999939560890198,-0.011002479121089,2.21534519037217e-016,-0.999939560890198,
  1046. -0.011002479121089,2.21534519037217e-016,-0.999939560890198,-0.137820884585381,-0.212686717510223,-0.967351913452148,0.0789903625845909,-0.0209556706249714,-0.996655106544495,-0.120854362845421,-0.0132099604234099,-0.992582440376282,-0.120190396904945,-0.011871449649334,-0.99267989397049,0.0798434987664223,-0.0228232741355896,-0.9965460896492,0.0435243621468544,-0.092333123087883,-0.994776487350464,-0.0900876075029373,0.0112171238288283,0.995870769023895,0.086340606212616,0.00221861689351499,0.996263206005096,0.0791185796260834,-0.145372033119202,0.986208617687225,0.0754956305027008,0.0252179969102144,0.996827185153961,-0.0753634199500084,0.0432379543781281,0.996218264102936,-0.072052389383316,-0.0625676736235619,0.995436549186707,-0.09043088555336,-0.210839822888374,-0.973328709602356,0.0710303112864494,-0.00457363342866302,-0.997463762760162,-0.135749354958534,0.0266628842800856,-0.9903843998909,-0.135098069906235,0.0275623761117458,-0.990448772907257,0.0737989842891693,-0.00850186962634325,-0.997236907482147,0.0403087735176086,-0.0966206341981888,-0.994504749774933,0.0154030518606305,0.999881386756897,2.21993994706433e-016,0.0154030518606305,0.999881386756897,2.21993994706433e-016,0.0154030518606305,0.999881386756897,2.21993994706433e-016,0.00365542457439005,0.999993324279785,2.21716763469774e-016,0.00365542457439005,0.999993324279785,2.21716763469774e-016,0.00365542457439005,0.999993324279785,2.21716763469774e-016,-0.416751563549042,-0.90865421295166,-0.0258049983531237,0.395414918661118,-0.918439507484436,-0.0107685290277004,-0.811320185661316,-0.554378628730774,0.185536682605743,0.395396769046783,-0.918441951274872,-0.0112146362662315,-0.416665732860565,-0.908660531044006,-0.0269387904554605,0.540863215923309,-0.839169025421143,0.0571163035929203,-0.113536201417446,-0.252975434064865,-0.960787653923035,0.0972770899534225,-0.00091739185154438,-0.995257019996643,-0.17259156703949,0.0285921730101109,-0.984578430652618,-0.161379024386406,0.0446165502071381,-0.985883474349976,0.0898458287119865,0.00965709704905748,-0.995908856391907,
  1047. 0.0614342428743839,-0.108510375022888,-0.992195308208466,0.0398251004517078,0.00737618748098612,0.999179542064667,-0.125265508890152,0.00914780981838703,0.992081105709076,-0.0979212298989296,-0.0659059137105942,0.993009507656097,-0.102271132171154,0.0602458231151104,0.99293065071106,0.0175719540566206,0.0578920505940914,0.998168289661407,0.0687871500849724,-0.0388018451631069,0.99687647819519,0.0363611951470375,-0.051651768386364,-0.998003005981445,-0.232347920536995,0.179533913731575,-0.955919444561005,-0.122062899172306,-0.0545406863093376,-0.991022706031799,0.0262913480401039,-0.0723998546600342,-0.99702912569046,-0.11034481972456,-0.0781240165233612,-0.990818202495575,0.0738101825118065,0.00918676517903805,-0.997229993343353,-0.103519029915333,-0.27534893155098,-0.955754578113556,0.101523786783218,0.00960639305412769,-0.994786739349365,-0.0703500062227249,0.0372904241085052,-0.996825218200684,-0.0544963330030441,0.0596464052796364,-0.996730983257294,0.0910600572824478,0.0295955985784531,-0.995405554771423,0.102987036108971,-0.0406940989196301,-0.99384993314743,-0.695051252841949,-0.714106142520905,-0.0834039524197578,0.707591235637665,-0.696312248706818,-0.120265930891037,0.784734189510345,-0.598921835422516,0.159639835357666,0.707435309886932,-0.696313142776489,-0.121175304055214,-0.695198953151703,-0.714097917079926,-0.0822350010275841,-0.745277047157288,-0.645588994026184,0.166664496064186,0.141843363642693,-0.0059842923656106,0.989871025085449,-0.0586600080132484,0.210809379816055,0.975765645503998,-0.0758849829435349,-0.0177452508360147,0.996958673000336,-0.0612840913236141,-0.0365212745964527,0.997452080249786,0.106543175876141,0.082848958671093,0.990850448608398,0.130890160799026,-0.0252409651875496,0.99107551574707,0.0925007909536362,0.00754511868581176,0.995684027671814,-0.0407393649220467,0.00529436860233545,0.999155879020691,-0.0407602563500404,-0.0674122422933578,0.996892273426056,-0.0325050503015518,0.0240260306745768,0.999182760715485,0.0832350179553032,0.0272028651088476,0.996158599853516,0.0801018849015236,-0.0342626087367535,0.996197640895844,
  1048. 0.0563876964151859,-0.0668670982122421,0.996167361736298,-0.0938856080174446,-0.0616466626524925,0.993672549724579,0.105162367224693,0.0373256579041481,0.9937544465065,-0.105656079947948,-0.0338261015713215,0.993827342987061,0.0687836185097694,-0.039583545178175,0.99684602022171,-0.10661943256855,0.0511443614959717,0.992983758449554,-0.999993026256561,8.27645746551224e-019,-0.00373286264948547,-0.999993026256561,8.27645746551224e-019,-0.00373286264948547,-0.999993026256561,8.27645746551224e-019,-0.00373286264948547,-0.999986708164215,1.13787233896494e-018,-0.00515355216339231,-0.999986708164215,1.13787233896494e-018,-0.00515355216339231,-0.999986708164215,1.13787233896494e-018,-0.00515355216339231,0.018148610368371,0.999835312366486,2.22289079809433e-016,0.018148610368371,0.999835312366486,2.22289079809433e-016,0.018148610368371,0.999835312366486,2.22289079809433e-016,-0.00862890109419823,0.999962866306305,2.22056913372546e-016,-0.00862890109419823,0.999962866306305,2.22056913372546e-016,-0.00862890109419823,0.999962866306305,2.22056913372546e-016,-0.999999046325684,3.10525980096668e-019,-0.00138363370206207,-0.999999046325684,3.10525980096668e-019,-0.00138363370206207,-0.999999046325684,3.10525980096668e-019,-0.00138363370206207,-0.999999165534973,2.87510635979963e-019,-0.00129452534019947,-0.999999165534973,2.87510635979963e-019,-0.00129452534019947,-0.999999165534973,2.87510635979963e-019,-0.00129452534019947,-2.23591105168452e-005,-1,-2.22046457809603e-016,-2.23591105168452e-005,-1,-2.22046457809603e-016,-2.23591105168452e-005,-1,-2.22046457809603e-016,-0.0231892038136721,-0.999731123447418,-2.21887599427324e-016,-0.0231892038136721,-0.999731123447418,-2.21887599427324e-016,-0.0231892038136721,-0.999731123447418,-2.21887599427324e-016,0.137821525335312,-0.212686195969582,0.967351973056793,-0.0789899080991745,-0.0209546685218811,0.996655166149139,0.120853908360004,-0.0132090635597706,0.992582440376282,0.120190136134624,-0.0118709011003375,0.992680013179779,-0.0798429548740387,-0.0228220652788877,0.996546268463135,
  1049. -0.0435246378183365,-0.0923325642943382,0.994776606559753,-0.0791175365447998,-0.145372673869133,-0.986208498477936,0.0900879725813866,0.0112163126468658,-0.995870649814606,-0.086340568959713,0.00221869070082903,-0.996263206005096,-0.0754951387643814,0.0252190567553043,-0.996827304363251,0.0753635913133621,0.0432375818490982,-0.996218264102936,0.0720531493425369,-0.0625665113329887,-0.995436489582062,-0.756631433963776,-0.516598284244537,0.400793075561523,-0.573988914489746,-0.81714254617691,-0.0530545860528946,0.582709968090057,-0.806812286376953,-0.097483403980732,0.583702802658081,-0.806794703006744,-0.0915072187781334,-0.573831975460052,-0.817145109176636,-0.0546898730099201,0.538595974445343,-0.839936256408691,0.0664943382143974,-0.0176527108997107,0.999844193458557,-0.000138997696922161,-0.017669390887022,0.999843955039978,-0.000278258143225685,-0.0176527108997107,0.999844193458557,-0.000138997696922161,-0.0588557571172714,0.998266160488129,-0.000926862354390323,-0.0588936097919941,0.998264133930206,-0.000463729258626699,-0.0588557571172714,0.998266160488129,-0.000926862354390323,0.80258846282959,-0.56446248292923,-0.192960888147354,0.414161175489426,-0.909189164638519,0.0429608076810837,-0.39250573515892,-0.919670343399048,0.0120696648955345,-0.392571032047272,-0.919662177562714,0.010460315272212,0.414397478103638,-0.9091796875,0.040831945836544,-0.541321456432343,-0.83759731054306,-0.0734971687197685,0.117298044264317,-0.268453061580658,0.956124544143677,-0.106219813227654,-0.00149449903983623,0.994341552257538,0.18814791738987,0.0329297222197056,0.98158860206604,0.176145911216736,0.0501508079469204,0.983085691928864,-0.0985579118132591,0.00953319855034351,0.995085656642914,-0.0657879114151001,-0.116064555943012,0.991060554981232,0.108719386160374,0.0647812336683273,-0.991959393024445,-0.0229525975883007,0.0651600733399391,-0.997610807418823,-0.074962429702282,-0.0430401712656021,-0.996257185935974,-0.0471520498394966,0.0102622043341398,-0.998835027217865,0.133758038282394,0.00910355243831873,-0.990972220897675,
  1050. 0.111061856150627,-0.0740902721881866,-0.991047859191895,0.143170788884163,-0.065190277993679,0.987548649311066,-0.0408199019730091,-0.0604584887623787,0.997335731983185,0.251030206680298,0.196879103779793,0.947745978832245,-0.0289533510804176,-0.0848563238978386,0.995972454547882,0.129061922430992,-0.0928197354078293,0.987282991409302,-0.0821701362729073,0.00955852214246988,0.996572494506836,0.0508570894598961,-0.0402751788496971,0.997893631458282,-0.122763089835644,0.187179923057556,0.974624514579773,-0.0917534008622169,-0.0329816862940788,0.995235502719879,0.0611901804804802,-0.0178652703762054,0.997966229915619,-0.10125494748354,-0.0186351668089628,0.99468594789505,0.0528280772268772,0.0700329393148422,0.996144950389862,-0.0490870103240013,-0.0737481042742729,0.996068120002747,0.121329702436924,0.114642433822155,0.985969662666321,0.10900703817606,-0.0811702013015747,0.99072140455246,0.119475319981575,-0.0713018774986267,0.990273535251617,-0.0292602609843016,0.105457425117493,0.99399334192276,-0.0611877664923668,-0.0612569153308868,0.996244788169861,0.496271908283234,-0.86717814207077,-0.0414307862520218,0.782699465751648,-0.526254057884216,0.332322806119919,-0.613098502159119,-0.789343357086182,-0.0323656536638737,0.493853837251663,-0.867307841777802,-0.0623339116573334,-0.611609101295471,-0.7894486784935,-0.052010677754879,-0.529071688652039,-0.846031725406647,0.0656772255897522,0.0147382710129023,0.0252760443836451,-0.999571859836578,-0.107964627444744,0.0297034364193678,-0.993710875511169,-0.0993360430002213,-0.0338449701666832,-0.994478166103363,-0.117779158055782,0.0087997755035758,-0.99300080537796,0.0234363116323948,0.00550041301175952,-0.999710202217102,0.0210342146456242,-0.0688724964857101,-0.997403800487518,0.120622552931309,-0.0383490584790707,-0.991957426071167,-0.0823997780680656,-0.0474929697811604,-0.995467066764832,0.128191009163857,0.0620605312287807,-0.989805817604065,-0.0677384585142136,-0.0796972960233688,-0.994514882564545,0.106771752238274,-0.0710678473114967,-0.991740465164185,-0.119968578219414,0.0438103377819061,-0.99181056022644,
  1051. 0.999882578849792,3.40443841402277e-018,-0.015331132337451,0.999882578849792,3.40443841402277e-018,-0.015331132337451,0.999882578849792,3.40443841402277e-018,-0.015331132337451,0.999902307987213,3.10436892744696e-018,-0.0139777818694711,0.999902307987213,3.10436892744696e-018,-0.0139777818694711,0.999902307987213,3.10436892744696e-018,-0.0139777818694711,0.00119944696780294,0.999999284744263,-1.88889243872836e-005,0.00119944696780294,0.999999284744263,-1.88889243872836e-005,0.00119944696780294,0.999999284744263,-1.88889243872836e-005,0.00882424786686897,0.999961078166962,-0.000138964533107355,0.00882424786686897,0.999961078166962,-0.000138964533107355,0.00882424786686897,0.999961078166962,-0.000138964533107355,0.99984884262085,3.85058530843845e-018,-0.0173922814428806,0.99984884262085,3.85058530843845e-018,-0.0173922814428806,0.99984884262085,3.85058530843845e-018,-0.0173922814428806,0.999844968318939,3.90604280542645e-018,-0.0176079515367746,0.999844968318939,3.90604280542645e-018,-0.0176079515367746,0.999844968318939,3.90604280542645e-018,-0.0176079515367746,0.000585225410759449,-0.999999821186066,-9.21615082916105e-006,0.000606406247243285,-0.999999821186066,-1.43239476528834e-005,0.000585225410759449,-0.999999821186066,-9.21615082916105e-006,-0.113458633422852,-0.993539094924927,0.00268012587912381,-0.113494336605072,-0.99353700876236,0.00178731232881546,-0.113458633422852,-0.993539094924927,0.00268012587912381,0,-1,-4.00408407585928e-006,-0.0784923136234283,-0.996914625167847,-0.000622066203504801,0,-1,-4.00408407585928e-006,-0.0785033628344536,-0.996913552284241,0.000791569007560611,0,-0.999999821186066,0.00063399423379451,-0.0785033628344536,-0.996913552284241,0.000791569007560611,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,-0.999705970287323,-0.0242483075708151,-5.29085192509077e-018,-0.999705970287323,-0.0242483075708151,-5.29085192509077e-018,-0.999705970287323,-0.0242483075708151,-5.29085192509077e-018,-0.999816119670868,0.0191766079515219,4.31375682063139e-018,-0.999816119670868,0.0191766079515219,4.31375682063139e-018,
  1052. -0.999816119670868,0.0191766079515219,4.31375682063139e-018,0,-1,-0,-0.0393396019935608,-0.999225914478302,3.4390338989743e-019,0,-1,-0,-0.0393395200371742,-0.99922388792038,0.00201223976910114,0,-0.999997973442078,0.00201463350094855,-0.0393395200371742,-0.99922388792038,0.00201223976910114,-0.0475702472031116,-0.998867869377136,-2.21793247897934e-016,-0.0475702472031116,-0.998867869377136,-2.21793247897934e-016,-0.0475702472031116,-0.998867869377136,-2.21793247897934e-016,0.00644160807132721,-0.999979257583618,-2.22009294239043e-016,0.00644160807132721,-0.999979257583618,-2.22009294239043e-016,0.00644160807132721,-0.999979257583618,-2.22009294239043e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0142651638016105,-0.999898254871368,-2.22021880619243e-016,0.0142651638016105,-0.999898254871368,-2.22021880619243e-016,0.0142651638016105,-0.999898254871368,-2.22021880619243e-016,0.0143044125288725,-0.99989777803421,-2.22021840914574e-016,0.0143044125288725,-0.99989777803421,-2.22021840914574e-016,0.0143044125288725,-0.99989777803421,-2.22021840914574e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0785033106803894,-0.996913552284241,-0.000784987350925803,0,-0.999999821186066,-0.000627379689831287,0.0785033106803894,-0.996913552284241,-0.000784987350925803,0,-1,4.00408407585928e-006,0.0784923136234283,-0.996914625167847,0.000622066203504801,0,-1,4.00408407585928e-006,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,0.999706089496613,-0.0242477562278509,-5.28029296457153e-018,0.999706089496613,-0.0242477562278509,-5.28029296457153e-018,0.999706089496613,-0.0242477562278509,-5.28029296457153e-018,0.999816119670868,0.019176559522748,4.30952331025634e-018,0.999816119670868,0.019176559522748,4.30952331025634e-018,0.999816119670868,0.019176559522748,4.30952331025634e-018,0.000304779212456197,-0.00774139491841197,-0.999970078468323,
  1053. 0,-0.00761321233585477,-0.999971032142639,0.000304779212456197,-0.00774139491841197,-0.999970078468323,0,0.00948637630790472,-0.999954998493195,-0.000375801959307864,0.00954537000507116,-0.999954462051392,0,0.00948637630790472,-0.999954998493195,-0.00644160341471434,-0.999979257583618,-2.22009135420365e-016,-0.00644160341471434,-0.999979257583618,-2.22009135420365e-016,-0.00644160341471434,-0.999979257583618,-2.22009135420365e-016,0.0475702472031116,-0.998867869377136,-2.21793247897934e-016,0.0475702472031116,-0.998867869377136,-2.21793247897934e-016,0.0475702472031116,-0.998867869377136,-2.21793247897934e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0.0143044125288725,-0.99989777803421,-2.22021774740125e-016,-0.0143044125288725,-0.99989777803421,-2.22021774740125e-016,-0.0143044125288725,-0.99989777803421,-2.22021774740125e-016,-0.0142651638016105,-0.999898254871368,-2.22022039437921e-016,-0.0142651638016105,-0.999898254871368,-2.22022039437921e-016,-0.0142651638016105,-0.999898254871368,-2.22022039437921e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.0583957508206367,0.995350360870361,0.0766003355383873,-0.188144758343697,0.956497550010681,-0.222966775298119,0.0634246543049812,0.992030262947083,-0.108873710036278,0.11366905272007,0.992279291152954,0.0496101193130016,0.12155906111002,0.989482760429382,-0.07840446382761,0.0229926034808159,0.991108775138855,0.131053373217583,-0.999967277050018,0.000255054648732767,-0.00809798110276461,-0.999967277050018,0.000255054648732767,-0.00809798110276461,-0.999967277050018,0.000255054648732767,-0.00809798110276461,-0.92917400598526,-0.0116365253925323,0.36945965886116,-0.92917400598526,-0.0116365253925323,0.36945965886116,-0.92917400598526,-0.0116365253925323,0.36945965886116,0.0078717153519392,-0.999707818031311,-0.0228546522557735,0.0078717153519392,-0.999707818031311,-0.0228546522557735,
  1054. 0.0078717153519392,-0.999707818031311,-0.0228546522557735,0.0078686410561204,-0.999317407608032,-0.0360945649445057,0.0078686410561204,-0.999317407608032,-0.0360945649445057,0.0078686410561204,-0.999317407608032,-0.0360945649445057,0.00786548852920532,0.998917043209076,0.0458567179739475,0.00786548852920532,0.998917043209076,0.0458567179739475,0.00786548852920532,0.998917043209076,0.0458567179739475,0.00786269642412663,0.998562395572662,0.0530215799808502,0.00786269642412663,0.998562395572662,0.0530215799808502,0.00786269642412663,0.998562395572662,0.0530215799808502,0.992718040943146,0.00379217090085149,-0.120401419699192,0.992718040943146,0.00379217090085149,-0.120401419699192,0.992718040943146,0.00379217090085149,-0.120401419699192,0.902547180652618,0.0135551989078522,-0.430377572774887,0.902547180652618,0.0135551989078522,-0.430377572774887,0.90253359079361,0.0169403962790966,-0.430286109447479,0.0423293672502041,-0.99822074174881,0.0419949255883694,0.0412026904523373,-0.988513827323914,-0.145405471324921,-0.078470341861248,-0.993576109409332,0.0815409943461418,0.0346878580749035,-0.988347411155701,-0.148210510611534,0.0346894860267639,-0.998375415802002,0.0452037863433361,-0.0599008239805698,-0.987308442592621,-0.14708548784256,0.0986375361680985,0.994525134563446,0.034502025693655,-0.185853660106659,0.931787312030792,-0.311818569898605,0.0960797667503357,0.98028826713562,-0.172637119889259,0.0685227438807487,0.996320307254791,0.0514846369624138,0.0799993574619293,0.979770362377167,-0.183439835906029,-0.081219844520092,0.995503187179565,0.0487522929906845,0.2341398447752,-0.948333203792572,0.214108899235725,-0.0541048943996429,-0.996854543685913,-0.0579105205833912,-0.0443767979741097,-0.978989124298096,0.199025601148605,-0.0533459782600403,-0.979771554470062,0.192878514528275,-0.059580359607935,-0.996763586997986,-0.053967859596014,0.0953518524765968,-0.99524050951004,-0.0201137624680996,-0.986567497253418,0.00257218861952424,0.163333982229233,-0.986567497253418,0.00257218861952424,0.163333982229233,-0.986567497253418,0.00257218861952424,0.163333982229233,
  1055. -0.99991500377655,0.000205278556677513,0.0130351865664124,-0.99991500377655,0.000205278556677513,0.0130351865664124,-0.99991500377655,0.000205278556677513,0.0130351865664124,-0.0858709514141083,0.996178328990936,0.0159670021384954,0.15423721075058,0.946682751178741,0.282847791910172,-0.0874524563550949,0.981860160827637,0.168234050273895,-0.106577068567276,0.993959307670593,0.0261968243867159,-0.112069576978683,0.981338560581207,0.156253308057785,-0.0267087798565626,0.999216675758362,-0.029200779274106,-0.00768746202811599,-0.998372435569763,0.0565121509134769,-0.0102667538449168,-0.99421614408493,-0.106906943023205,0.0778275281190872,-0.994921028614044,0.0638356879353523,-0.0110407760366797,-0.994243919849396,-0.10656975209713,-0.00969673134386539,-0.998401999473572,0.0556724295020103,0.0923510640859604,-0.984803199768066,-0.147084906697273,0.0137146841734648,-0.686707675457001,-0.726804316043854,0.0146495448425412,-0.70224666595459,-0.711783051490784,0.013582200743258,-0.686634004116058,-0.726876378059387,0.0343416146934032,-0.685696005821228,-0.727077543735504,0.0351392924785614,-0.700734555721283,-0.712556183338165,0.0351392924785614,-0.700734555721283,-0.712556183338165,0.000119380223623011,-0.708999395370483,-0.705209076404572,6.06231660640333e-005,-0.709028959274292,-0.705179393291473,0.000119380223623011,-0.708999395370483,-0.705209076404572,0.000222761140321381,-0.714144051074982,-0.699998736381531,0.000446517224190757,-0.714159667491913,-0.699982702732086,0.000222761140321381,-0.714144051074982,-0.699998736381531,0.996893644332886,0.0553795248270035,-0.0560017637908459,0.999229669570923,0.0283591821789742,-0.0271261725574732,0.996893644332886,0.0553795248270035,-0.0560017637908459,0.993798017501831,0.111199207603931,-0.00045834225602448,0.996175110340118,0.0822784900665283,0.0294175632297993,0.996175050735474,0.0821912065148354,0.0296634063124657,-0.0444944612681866,0.706178903579712,-0.706633985042572,-0.0222655590623617,0.707054197788239,-0.706808745861053,-0.0444944612681866,0.706178903579712,-0.706633985042572,
  1056. -0.0222651865333319,0.711001813411713,-0.702837586402893,-0.0445606559514999,0.710423052310944,-0.702362775802612,-0.0167334824800491,0.711161851882935,-0.70282918214798,0.0232208054512739,-0.706916093826294,0.706916093826294,0.0232208054512739,-0.706916093826294,0.706916093826294,0.0232208054512739,-0.706916093826294,0.706916093826294,-0.0459549091756344,-0.70635974407196,0.70635974407196,-0.0459549091756344,-0.70635974407196,0.70635974407196,-0.0459549091756344,-0.70635974407196,0.70635974407196,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0.0264780092984438,0.695665895938873,-0.717877328395844,0.0275180339813232,0.680271863937378,-0.732443153858185,0.0264780092984438,0.695665895938873,-0.717877328395844,0.0160572454333305,0.679778218269348,-0.73324191570282,0.0148625886067748,0.695503294467926,-0.71836918592453,0.0160572454333305,0.679778218269348,-0.73324191570282,0.00192815728951246,0.675833165645599,-0.737052142620087,0.00096744007896632,0.675722777843475,-0.737155199050903,0.00192815728951246,0.675833165645599,-0.737052142620087,0.00112366629764438,0.670529365539551,-0.741882145404816,0.00224581803195179,0.670553267002106,-0.741858005523682,0.00112366629764438,0.670529365539551,-0.741882145404816,0.996178209781647,-0.0259236078709364,0.0834084004163742,0.993807673454285,0.00536520080640912,0.110985279083252,0.996178209781647,-0.0259236078709364,0.0834084004163742,0.999220907688141,0.0283710137009621,0.0274357050657272,0.996901333332062,0.0583455115556717,0.0527592413127422,0.996901333332062,0.0583455115556717,0.0527592413127422,0.00169058458413929,0.679758250713348,-0.733434319496155,0.000842027075123042,0.67986661195755,-0.733335316181183,0.00169058458413929,0.679758250713348,-0.733434319496155,0.000651166366878897,0.686129808425903,-0.727478861808777,0.00130346440710127,0.686110854148865,-0.727495849132538,0.000651166366878897,0.686129808425903,-0.727478861808777,
  1057. 0.0395561121404171,-0.733623206615448,-0.678404211997986,0.0395561121404171,-0.733623206615448,-0.678404211997986,0.0395561121404171,-0.733623206615448,-0.678404211997986,-0.0409045070409775,-0.733583390712738,-0.678367376327515,-0.0409045070409775,-0.733583390712738,-0.678367376327515,-0.0409045070409775,-0.733583390712738,-0.678367376327515,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,0.0264850240200758,0.695665955543518,-0.71787703037262,0.0275250282138586,0.680272161960602,-0.732442617416382,0.0264850240200758,0.695665955543518,-0.71787703037262,0.0160642638802528,0.679778575897217,-0.733241498470306,0.0148696089163423,0.695503413677216,-0.718368887901306,0.0160642638802528,0.679778575897217,-0.733241498470306,0.0444617904722691,-0.734366476535797,-0.677295386791229,0.0222474485635757,-0.734870851039886,-0.677842080593109,0.0444617904722691,-0.734366476535797,-0.677295386791229,0.0222372617572546,-0.741670370101929,-0.670395851135254,0.0444415025413036,-0.741141259670258,-0.669876515865326,0.0222372617572546,-0.741670370101929,-0.670395851135254,0.000509085191879421,0.695172607898712,-0.718842685222626,0.0022493323776871,0.670836627483368,-0.741601765155792,0.000509085191879421,0.695172607898712,-0.718842685222626,0.00830191560089588,0.695369958877563,-0.718604028224945,0.0100699532777071,0.671261847019196,-0.741151928901672,0.0100699532777071,0.671261847019196,-0.741151928901672,0.00169054383877665,0.679758906364441,-0.733433663845062,0.00084200466517359,0.679867327213287,-0.73333466053009,0.00169054383877665,0.679758906364441,-0.733433663845062,0.0006511525134556,0.686130225658417,-0.727478444576263,0.00130344368517399,0.686111211776733,-0.727495551109314,0.0006511525134556,0.686130225658417,-0.727478444576263,0.0395046137273312,-0.733624696731567,-0.678405582904816,0.0395046137273312,-0.733624696731567,-0.678405582904816,
  1058. 0.0395046137273312,-0.733624696731567,-0.678405582904816,-0.0409255474805832,-0.733582735061646,-0.678366780281067,-0.0409255474805832,-0.733582735061646,-0.678366780281067,-0.0409255474805832,-0.733582735061646,-0.678366780281067,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,-0,0.734197854995728,0.678935587406158,0.0137217659503222,-0.686707437038422,-0.726804375648499,0.0146566675975919,-0.702246189117432,-0.711783349514008,0.0135892918333411,-0.686633706092834,-0.726876497268677,0.0343481712043285,-0.685695648193359,-0.727077543735504,0.0351457931101322,-0.700734078884125,-0.712556421756744,0.0351457931101322,-0.700734078884125,-0.712556421756744,0.000119426025776193,-0.709000110626221,-0.705208361148834,6.06428075116128e-005,-0.70902955532074,-0.705178737640381,0.000119426025776193,-0.709000110626221,-0.705208361148834,0.000222754868445918,-0.714143872261047,-0.699998915195465,0.000446504011051729,-0.714159429073334,-0.699982941150665,0.000222754868445918,-0.714143872261047,-0.699998915195465,0.00981924124062061,-0.710466027259827,-0.703662991523743,0.00844457000494003,-0.690958261489868,-0.722845315933228,0.00981924124062061,-0.710466027259827,-0.703662991523743,0.00193885166663677,-0.710936903953552,-0.703253090381622,0.000587842834647745,-0.691205859184265,-0.722657680511475,0.000358401157427579,-0.68707686662674,-0.726584672927856,-0.0444944612681866,0.706178903579712,-0.706633985042572,-0.0222655590623617,0.707054197788239,-0.706808745861053,-0.0444944612681866,0.706178903579712,-0.706633985042572,-0.022265188395977,0.710996091365814,-0.702843368053436,-0.0445605665445328,0.710417151451111,-0.70236873626709,-0.0167334396392107,0.711156070232391,-0.702835083007813,0.0231704711914063,-0.706916987895966,0.706916987895966,0.0231704711914063,-0.706916987895966,0.706916987895966,0.0231704711914063,-0.706916987895966,0.706916987895966,-0.0459758155047894,-0.706359088420868,0.706359088420868,
  1059. -0.0459758155047894,-0.706359088420868,0.706359088420868,-0.0459758155047894,-0.706359088420868,0.706359088420868,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,0,0.707106828689575,-0.707106828689575,-0.0236154813319445,0.999721109867096,4.93474408358452e-006,-0.0550268553197384,0.998484373092651,-0.000980806187726557,-0.0236154813319445,0.999721109867096,4.93474408358452e-006,-0.0550918318331242,0.998453199863434,0.00749076902866364,-0.0236148238182068,0.99969482421875,0.00725544570013881,-0.0550918318331242,0.998453199863434,0.00749076902866364,0.0188246350735426,-0.999822795391083,-2.22005575235009e-016,0.0188246350735426,-0.999822795391083,-2.22005575235009e-016,0.0188246350735426,-0.999822795391083,-2.22005575235009e-016,0.0187682751566172,-0.999823868274689,-2.22005813463025e-016,0.0187682751566172,-0.999823868274689,-2.22005813463025e-016,0.0187682751566172,-0.999823868274689,-2.22005813463025e-016,-0.00304452469572425,0.999995350837708,2.21902422503901e-016,-0.00304452469572425,0.999995350837708,2.21902422503901e-016,-0.00304452469572425,0.999995350837708,2.21902422503901e-016,0,1,2.22044207878337e-016,0,1,2.22044207878337e-016,0,1,2.22044207878337e-016,0.0155749944970012,-0.999878704547882,-2.22017751333625e-016,0.0155749944970012,-0.999878704547882,-2.22017751333625e-016,0.0155749944970012,-0.999878704547882,-2.22017751333625e-016,0.0155180273577571,-0.999879598617554,-2.22017830742964e-016,0.0155180273577571,-0.999879598617554,-2.22017830742964e-016,0.0155180273577571,-0.999879598617554,-2.22017830742964e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0.00040255647036247,0.025562334805727,-0.999673128128052,0.0066595021635294,0.0256486907601357,-0.999648928642273,-0.00040255647036247,0.025562334805727,-0.999673128128052,0.00637817801907659,0.0315754115581512,-0.999481022357941,
  1060. -0.000490145466756076,0.0311242341995239,-0.999515414237976,0.00637817801907659,0.0315754115581512,-0.999481022357941,0.0160158779472113,-0.999871850013733,-2.22016348435307e-016,0.0160158779472113,-0.999871850013733,-2.22016348435307e-016,0.0160158779472113,-0.999871850013733,-2.22016348435307e-016,0.0160746723413467,-0.999870896339417,-2.2201611020729e-016,0.0160746723413467,-0.999870896339417,-2.2201611020729e-016,0.0160746723413467,-0.999870896339417,-2.2201611020729e-016,-0.00101259315852076,0.999999582767487,2.22112711667946e-016,-0.00101259315852076,0.999999582767487,2.22112711667946e-016,-0.00101259315852076,0.999999582767487,2.22112711667946e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.293203264474869,-0.956050157546997,-2.1228554129302e-016,0.293203264474869,-0.956050157546997,-2.1228554129302e-016,0.293203264474869,-0.956050157546997,-2.1228554129302e-016,0.293139934539795,-0.956069648265839,-2.12290094095112e-016,0.293139934539795,-0.956069648265839,-2.12290094095112e-016,0.293139934539795,-0.956069648265839,-2.12290094095112e-016,-0,1,2.22044472576133e-016,-0,1,2.22044472576133e-016,-0,1,2.22044472576133e-016,-0,1,2.22044472576133e-016,-0,1,2.22044472576133e-016,-0,1,2.22044472576133e-016,0.99983137845993,-0.0157453771680593,-0.0094604380428791,0.99983137845993,-0.0157453771680593,-0.0094604380428791,0.99992424249649,-0.00787341967225075,-0.00946075096726418,0.999609410762787,-6.09454308978913e-018,0.02794767357409,0.999578416347504,-0.00787069648504257,0.0279472358524799,0.999485552310944,-0.015739930793643,0.0279485341161489,0.999041140079498,-0.00786646548658609,0.0430710837244987,0.999072134494781,-9.54853375840689e-018,0.0430706739425659,0.999072134494781,-9.54853375840689e-018,0.0430706739425659,-0.016752690076828,-0.999691903591156,0.0183154065161943,-0.0155907655134797,-0.999691128730774,0.0193554274737835,-0.00876155588775873,-0.999784469604492,0.0188221782445908,-4.32548858952941e-006,-1,-0.000137339549837634,-0.00786548387259245,-0.999969065189362,-0.000175421184394509,
  1061. -0.0157454013824463,-0.999876141548157,8.65974434418604e-005,-0.00700330641120672,-0.999806225299835,-0.0183976925909519,-0.000619194761384279,-0.999806642532349,-0.0196594577282667,0.000851766963023692,-0.999837219715118,-0.0180290602147579,3.53711875504814e-005,-0.999999463558197,0.0011230354430154,-3.48906578437891e-005,-0.999999403953552,0.00110777805093676,-5.20912399224471e-005,-0.999999403953552,0.0011025978019461,4.8466601583641e-005,-0.999998807907104,-0.00153882312588394,-3.48837857018225e-005,-0.999999403953552,-0.00110755162313581,0.00780906062573195,-0.999968588352203,-0.00136963394470513,0.000879014376550913,-0.999610066413879,-0.0279087089002132,0.00654975743964314,-0.999587535858154,-0.0279613826423883,0.0248735323548317,-0.999330639839172,-0.0268243998289108,-0.0162835028022528,-0.999819695949554,0.00976650137454271,0.00743959005922079,-0.999911665916443,0.0110167507082224,0.00829483382403851,-0.99990838766098,0.0107071064412594,0.00833224505186081,-0.999897301197052,-0.0116595486178994,-0.0152492728084326,-0.999804556369781,-0.0125902835279703,0.0074045630171895,-0.999901711940765,-0.0119044538587332,-0.0159510709345341,-0.999851524829865,-0.00652075232937932,0.00758586684241891,-0.999944627285004,-0.00730791641399264,-0.0154406698420644,-0.999850869178772,-0.00774733163416386,-0.0162722952663898,-0.999777734279633,0.0134052280336618,0.00051397574134171,-0.999914765357971,0.0130549734458327,-0.0153146786615252,-0.999789476394653,0.0136536993086338,0.000224956937017851,-0.999983668327332,0.00571389170363545,-0.0159994158893824,-0.999851226806641,0.00644472800195217,0.00744596589356661,-0.999942183494568,0.007757811807096,-0.0215165037661791,-0.837170362472534,-0.546518802642822,0.0381238833069801,-0.817323744297028,-0.574916064739227,0.211428463459015,-0.90748405456543,-0.363002330064774,0.113392241299152,2.20601644594714e-016,-0.993550300598145,0.113392241299152,2.20601644594714e-016,-0.993550300598145,0.113392241299152,2.20601644594714e-016,-0.993550300598145,-0.129351571202278,2.20408388733842e-016,-0.991598784923553,
  1062. -0.129351571202278,2.20408388733842e-016,-0.991598784923553,-0.129351571202278,2.20408388733842e-016,-0.991598784923553,0.00253544212318957,2.22083647849944e-016,-0.999996781349182,0.00253544212318957,2.22083647849944e-016,-0.999996781349182,0.00253544212318957,2.22083647849944e-016,-0.999996781349182,0.0807045474648476,2.21417231443802e-016,-0.996738076210022,0.0807045474648476,2.21417231443802e-016,-0.996738076210022,0.0807045474648476,2.21417231443802e-016,-0.996738076210022,-0.0343481115996838,2.22425425644161e-016,-0.999409914016724,-0.0343481115996838,2.22425425644161e-016,-0.999409914016724,-0.0343481115996838,2.22425425644161e-016,-0.999409914016724,0.016977408900857,2.21986371409908e-016,-0.999855875968933,0.016977408900857,2.21986371409908e-016,-0.999855875968933,0.016977408900857,2.21986371409908e-016,-0.999855875968933,0.999965310096741,0.00789458118379116,-0.0026465596165508,0.999499082565308,0.0315242148935795,-0.00278962566517293,0.999715805053711,0.0236612316220999,-0.0029146468732506,0.999203562736511,0.023090735077858,0.0325436815619469,0.999492883682251,-8.29678036258448e-018,0.0318433232605457,0.999456763267517,0.00761725194752216,0.0320657603442669,1,0,0,0.99972128868103,0.0236096084117889,0.000371804868336767,1,0,0,0.999716639518738,0.0236377865076065,-0.00284804799593985,0.9988734126091,0.0472858510911465,-0.00402100011706352,0.999217867851257,0.039393849670887,-0.00346509157679975,0.999225258827209,0.0393093526363373,0.00191943207755685,0.999999940395355,3.12756242237811e-006,0.000397159688873217,0.999720633029938,0.0236061178147793,0.00118440180085599,1,0,0,0.999226093292236,0.03932985663414,0.000619367754552513,1,0,0,-0.00796443317085505,-0.0115817524492741,-0.999901235103607,-0.0159245692193508,-0.011401915922761,-0.999808192253113,-9.16807621251792e-005,-0.0116434572264552,-0.99993222951889,5.00969581480604e-005,0.00636231061071157,-0.999979853630066,-0.00787361152470112,0.00638608634471893,-0.999948620796204,-0.00782302767038345,0.0064243501983583,-0.999948859214783,-0.00787254329770803,-0.0176619049161673,-0.99981302022934,
  1063. -0.000139423151267692,-0.0177067462354898,-0.999843239784241,-0.00787254329770803,-0.0176619049161673,-0.99981302022934,0.00696160551160574,-0.896957516670227,0.442061960697174,0.0034810823854059,-0.896960258483887,0.442097455263138,-0.00706245098263025,-0.896931290626526,0.442113608121872,-0.00473954435437918,-0.798540711402893,-0.601922154426575,-0.01102664321661,-0.79853093624115,-0.601852774620056,-0.00628807209432125,-0.798585176467896,-0.601848959922791,-0.00783225893974304,-0.994696915149689,0.102551065385342,-0.00702504301443696,-0.994705617427826,0.102525167167187,-0.00702504301443696,-0.994705617427826,0.102525167167187,0.999706208705902,0.0238787345588207,-0.00418502371758223,0.999706208705902,0.0238787345588207,-0.00418502371758223,0.999706923961639,0.0238455291837454,-0.00418022880330682,0.988222301006317,0.0315965674817562,-0.149728208780289,0.988195240497589,0.0327702090144157,-0.14965383708477,0.988222301006317,0.0315965674817562,-0.149728208780289,0.98234087228775,0.0304726883769035,-0.18460176885128,0.982276618480682,0.0333695150911808,-0.184442684054375,0.982276618480682,0.0333695150911808,-0.184442684054375,0.982372939586639,0.0304667856544256,-0.184432581067085,0.982324063777924,0.0333568342030048,-0.18419224023819,0.982372939586639,0.0304667856544256,-0.184432581067085,-0.43532720208168,-0.900246202945709,-0.00685554649680853,-0.435374408960342,-0.900242984294891,-0.00342814484611154,-0.435374408960342,-0.900242984294891,-0.00342814484611154,-0.0509451925754547,-0.998701393604279,-0.000401143217459321,-0.0508309938013554,-0.998669683933258,-0.00866403058171272,-0.0509538277983665,-0.998700678348541,-0.000802422466222197,-0.0029120643157512,-0.999964416027069,-0.00791959464550018,-0.00291102728806436,-0.999995768070221,-2.22230846294309e-016,-0.00303612509742379,-0.999995410442352,-4.78130023111589e-005,-0.00333226122893393,-0.999994456768036,-2.21940181644503e-016,-0.00328013533726335,-0.999963223934174,-0.00792538281530142,-0.00329570681788027,-0.999994575977325,2.59504849964287e-005,0.0297165922820568,-0.99955826997757,-0.000467977835796773,
  1064. 0.0297703668475151,-0.99955677986145,-2.21814053144701e-016,0.0297453198581934,-0.999557495117188,-0.000234215141972527,-0.0418979339301586,-0.999121785163879,0.000659809971693903,-0.0419302061200142,-0.999120473861694,0.0003301591204945,-0.0418979339301586,-0.999121785163879,0.000659809971693903,0.999830663204193,-0.0157453641295433,-0.00953832268714905,0.999830663204193,-0.0157453641295433,-0.00953832268714905,0.999923527240753,-0.00787341315299273,-0.00953894387930632,0.999936401844025,2.46298321343584e-018,-0.0112872831523418,0.999812304973602,-0.0157450754195452,-0.011288427747786,0.999905288219452,-0.00787326972931623,-0.0112875057384372,0.999811053276062,-0.0157450567930937,-0.0114076398313046,0.999935030937195,2.45027379011912e-018,-0.011407277546823,0.999935030937195,2.45027379011912e-018,-0.011407277546823,0.999967753887177,0.00787376146763563,-0.00159234006423503,0.99999874830246,0,-0.00159236963372678,0.99999874830246,0,-0.00159236963372678,0.999999344348907,0,-0.00116687838453799,0.999968349933624,0.0078737661242485,-0.00116686406545341,0.999968349933624,0.0078737661242485,-0.00116686406545341,0.117219403386116,0.993106067180634,2.20124063596251e-016,0.11734414100647,0.993089616298676,0.00184793933294714,0.11734414100647,0.993089616298676,0.00184793933294714,0.00629595806822181,0.999980270862579,9.91489505395293e-005,0.00624914793297648,0.999980568885803,2.22038106594139e-016,0.00624914793297648,0.999980568885803,2.22038106594139e-016,-0.0239306539297104,0.999713659286499,0.000376860669348389,-0.0239747054874897,0.999712586402893,2.2190315042284e-016,-0.0239747054874897,0.999712586402893,2.2190315042284e-016,0.158575505018234,0.987346947193146,2.18721350565818e-016,0.158440664410591,0.987365365028381,-0.00249512866139412,0.158440664410591,0.987365365028381,-0.00249512866139412,0.999981343746185,0.00610600737854838,1.19834709995838e-018,0.999981343746185,0.00610600737854838,1.19834709995838e-018,0.999981343746185,0.00610600737854838,1.19834709995838e-018,0.999998152256012,0.00197121268138289,4.56730411859357e-019,
  1065. 0.999998152256012,0.00197121268138289,4.56730411859357e-019,0.999998152256012,0.00197121268138289,4.56730411859357e-019,0.999994814395905,0.00322774099186063,8.28625283492852e-019,0.999994814395905,0.00322774099186063,8.28625283492852e-019,0.999994814395905,0.00322774099186063,8.28625283492852e-019,0.999973058700562,0.00734056252986193,1.77647645137119e-018,0.999973058700562,0.00734056252986193,1.77647645137119e-018,0.999973058700562,0.00734056252986193,1.77647645137119e-018,0.999995827674866,0.00289735058322549,6.92718319778259e-019,0.999995827674866,0.00289735058322549,6.92718319778259e-019,0.999995827674866,0.00289735058322549,6.92718319778259e-019,0.998515605926514,-0.000428854778874666,0.054464552551508,0.998515605926514,-0.000428854778874666,0.054464552551508,0.998515605926514,-0.000428854778874666,0.054464552551508,0.998425543308258,-0.000441666081314906,0.0560915879905224,0.998425543308258,-0.000441666081314906,0.0560915879905224,0.998425543308258,-0.000441666081314906,0.0560915879905224,0.999353110790253,-0.000283171742921695,0.0359628200531006,0.999355852603912,-8.5958458586918e-018,0.0358870178461075,0.999353110790253,-0.000283171742921695,0.0359628200531006,0.999212205410004,-8.53571727278471e-018,0.0396885126829147,0.99920916557312,-0.000313098425976932,0.0397635102272034,0.999212205410004,-8.53571727278471e-018,0.0396885126829147,0.999289333820343,-8.30265169057238e-018,0.0376967750489712,0.999258279800415,0.00786817539483309,0.037695836275816,0.999289333820343,-8.30265169057238e-018,0.0376967750489712,0.999214708805084,0.00786783266812563,0.0388336516916752,0.999245643615723,-8.40923887558351e-018,0.038834672421217,0.999214708805084,0.00786783266812563,0.0388336516916752,0.999994099140167,-0.00343886064365506,-5.90412259726182e-019,0.999994099140167,-0.00343886064365506,-5.90412259726182e-019,0.999994099140167,-0.00343886064365506,-5.90412259726182e-019,0.999970436096191,-0.00769153703004122,-1.63120916354373e-018,0.999970436096191,-0.00769153703004122,-1.63120916354373e-018,0.999970436096191,-0.00769153703004122,-1.63120916354373e-018,
  1066. 0.999994337558746,-0.0033695911988616,-8.41845749331769e-019,0.999994337558746,-0.0033695911988616,-8.41845749331769e-019,0.999994337558746,-0.0033695911988616,-8.41845749331769e-019,0.999991893768311,-0.00403102580457926,-8.99309934787039e-019,0.999991893768311,-0.00403102580457926,-8.99309934787039e-019,0.999991893768311,-0.00403102580457926,-8.99309934787039e-019,0.999970674514771,-0.00767084816470742,-1.39630982531095e-018,0.999970674514771,-0.00767084816470742,-1.39630982531095e-018,0.999970674514771,-0.00767084816470742,-1.39630982531095e-018,0.0263717733323574,-0.000207651595701464,0.999652206897736,0.0262129902839661,-0.00787106715142727,0.999625504016876,0.0262129902839661,-0.00787106715142727,0.999625504016876,0.292400270700455,-0.00752965686842799,0.956266403198242,0.292294442653656,-0.00230153114534914,0.956325590610504,0.292373210191727,-2.11709201546863e-016,0.956304311752319,0.315630793571472,-0.00248528202064335,0.948878824710846,0.315867036581039,0.00248714187182486,0.948800206184387,0.315767526626587,-2.11121095983672e-016,0.9488365650177,0.0534886233508587,0.000421170028857887,0.998568475246429,0.0532634854316711,-2.22609099444817e-016,0.998580515384674,0.0534886233508587,0.000421170028857887,0.998568475246429,-0.999930441379547,-0.00787346810102463,0.00878126081079245,-0.999837577342987,-0.0157454740256071,0.00878104660660028,-0.999837577342987,-0.0157454740256071,0.00878104660660028,-0.999827980995178,-0.01574532315135,0.00981510058045387,-0.999920845031738,-0.00787339266389608,0.00981530826538801,-0.999920845031738,-0.00787339266389608,0.00981530826538801,-0.997397482395172,1.61014577438714e-017,-0.0720990970730782,-0.997366547584534,-0.00785327982157469,-0.0720992758870125,-0.997366547584534,-0.00785327982157469,-0.0720992758870125,-0.997109949588776,-0.00785125978291035,-0.0755666792392731,-0.997140765190125,1.66687249730704e-017,-0.0755665898323059,-0.997140765190125,1.66687249730704e-017,-0.0755665898323059,-0.999965906143188,0.00249650562182069,-0.00787374749779701,-0.999717950820923,0.00234881485812366,-0.0236338824033737,
  1067. -0.999965906143188,0.00249650562182069,-0.00787374749779701,-0.999962151050568,-0.0037025164347142,-0.00787371769547462,-0.999497652053833,-0.00392476934939623,-0.0314493365585804,-0.999714493751526,-0.00386214745230973,-0.0235848985612392,-0.999503135681152,0.00135061307810247,-0.0314910486340523,-0.999999284744263,0.00127135333605111,0,-0.999719977378845,0.00141271622851491,-0.0236265547573566,-0.999999225139618,0.00131881586275995,0,-0.999503135681152,0.00141020666342229,-0.0314915180206299,-0.999968230724335,0.0013193063205108,0.0078737661242485,-0.99996817111969,-0.00130602205172181,0.00787376519292593,-0.99987518787384,-0.00130594777874649,0.0157460663467646,-0.999999165534973,-0.00130617723334581,0,-0.999968945980072,0.000351884111296386,0.00787377078086138,-0.999875962734222,0.000351862632669508,0.0157460775226355,-0.999875962734222,0.000351862632669508,0.0157460775226355,-0.999968945980072,-0.000397845025872812,-0.00787377078086138,-0.999721169471741,-0.000534367572981864,-0.0236112587153912,-0.999968945980072,-0.000397845025872812,-0.00787377078086138,-0.999496638774872,-0.0042124972678721,-0.0314470417797565,-0.999960839748383,-0.00404270039871335,-0.0078737074509263,-0.99971330165863,-0.00415002554655075,-0.0235826000571251,-0.999999225139618,0.00124510936439037,0,-0.999503195285797,0.00131765904370695,-0.0314907915890217,-0.9997199177742,0.00137974775861949,-0.0236262921243906,-0.999503135681152,0.00134390406310558,-0.0314909964799881,-0.999999225139618,0.00126601022202522,0,-0.999968290328979,0.00126646389253438,0.00787376705557108,-0.999998927116394,-0.00148244365118444,0,-0.999874949455261,-0.00148217054083943,0.0157460626214743,-0.999967992305756,-0.00148226146120578,0.00787376426160336,-0.999876022338867,5.51244811504148e-005,0.0157460793852806,-0.999969005584717,5.51281518710312e-005,0.00787377171218395,-0.999876022338867,5.51244811504148e-005,0.0157460793852806,-0.999812841415405,-0.0157450847327709,0.0112430537119508,-0.9999058842659,-0.00787327438592911,0.0112436031922698,-0.999812841415405,-0.0157450847327709,0.0112430537119508,
  1068. -0.999922811985016,-0.00787340756505728,0.00961368344724178,-0.999829947948456,-0.0157453529536724,0.00961263198405504,-0.999922811985016,-0.00787340756505728,0.00961368344724178,-0.999999940395355,0,0.000316405959893018,-0.999968945980072,-0.00787377171218395,0.000316406862111762,-0.999968945980072,-0.00787377171218395,0.000316406862111762,-0.999999940395355,0,0.000321375206112862,-0.999968945980072,-0.00787377171218395,0.000321375962812454,-0.999999940395355,0,0.000321375206112862,-0.999937415122986,0.00787352304905653,0.00796150974929333,-0.999968409538269,-1.80916869713081e-018,0.00796156004071236,-0.999968409538269,-1.80916869713081e-018,0.00796156004071236,-0.999971926212311,-1.83046735713314e-018,0.00749446311965585,-0.999940931797028,0.00787355098873377,0.00749442260712385,-0.999940931797028,0.00787355098873377,0.00749442260712385,-0.999869465827942,0.00364891858771443,0.0157459769397974,-0.999993443489075,0.00364924850873649,0,-0.999869465827942,0.00364891858771443,0.0157459769397974,-0.999961912631989,0.00872787740081549,1.48395715923403e-018,-0.999838054180145,0.00872713793069124,0.0157454814761877,-0.999961912631989,0.00872787740081549,1.48395715923403e-018,-0.999865651130676,0.0163931231945753,2.48002582239143e-018,-0.999834656715393,0.0163916535675526,-0.00787271372973919,-0.999865651130676,0.0163931231945753,2.48002582239143e-018,-0.999963939189911,-0.00318591087125242,-0.00787373166531324,-0.999994933605194,-0.00318618374876678,0,-0.999963939189911,-0.00318591087125242,-0.00787373166531324,-0.999949157238007,-0.006301901768893,-0.00787361524999142,-0.99998015165329,-0.00630160002037883,-1.47390174491269e-018,-0.999949157238007,-0.006301901768893,-0.00787361524999142,-0.999999701976776,0.000793488812632859,1.79081125874218e-019,-0.999968707561493,0.000793514074757695,-0.00787376891821623,-0.999999701976776,0.000793488812632859,1.79081125874218e-019,-0.998358190059662,-0.000451018946478143,-0.0572794042527676,-0.998358190059662,-0.000451018946478143,-0.0572794042527676,-0.998358190059662,-0.000451018946478143,-0.0572794042527676,
  1069. -0.998238742351532,-0.000467109610326588,-0.0593229159712791,-0.998238742351532,-0.000467109610326588,-0.0593229159712791,-0.998238742351532,-0.000467109610326588,-0.0593229159712791,-0.99929016828537,-0.00029662239830941,-0.0376710444688797,-0.999289512634277,8.31089123665402e-018,-0.0376917012035847,-0.99929016828537,-0.00029662239830941,-0.0376710444688797,-0.999178946018219,8.94784264219639e-018,-0.0405148193240166,-0.999179720878601,-0.000318851147312671,-0.0404940918087959,-0.999178946018219,8.94784264219639e-018,-0.0405148193240166,-0.999289214611053,8.31591884041712e-018,-0.0376974530518055,-0.999289214611053,8.31591884041712e-018,-0.0376974530518055,-0.999289214611053,8.31591884041712e-018,-0.0376974530518055,-0.999246656894684,8.43506676302987e-018,-0.0388090461492538,-0.999246656894684,8.43506676302987e-018,-0.0388090461492538,-0.999246656894684,8.43506676302987e-018,-0.0388090461492538,-0.999862432479858,-0.00521313212811947,0.0157458651810884,-0.999986410140991,-0.00521366111934185,0,-0.999862432479858,-0.00521313212811947,0.0157458651810884,-0.999987125396729,-0.00507894065231085,0,-0.999863147735596,-0.00507824402302504,0.0157458763569593,-0.999987125396729,-0.00507894065231085,0,-0.999983251094818,0.00578957423567772,2.50485881835603e-018,-0.999952256679535,0.00578905083239079,-0.00787363946437836,-0.999983251094818,0.00578957423567772,2.50485881835603e-018,-0.999894320964813,-0.0122225200757384,-0.0078731831163168,-0.999925315380096,-0.0122235780581832,-2.51105026524099e-018,-0.999894320964813,-0.0122225200757384,-0.0078731831163168,-0.999933242797852,-0.0115546341985464,-2.68708980922876e-018,-0.999902248382568,-0.0115548698231578,-0.00787324644625187,-0.999902248382568,-0.0115548698231578,-0.00787324644625187,-0.999953091144562,-0.00564210023730993,-0.00787364598363638,-0.999984085559845,-0.00564197450876236,-1.28697267835338e-018,-0.999984085559845,-0.00564197450876236,-1.28697267835338e-018,-0.999912738800049,-0.00778932170942426,0.0106689259409904,-0.999943852424622,8.35158207337372e-005,0.0106065105646849,
  1070. -0.999943852424622,8.35158207337372e-005,0.0106065105646849,-0.999912142753601,0.000104381440905854,0.0132564418017864,-0.999881148338318,-0.00776820816099644,0.0133187090978026,-0.999881148338318,-0.00776820816099644,0.0133187090978026,-0.999773383140564,4.71185362044448e-018,-0.0212923847138882,-0.999740302562714,-0.00803987588733435,-0.0213239006698132,-0.999740302562714,-0.00803987588733435,-0.0213239006698132,-0.999902844429016,-0.00796340685337782,-0.0114498427137733,-0.999934911727905,2.36068351233473e-018,-0.0114175854250789,-0.999934911727905,2.36068351233473e-018,-0.0114175854250789,-0.999200820922852,0.00786772277206182,-0.0391900017857552,-0.99923175573349,9.19182618131381e-018,-0.0391928516328335,-0.99923175573349,9.19182618131381e-018,-0.0391928516328335,-0.999252617359161,8.04239916316727e-018,-0.0386578515172005,-0.999221622943878,0.00786788668483496,-0.0386560782790184,-0.999221622943878,0.00786788668483496,-0.0386560782790184,0.354656904935837,0.93495899438858,-0.00837797019630671,0.423560470342636,0.903977751731873,0.058487631380558,0.113315477967262,0.825162291526794,0.55341374874115,0.0188867039978504,0.999821543693542,-0.000446145597379655,0.0197607893496752,0.999804317951202,0.000933580391574651,0.0177903473377228,0.999305725097656,0.0327349342405796,-0.00555903138592839,0.999984622001648,-0.00026263139443472,-0.00548442872241139,0.999984979629517,0.000129553736769594,-0.0054473471827805,0.999985158443451,0.000257355015492067,-0.0130085963755846,0.999915301799774,0.000614579534158111,-0.0140394400805235,0.999901235103607,-0.000663280487060547,-0.0130085963755846,0.999915301799774,0.000614579534158111,-0.00124080223031342,0.999999225139618,2.22090265294844e-016,-0.00128062488511205,0.999999165534973,-6.0501948610181e-005,-0.00119545310735703,0.999999284744263,5.64781148568727e-005,0.0160213783383369,0.999871373176575,-0.000756915658712387,0.0164268743246794,0.999865174293518,2.21770298599019e-016,0.0160213783383369,0.999871373176575,-0.000756915658712387,0.0798734053969383,0.817767918109894,-0.569978833198547,
  1071. 0.187096491456032,0.982341647148132,2.05398236989557e-016,0.20974899828434,0.977705061435699,-0.00990939419716597,-0.999012529850006,0.020975649356842,-0.0391660369932652,-0.998675286769867,0.0198062099516392,0.0474934205412865,-0.868654847145081,0.221374750137329,-0.443206459283829,-0.999055325984955,0.0187891945242882,-0.0391849391162395,-0.999055206775665,0.0187943018972874,0.039184894412756,-0.99871551990509,0.0177379883825779,0.0474627465009689,-0.958633363246918,0.282419472932816,0.0355176962912083,-0.958709955215454,0.282158404588699,-0.0355227664113045,-0.958649814128876,0.281446099281311,-0.0421743392944336,-0.95829176902771,0.282661974430084,-0.0421793945133686,-0.958287119865417,0.283594608306885,0.0354948118329048,-0.958287119865417,0.283594608306885,0.0354948118329048,-0.994519531726837,-0.0994989722967148,-0.0321069024503231,-0.994180262088776,-0.100056648254395,0.0399288013577461,-0.994072198867798,-0.102039135992527,-0.0375297889113426,-0.999225914478302,0.000462460709968582,0.0393359623849392,-0.999504387378693,8.53093297337182e-005,-0.0314797833561897,-0.999225914478302,-0.000472570362035185,0.0393358841538429,-0.998484790325165,-0.000556392129510641,-0.0550258308649063,-0.999225914478302,-0.000472570362035185,0.0393358841538429,-0.999504387378693,8.53093297337182e-005,-0.0314797833561897,-0.998858571052551,0.00817089527845383,0.0470614917576313,-0.999199032783508,0.00704308692365885,0.0393940024077892,-0.998457372188568,0.00656217895448208,-0.055136427283287,0.569437801837921,0.818244934082031,0.0788402408361435,-0.00146921630948782,0.982436895370483,0.186589926481247,0.0100423134863377,0.977095901966095,0.212562441825867,0.000756920257117599,0.999871373176575,0.0160214751958847,-0.000129820517031476,0.999864161014557,0.0164872128516436,0.000756920257117599,0.999871373176575,0.0160214751958847,-0.00781879387795925,0.999968767166138,-0.00116365193389356,-3.56569507857785e-005,0.999999701976776,-0.000754738633986562,6.12937310506823e-006,0.999999701976776,-0.000778430781792849,-0.000562045664992183,0.999929189682007,-0.0118966307491064,
  1072. -0.00724843703210354,0.999886333942413,-0.0132224792614579,-0.000562045664992183,0.999929189682007,-0.0118966307491064,-0.00791113264858723,0.999968409538269,0.000790910504292697,-0.00782520137727261,0.999968290328979,0.00154192873742431,6.22972220298834e-005,0.999999225139618,0.00131862494163215,-0.0317817181348801,0.999474465847015,0.00639665499329567,-0.00767072336748242,0.999949932098389,0.00644205464050174,-0.00822831504046917,0.999937951564789,0.00750970328226686,-0.00922910869121552,0.999020934104919,-0.0432689413428307,-0.0294057112187147,0.998627901077271,-0.0433311238884926,-0.04128323122859,0.998266994953156,-0.0419392473995686,0.0391692705452442,0.0206032767891884,-0.999020159244537,-0.0474878624081612,0.0194309093058109,-0.998682796955109,0.443444728851318,0.220875233411789,-0.868660390377045,0.0391882434487343,0.0184045564383268,-0.999062359333038,-0.0391881503164768,0.0184156075119972,-0.999062120914459,-0.0474569946527481,0.017351072281599,-0.998722672462463,-0.0361688397824764,0.247552707791328,-0.968199074268341,0.0361805930733681,0.246895998716354,-0.968366324901581,0.0343870371580124,0.246523827314377,-0.968526482582092,0.0345734357833862,0.272140353918076,-0.961636364459991,-0.0399934761226177,0.272379964590073,-0.961358368396759,-0.0356963686645031,0.273131728172302,-0.961314141750336,0.0292882639914751,-0.123916126787663,-0.991860389709473,0.0409459955990314,-0.120354898273945,-0.991886138916016,-0.038097407668829,-0.12114605307579,-0.991903424263,-0.0392347648739815,-0.0129173006862402,-0.999146521091461,-0.0392347648739815,-0.0129173006862402,-0.999146521091461,0.0395281091332436,-0.0121741443872452,-0.999144315719604,-0.578913390636444,-0.815224647521973,0.0163727831095457,-0.611152589321136,-0.790167450904846,-0.0461291410028934,-0.344121217727661,-0.914447486400604,-0.212993949651718,0.0194941572844982,-0.999772667884827,-0.00863971188664436,0.0195539612323046,-0.999771475791931,0.00864205695688725,0.0207127667963505,-0.99967885017395,-0.0146013256162405,0.025419395416975,-0.999637484550476,0.00887192506343126,
  1073. 0.0251286514103413,-0.999645054340363,-0.00886053778231144,0.0259763672947884,-0.999551177024841,0.0149228097870946,-0.0155614418908954,-0.999747097492218,0.0162341725081205,-0.0147506603971124,-0.999864637851715,0.00729221478104591,-0.0147506603971124,-0.999864637851715,0.00729221478104591,-0.00639780564233661,-0.999950110912323,-0.00767211709171534,-0.0065198689699173,-0.999949753284454,0.00761693250387907,-0.00565535528585315,-0.999857306480408,0.0159239061176777,-0.00810093060135841,-0.999938666820526,0.00755459908396006,-0.00705716665834188,-0.999945819377899,-0.00765131693333387,-0.00748025812208653,-0.999938666820526,-0.00816803146153688,0.00845506135374308,-0.999451756477356,0.0320113971829414,0.010765889659524,-0.999914288520813,-0.00744948722422123,0.0102333780378103,-0.999914050102234,-0.00819564983248711,-0.232667803764343,0.826432228088379,-0.512714028358459,-0.240344390273094,0.969612419605255,-0.0456787496805191,-0.20012004673481,0.979671120643616,0.0140169151127338,-0.0268834065645933,-0.999638319015503,-0.000846721290145069,-0.0267854724079371,-0.999619483947754,-0.00660556415095925,-0.0258291531354189,-0.999358117580414,-0.0248271618038416,-0.00327134970575571,-0.99999463558197,-0.000103034501080401,-0.00310196983627975,-0.999995291233063,4.88499172206502e-005,-0.0033526758197695,-0.999964594841003,-0.00771534303203225,-0.00548814656212926,-0.999985039234161,8.64275061758235e-005,-0.00558105623349547,-0.999984383583069,-0.000175781227881089,-0.00560644082725048,-0.999984264373779,-0.00026487119612284,0.0287604071199894,-0.999585092067719,0.00158521928824484,0.0287624318152666,-0.999586284160614,-0.000452951702754945,0.0287748631089926,-0.999585092067719,0.00135944236535579,0.00999737903475761,-0.999950110912323,-0.000157439048052765,0.0101117631420493,-0.999948740005493,0.000557341321837157,0.0101214777678251,-0.99991911649704,0.00771398702636361,-0.999996781349182,-5.65539662489749e-019,0.00254647480323911,-0.999996781349182,-5.65539662489749e-019,0.00254647480323911,-0.999996781349182,-5.65539662489749e-019,0.00254647480323911,
  1074. -0.999992907047272,-8.30517252348913e-019,0.00379252876155078,-0.999992907047272,-8.30517252348913e-019,0.00379252876155078,-0.999992907047272,-8.30517252348913e-019,0.00379252876155078,-0.999991118907928,9.28461847524939e-019,-0.00421610753983259,-0.999991118907928,9.28461847524939e-019,-0.00421610753983259,-0.999991118907928,9.28461847524939e-019,-0.00421610753983259,-0.999995052814484,7.03345987987128e-019,-0.00317617366090417,-0.999995052814484,7.03345987987128e-019,-0.00317617366090417,-0.999995052814484,7.03345987987128e-019,-0.00317617366090417,-0.000818130793049932,2.22089021215203e-016,-0.999999761581421,-0.000818130793049932,2.22089021215203e-016,-0.999999761581421,-0.000818130793049932,2.22089021215203e-016,-0.999999761581421,0.00181753339711577,2.22044194643447e-016,-0.999998450279236,0.00181753339711577,2.22044194643447e-016,-0.999998450279236,0.00181753339711577,2.22044194643447e-016,-0.999998450279236,0.00190993573050946,2.22044234348117e-016,-0.999998271465302,0.00190993573050946,2.22044234348117e-016,-0.999998271465302,0.00190993573050946,2.22044234348117e-016,-0.999998271465302,0.00541786383837461,2.22148895856662e-016,-0.999985337257385,0.00541786383837461,2.22148895856662e-016,-0.999985337257385,0.00541786383837461,2.22148895856662e-016,-0.999985337257385,-0.999968945980072,0.000354571937350556,0.00787377078086138,-0.999999940395355,0.000354578427504748,0,-0.999968945980072,0.000354571937350556,0.00787377078086138,-1,1.35405526827263e-018,0,-0.999969005584717,-3.94296266789926e-019,0.00787377171218395,-1,1.35405526827263e-018,0,-0.999990165233612,-0.00445765117183328,-9.88699828068041e-019,-0.999990165233612,-0.00445765117183328,-9.88699828068041e-019,-0.999990165233612,-0.00445765117183328,-9.88699828068041e-019,-0.999991476535797,-0.00412597367540002,-9.88601496972724e-019,-0.999991476535797,-0.00412597367540002,-9.88601496972724e-019,-0.999991476535797,-0.00412597367540002,-9.88601496972724e-019,-0.999999940395355,0,0.000379799545044079,-0.999999940395355,0,0.000379799545044079,-0.999999940395355,0,0.000379799545044079,
  1075. -0.999999284744263,2.47561819049744e-019,-0.00121256068814546,-0.999999284744263,2.47561819049744e-019,-0.00121256068814546,-0.999999284744263,2.47561819049744e-019,-0.00121256068814546,-1,0,0.000254324986599386,-1,0,0.000254324986599386,-1,0,0.000254324986599386,-0.999996066093445,6.67343158620911e-019,-0.00280767027288675,-0.999996066093445,6.67343158620911e-019,-0.00280767027288675,-0.999996066093445,6.67343158620911e-019,-0.00280767027288675,-0.999999344348907,-2.49068192493385e-019,0.0011414245236665,-0.999999344348907,-2.49068192493385e-019,0.0011414245236665,-0.999999344348907,-2.49068192493385e-019,0.0011414245236665,-0.999999582767487,3.27876145143756e-019,-0.000925936794374138,-0.999999582767487,3.27876145143756e-019,-0.000925936794374138,-0.999999582767487,3.27876145143756e-019,-0.000925936794374138,-0.107530772686005,0.99420177936554,2.20785212516252e-016,-0.107532687485218,0.994201183319092,-0.000846714072395116,-0.107532687485218,0.994201183319092,-0.000846714072395116,-6.22234711045166e-006,1,-4.89882125975782e-008,0,1,2.22070201201906e-016,0,1,2.22070201201906e-016,6.22234711045166e-006,1,-4.89882125975782e-008,0,1,2.22070201201906e-016,0,1,2.22070201201906e-016,0.00425027776509523,0.999991059303284,2.22074727534218e-016,0.00425557279959321,0.999990940093994,-3.35084405378439e-005,0.00425557279959321,0.999990940093994,-3.35084405378439e-005,-0.308379650115967,-0.951260268688202,0.00242818682454526,-0.308379650115967,-0.951260268688202,0.00242818682454526,-0.308379650115967,-0.951260268688202,0.00242818682454526,0.391246765851974,-0.920285940170288,-2.0259024336007e-016,0.390619367361069,-0.920547127723694,-0.00307574379257858,0.390619367361069,-0.920547127723694,-0.00307574379257858,-0.010671959258616,-0.99994307756424,8.40313005028293e-005,-0.0107872122898698,-0.999941825866699,-2.21643574529176e-016,-0.0107872122898698,-0.999941825866699,-2.21643574529176e-016,-0.00603986252099276,0.999981760978699,2.22047384251889e-016,-0.00603690510615706,0.999981880187988,-4.75346896564588e-005,-0.00603690510615706,0.999981880187988,-4.75346896564588e-005,
  1076. 0.118054382503033,0.993006706237793,0.00092956202570349,0.118047267198563,0.993008077144623,2.20345099490815e-016,0.118047267198563,0.993008077144623,2.20345099490815e-016,0.112390540540218,0.993663728237152,-0.000884964887518436,0.112399034202099,0.993663132190704,2.2064976665403e-016,0.112399034202099,0.993663132190704,2.2064976665403e-016,0.116893410682678,0.993144452571869,2.2057267342094e-016,0.116865061223507,0.993147373199463,-0.000920197344385087,0.116865061223507,0.993147373199463,-0.000920197344385087,0.000354638556018472,0.999999940395355,-5.58485453439062e-006,0.000393350463127717,0.999999940395355,-3.09728898173489e-006,0.000354638556018472,0.999999940395355,-5.58485453439062e-006,-9.96364251477644e-005,1,7.84526264396845e-007,-0.00011134019587189,1,1.75339039287792e-006,-9.96364251477644e-005,1,7.84526264396845e-007,-9.96364251477644e-005,1,7.84526264396845e-007,-8.79174040164799e-005,1,2.22077559800635e-016,-9.96364251477644e-005,1,7.84526264396845e-007,-0.00350462202914059,0.999993860721588,2.22091032918453e-016,-0.00348616321571171,0.999993920326233,2.7450123525341e-005,-0.00350462202914059,0.999993860721588,2.22091032918453e-016,-0.00555604975670576,-0.999984562397003,-4.37484341091476e-005,-0.00556732015684247,-0.999984502792358,-2.21914691246746e-016,-0.00555604975670576,-0.999984562397003,-4.37484341091476e-005,-8.99971055332571e-005,-1,-2.22115173357449e-016,-9.77639210759662e-005,-1,-7.69786367982306e-007,-8.99971055332571e-005,-1,-2.22115173357449e-016,-8.99971055332571e-005,-1,-2.22115173357449e-016,-8.22191286715679e-005,-1,6.47402998765756e-007,-8.99971055332571e-005,-1,-2.22115173357449e-016,-0.0012571046827361,-0.999999225139618,9.89845557342051e-006,-0.00125109159853309,-0.999999225139618,-2.22069857094771e-016,-0.0012571046827361,-0.999999225139618,9.89845557342051e-006,0.00444423500448465,2.22099503247925e-016,-0.999990224838257,0.00444423500448465,2.22099503247925e-016,-0.999990224838257,0.00444423500448465,2.22099503247925e-016,-0.999990224838257,0.00182026089169085,2.22044274052786e-016,-0.999998331069946,
  1077. 0.00182026089169085,2.22044274052786e-016,-0.999998331069946,0.00182026089169085,2.22044274052786e-016,-0.999998331069946,0.001908925245516,2.22044247583007e-016,-0.999998271465302,0.001908925245516,2.22044247583007e-016,-0.999998271465302,0.001908925245516,2.22044247583007e-016,-0.999998271465302,0.00115983129944652,2.21998428394516e-016,-0.999999344348907,0.00115983129944652,2.21998428394516e-016,-0.999999344348907,0.00115983129944652,2.21998428394516e-016,-0.999999344348907,0.00081812561256811,-2.22087618316884e-016,0.999999761581421,0.00081812561256811,-2.22087618316884e-016,0.999999761581421,0.00081812561256811,-2.22087618316884e-016,0.999999761581421,-0.00181751896161586,-2.22044181408558e-016,0.999998450279236,-0.00181751896161586,-2.22044181408558e-016,0.999998450279236,-0.00181751896161586,-2.22044181408558e-016,0.999998450279236,-0.0019099204801023,-2.22044221113227e-016,0.999998271465302,-0.0019099204801023,-2.22044221113227e-016,0.999998271465302,-0.0019099204801023,-2.22044221113227e-016,0.999998271465302,-0.00541855487972498,-2.22144528343028e-016,0.999985337257385,-0.00541855487972498,-2.22144528343028e-016,0.999985337257385,-0.00541855487972498,-2.22144528343028e-016,0.999985337257385,-0.00793516263365746,-0.999968528747559,-2.22281853559601e-016,-0.0079615069553256,-0.999968409538269,6.26890032435767e-005,-0.0079615069553256,-0.999968409538269,6.26890032435767e-005,5.02659349876922e-006,-1,-3.95741075465139e-008,0,-1,-2.22005257597653e-016,0,-1,-2.22005257597653e-016,0,-1,-2.22005257597653e-016,0,-1,-2.22005257597653e-016,0,-1,-2.22005257597653e-016,-0.0032304753549397,-0.999994874000549,-2.22038530110613e-016,-0.0032304753549397,-0.999994874000549,-2.22038530110613e-016,-0.0032304753549397,-0.999994874000549,-2.22038530110613e-016,-0.0108874225988984,-2.22002875317489e-016,0.999940752983093,-0.0108874225988984,-2.22002875317489e-016,0.999940752983093,-0.0108874225988984,-2.22002875317489e-016,0.999940752983093,-0.0636060759425163,-2.21434370626094e-016,0.99797511100769,-0.0636060759425163,-2.21434370626094e-016,0.99797511100769,
  1078. -0.0636060759425163,-2.21434370626094e-016,0.99797511100769,0.0269915480166674,-2.21676952921254e-016,0.999635756015778,0.0269915480166674,-2.21676952921254e-016,0.999635756015778,0.0269915480166674,-2.21676952921254e-016,0.999635756015778,0.0073731392621994,-5.80562445975374e-005,-0.999972820281982,0.00740084424614906,2.22314305509393e-016,-0.999972641468048,0.0073731392621994,-5.80562445975374e-005,-0.999972820281982,0.00662181945517659,2.22040277116066e-016,-0.999978065490723,0.0066208210773766,-5.21324509463739e-005,-0.999978184700012,0.00662181945517659,2.22040277116066e-016,-0.999978065490723,0.00661052903160453,2.22039509492458e-016,-0.999978244304657,0.0066090733744204,5.20399516972248e-005,-0.999978184700012,0.00661052903160453,2.22039509492458e-016,-0.999978244304657,0.00287381233647466,2.26284628297435e-005,-0.999995887279511,0.00289123831316829,2.22017698394066e-016,-0.999995827674866,0.00287381233647466,2.26284628297435e-005,-0.999995887279511,0.00117570604197681,-2.21985842014316e-016,0.999999403953552,0.00118362042121589,-9.31983777263667e-006,0.999999284744263,0.00118362042121589,-9.31983777263667e-006,0.999999284744263,0.00199992535635829,-1.5747444194858e-005,0.999998092651367,0.00199914560653269,-2.2203473169724e-016,0.999998092651367,0.00199914560653269,-2.2203473169724e-016,0.999998092651367,0.00198561628349125,1.56347705342341e-005,0.999998033046722,0.00198408518917859,-2.22034308180766e-016,0.999998033046722,0.00198408518917859,-2.22034308180766e-016,0.999998033046722,-0.00133793614804745,-2.22117052711801e-016,0.999999105930328,-0.00133114424534142,-1.04814580481616e-005,0.999999105930328,-0.00133114424534142,-1.04814580481616e-005,0.999999105930328,0.00104246672708541,-0.999999463558197,-2.2203739191009e-016,0.00104246672708541,-0.999999463558197,-2.2203739191009e-016,0.00104246672708541,-0.999999463558197,-2.2203739191009e-016,-8.79174040164799e-005,-1,-2.22077559800635e-016,-8.79174040164799e-005,-1,-2.22077559800635e-016,-8.79174040164799e-005,-1,-2.22077559800635e-016,-8.79174040164799e-005,-1,-2.22077559800635e-016,
  1079. -9.16758945095353e-005,-1,-7.21853439245024e-007,-8.79174040164799e-005,-1,-2.22077559800635e-016,0.0124723548069596,-0.999922215938568,9.82073979685083e-005,0.0123627353459597,-0.999923586845398,-2.23122374941074e-016,0.0124723548069596,-0.999922215938568,9.82073979685083e-005,0.0065440614707768,0.999978601932526,5.15280444233213e-005,0.00654352828860283,0.999978601932526,2.22046960735416e-016,0.0065440614707768,0.999978601932526,5.15280444233213e-005,-0.118135042488575,0.992997527122498,2.20593121325682e-016,-0.118140034377575,0.992996513843536,-0.000930236477870494,-0.118135042488575,0.992997527122498,2.20593121325682e-016,-0.112481214106083,0.993653833866119,2.20636346475772e-016,-0.112472906708717,0.993654489517212,0.000885613495483994,-0.112481214106083,0.993653833866119,2.20636346475772e-016,-0.118081256747246,0.993003487586975,0.000929773726966232,-0.118109792470932,0.993000566959381,2.20427288156478e-016,-0.118081256747246,0.993003487586975,0.000929773726966232,0.0217255596071482,0.999763965606689,-0.000171067425981164,0.0217454135417938,0.999763548374176,2.22138493233279e-016,0.0217255596071482,0.999763965606689,-0.000171067425981164,0.000175834793481044,1,2.22077533330856e-016,0.000190057675354183,1,-1.49650190905959e-006,0.000175834793481044,1,2.22077533330856e-016,0.000175834793481044,1,2.22077533330856e-016,0.000161590127390809,1,1.27237842661998e-006,0.000175834793481044,1,2.22077533330856e-016,0.00270926835946739,0.999996423721313,2.13328003155766e-005,0.00268854200839996,0.999996483325958,2.2197091305862e-016,0.00270926835946739,0.999996423721313,2.13328003155766e-005,0.00524246413260698,-0.999986350536346,4.12792614952195e-005,0.00525838928297162,-0.999986171722412,-2.22035644904636e-016,0.00524246413260698,-0.999986350536346,4.12792614952195e-005,8.99971055332571e-005,-1,-2.22005257597653e-016,9.64795908657834e-005,-1,7.59674890105089e-007,8.99971055332571e-005,-1,-2.22005257597653e-016,8.99971055332571e-005,-1,-2.22005257597653e-016,8.35034516057931e-005,-1,-6.57514419799554e-007,8.99971055332571e-005,-1,-2.22005257597653e-016,
  1080. 0.00207486981526017,-0.999997854232788,-1.63375516422093e-005,0.00206980784423649,-0.999997854232788,-2.22049395955139e-016,0.00207486981526017,-0.999997854232788,-1.63375516422093e-005,0.998588562011719,-0.0228335037827492,0.0479552298784256,0.998372733592987,-0.0306878946721554,0.0480640083551407,0.998808860778809,-0.0074849734082818,0.0482171103358269,0.998073101043701,-1.34763769088772e-017,0.0620507001876831,0.99778801202774,-0.0225851889699697,0.062522403895855,0.998039066791534,-0.00736913410946727,0.0621590651571751,0.999654829502106,-5.82936346106535e-018,0.0262758955359459,0.999375879764557,-0.023187629878521,0.0266493242233992,0.999654829502106,-5.82936346106535e-018,0.0262758955359459,-0.999715805053711,0.02366117015481,0.00291066942736506,-0.999965369701386,0.00789454951882362,0.00264258217066526,-0.999499201774597,0.031524159014225,0.0027856498491019,-0.999203503131866,0.0230906680226326,-0.0325478166341782,-0.999492764472961,8.29677870822325e-018,-0.0318474434316158,-0.999456703662872,0.00761721935123205,-0.0320698879659176,-1,0,-0,-0.99972128868103,0.0236096084117889,-0.000371804868336767,-1,0,-0,0.000401667144615203,0.0170036349445581,0.99985545873642,-0.00720927678048611,0.0168507639318705,0.999832034111023,0.000401667144615203,0.0170036349445581,0.99985545873642,-0.00714726326987147,0.0184204895049334,0.999804794788361,0.000419928401242942,0.0177771765738726,0.9998419880867,-0.00714726326987147,0.0184204895049334,0.999804794788361,-0.00665972428396344,0.0307440310716629,0.99950510263443,-0.00616672448813915,0.0309042222797871,0.999503433704376,-0.00665972428396344,0.0307440310716629,0.99950510263443,-0.00768756493926048,0.00337771233171225,0.999964773654938,-0.00773578556254506,0.00350383040495217,0.999963939189911,-0.00768756493926048,0.00337771233171225,0.999964773654938,0.997514009475708,-0.0383410714566708,0.0591266080737114,0.997231841087341,-0.045728325843811,0.0586310476064682,0.997947514057159,-0.0231032986193895,0.059724222868681,0.998266994953156,-1.20899568549699e-017,0.0588475577533245,
  1081. 0.997477412223816,-0.0383298806846142,0.0597462505102158,0.997980177402496,-0.0231083929538727,0.0591742731630802,0.997796714305878,-1.47183621288459e-017,0.0663468614220619,0.997021377086639,-0.0381976589560509,0.067002184689045,0.997796714305878,-1.47183621288459e-017,0.0663468614220619,-0.999217867851257,0.0393938459455967,0.00346506922505796,-0.999716639518738,0.0236377865076065,0.00284803682006896,-0.9988734126091,0.0472858510911465,0.00402096658945084,-0.999225258827209,0.0393093228340149,-0.00192135234829038,-0.999999940395355,3.14237399834383e-006,-0.000399040785850957,-0.999720633029938,0.0236061029136181,-0.0011863085674122,-1,0,-0,-0.999226093292236,0.03932985663414,-0.000619367754552513,-1,0,-0,-0.998588562011719,-0.0228335037827492,-0.0479552634060383,-0.998372733592987,-0.0306878946721554,-0.0480640381574631,-0.998808860778809,-0.0074849734082818,-0.0482171401381493,-0.998038828372955,-0.00736910384148359,-0.0621626451611519,-0.998072803020477,1.41305444245086e-017,-0.0620542764663696,-0.997787773609161,-0.0225851275026798,-0.0625259876251221,-0.999375879764557,-0.023187629878521,-0.0266493242233992,-0.999654829502106,5.83882144418928e-018,-0.0262758955359459,-0.999654829502106,5.83882144418928e-018,-0.0262758955359459,-0.000401667435653508,0.017003646120429,-0.99985545873642,0.00720927631482482,0.0168507769703865,-0.999832034111023,-0.000401667435653508,0.017003646120429,-0.99985545873642,0.00714726373553276,0.0184204764664173,-0.999804794788361,-0.000419928110204637,0.0177771635353565,-0.9998419880867,0.00714726373553276,0.0184204764664173,-0.999804794788361,0.00665972474962473,0.0307440161705017,-0.99950510263443,0.00616672541946173,0.0309042073786259,-0.999503433704376,0.00665972474962473,0.0307440161705017,-0.99950510263443,0.00768756493926048,0.00337771233171225,-0.999964773654938,0.00773578556254506,0.00350383040495217,-0.999963939189911,0.00768756493926048,0.00337771233171225,-0.999964773654938,-0.997513771057129,-0.0383410267531872,-0.0591288432478905,-0.997231721878052,-0.0457282662391663,-0.0586332827806473,
  1082. -0.99794739484787,-0.0231032781302929,-0.0597264729440212,-0.997980237007141,-0.0231083910912275,-0.059174619615078,-0.9982670545578,1.20899585093311e-017,-0.0588479153811932,-0.997477412223816,-0.0383298732340336,-0.0597465857863426,-0.997021377086639,-0.0381976589560509,-0.0670022144913673,-0.997796714305878,1.47183621288459e-017,-0.0663468912243843,-0.997796714305878,1.47183621288459e-017,-0.0663468912243843,-0.999518930912018,-0.0247850865125656,0.0186436213552952,-0.999523103237152,-0.0246369503438473,0.018617644906044,-0.999518930912018,-0.0247850865125656,0.0186436213552952,-0.999623000621796,-0.0243163481354713,0.0127581749111414,-0.999620735645294,-0.0244159530848265,0.0127454213798046,-0.999623000621796,-0.0243163481354713,0.0127581749111414,-0.999623000621796,-0.0243163481354713,0.0127581749111414,-0.999627470970154,-0.0241163577884436,0.0127790067344904,-0.999623000621796,-0.0243163481354713,0.0127581749111414,-0.980915129184723,-0.030729990452528,0.191992729902267,-0.98084169626236,-0.0337445363402367,0.191861629486084,-0.980915129184723,-0.030729990452528,0.191992729902267,-0.999720990657806,-0.0236096270382404,-0.00073950836667791,-0.998484432697296,-0.0550345703959465,-3.35044273924723e-006,-0.999720990657806,-0.0236096270382404,-0.00073950836667791,-0.999721109867096,-0.0236159674823284,6.32375231361948e-005,-0.998483598232269,-0.0550345331430435,-0.00129506213124841,-0.999225914478302,-0.039339117705822,-6.12138828728348e-005,-0.993729412555695,-0.0547724850475788,-0.0974775105714798,-0.993729412555695,-0.0547724850475788,-0.0974775105714798,-0.994496405124664,-0.0383857972919941,-0.0974856168031693,0.999225914478302,0.0393396057188511,2.22967173613142e-006,0.999720990657806,0.0236096363514662,0.000738434784580022,0.999720990657806,0.0236096363514662,0.000738434784580022,0.999708652496338,0.0236532222479582,-0.00483253644779325,0.999217331409454,0.0393392629921436,-0.00414017541334033,0.998475909233093,0.0550341047346592,-0.00413603894412518,0.995213389396667,0.0548542812466621,0.080879807472229,
  1083. 0.995957016944885,0.0392109043896198,0.0808228105306625,0.995212018489838,0.0554877668619156,0.0804619044065475,-0.999720990657806,-0.0236095655709505,-0.000747329904697835,-0.998484432697296,-0.0550345703959465,-1.11689387267688e-005,-0.999720990657806,-0.0236095655709505,-0.000747329904697835,-0.999270081520081,-0.0233668517321348,-0.0302214249968529,-0.997988522052765,-0.0550072453916073,-0.0315171331167221,-0.998777627944946,-0.0390836708247662,-0.0302611812949181,-0.993621706962585,-0.0547665469348431,-0.0985726416110992,-0.993621706962585,-0.0547665469348431,-0.0985726416110992,-0.994386315345764,-0.038372628390789,-0.0986075773835182,0.999225914478302,0.0393396057188511,1.11475637822878e-005,0.999720990657806,0.0236095655709505,0.000747298705391586,0.999720990657806,0.0236095655709505,0.000747298705391586,0.999605655670166,0.0234915837645531,0.0153862787410617,0.999096632003784,0.0393345095217228,0.0160839948803186,0.998355567455292,0.0550274737179279,0.0160669516772032,0.998431801795959,0.0550316721200943,-0.0102684972807765,0.999173402786255,0.0393375344574451,-0.0102605279535055,0.998431742191315,0.0549472756683826,-0.0107182515785098,0.0169197749346495,-0.00529157975688577,-0.999842941761017,0.0155668687075377,0.00954129081219435,-0.999833405017853,0.0169197749346495,-0.00529157975688577,-0.999842941761017,0.00666494574397802,0.00862369034439325,-0.999940693378448,0.00865198485553265,-0.00661520846188068,-0.999940693378448,0.00666494574397802,0.00862369034439325,-0.999940693378448,0.0232220869511366,0.0103298733010888,-0.999676942825317,0.0219657365232706,0.0246469210833311,-0.999454855918884,0.0232220869511366,0.0103298733010888,-0.999676942825317,0.0250250548124313,0.0247896779328585,-0.999379515647888,0.0266060139983892,0.0106783099472523,-0.999588966369629,0.0250250548124313,0.0247896779328585,-0.999379515647888,-0.00443173199892044,0.0263793580234051,-0.999642193317413,-0.00292867794632912,0.0263581015169621,-0.99964827299118,-0.00443173199892044,0.0263793580234051,-0.999642193317413,-0.00439981371164322,0.0395983271300793,-0.999206006526947,
  1084. -0.00656638387590647,0.0390856191515923,-0.999214291572571,-0.00439981371164322,0.0395983271300793,-0.999206006526947,-0.00298372865654528,0.026853559538722,-0.999634921550751,0.00592016987502575,0.0275268871337175,-0.999603509902954,-0.00298372865654528,0.026853559538722,-0.999634921550751,0.00624904362484813,0.0228988770395517,-0.999718368053436,-0.00242097349837422,0.0217887628823519,-0.999759674072266,0.00624904362484813,0.0228988770395517,-0.999718368053436,0.994718492031097,0.102636858820915,-0.000905073597095907,0.98743999004364,0.157993972301483,0.000447806232841685,0.98743999004364,0.157993972301483,0.000447806232841685,0.98744124174118,0.157986596226692,-0.00050018256297335,0.994719684123993,0.102629370987415,5.39392385690007e-005,0.994719684123993,0.102629370987415,5.39392385690007e-005,0.994719684123993,0.102629370987415,5.39392385690007e-005,0.998885095119476,0.0472034737467766,-0.000765374570619315,0.994719684123993,0.102629370987415,5.39392385690007e-005,0.998886168003082,0.0471797697246075,0.000742988486308604,0.994720041751862,0.102623380720615,0.000814471277408302,0.998886168003082,0.0471797697246075,0.000742988486308604,0.995472490787506,0.0406895466148853,0.0859015136957169,0.997191965579987,0.0504345074295998,0.0553604289889336,0.0314081609249115,0.0677066594362259,0.997210800647736,0.99946004152298,-0.00967169739305973,-0.0314029008150101,0.998441755771637,-0.009691690094769,0.0549559108912945,0.996225774288177,-0.00876335147768259,0.0863562896847725,0.949407756328583,0.309234499931335,0.0547644793987274,0.950407445430756,0.309318453073502,-0.0323696695268154,0.949263393878937,0.310099512338638,-0.0523216016590595,0.930231750011444,-0.363765805959702,0.048408318310976,0.930032968521118,-0.363883405923843,-0.0512616597115994,0.916827738285065,-0.364596515893936,-0.162777364253998,-0.0464341975748539,-0.991851806640625,0.118633262813091,-0.436732709407806,-0.899269223213196,0.0240718796849251,-0.43781366944313,-0.89882355928421,0.0208667572587729,0.0393872149288654,-0.0061528654769063,-0.999205052852631,
  1085. 0.985903143882751,-0.0200387015938759,-0.166112691164017,0.998484432697296,-1.80256774910958e-005,-0.0550346113741398,0.998484432697296,-1.80256774910958e-005,-0.0550346113741398,0.306795388460159,0.00322002172470093,-0.951770067214966,0.0393872149288654,-0.0061528654769063,-0.999205052852631,-0.00638972548767924,0.99927419424057,-0.037555817514658,-0.00854864809662104,0.999963223934174,0.000814158993307501,0.0149993533268571,0.999379396438599,-0.0318718664348125,0.00210055522620678,0.999997794628143,-0.000200052716536447,-0.00772162992507219,0.999962747097015,-0.00386314769275486,0.0020547229796648,0.999967277050018,0.0078252237290144,0.0025266227312386,0.999966382980347,0.00781406834721565,0.002593262353912,0.999996602535248,0.000204193929675967,0.0021356139332056,0.999997675418854,-0.000203391929971986,-0.00183806335553527,0.999998390674591,-0.000144729245221242,-0.00269966851919889,0.999964952468872,0.00793751142919064,-0.00245413184165955,0.999967515468597,0.00768052088096738,-0.00107018777634948,0.999999523162842,-8.42669760459103e-005,-0.000196268651052378,0.999968945980072,-0.00788149796426296,0.00143002276308835,0.999998986721039,-0.000136191898491234,0.0017481513787061,0.999998569488525,0.000137649723910727,-0.00782520137727261,0.999968290328979,0.00154192873742431,0.00201698252931237,0.999967694282532,-0.00779435317963362,0.000299914361676201,0.999979794025421,0.00634818617254496,-0.001093331258744,0.999999403953552,-8.60889776959084e-005,-0.00170947029255331,0.999968588352203,0.00773916440084577,0,0,0,0,0,0,0,0,0,0.0105938035994768,0.999943912029266,2.22009188359924e-016,0.010604121722281,0.999943792819977,-8.34970123833045e-005,0.010604121722281,0.999943792819977,-8.34970123833045e-005,5.66874132346129e-006,1,-4.46297043765753e-008,0,1,2.22024620241432e-016,0,1,2.22024620241432e-016,0,1,2.22024620241432e-016,0,1,2.22024620241432e-016,0,1,2.22024620241432e-016,-0.0483264662325382,0.998831689357758,2.21873967490829e-016,-0.0483264662325382,0.998831689357758,2.21873967490829e-016,-0.0483264662325382,0.998831689357758,2.21873967490829e-016,
  1086. 0.0195151921361685,-0.999809503555298,-0.000307325884932652,0.0193951185792685,-0.999811887741089,-2.22392682526794e-016,0.0195151921361685,-0.999809503555298,-0.000307325884932652,0,-1,-2.22066151325627e-016,-6.49447156320093e-006,-1,1.02275528490736e-007,0,-1,-2.22066151325627e-016,0,-1,-2.22066151325627e-016,9.73869100562297e-006,-1,2.29954636665752e-007,0,-1,-2.22066151325627e-016,0.00185034517198801,-0.999998390674591,4.37077542301267e-005,0.00172660185489804,-0.999998509883881,-2.21929381974425e-016,0.00185034517198801,-0.999998390674591,4.37077542301267e-005,-0.0055278604850173,-2.2202741280318e-016,0.999984741210938,-0.0055278604850173,-2.2202741280318e-016,0.999984741210938,-0.0055278604850173,-2.2202741280318e-016,0.999984741210938,-0.00555419363081455,-2.22040965330336e-016,0.999984562397003,-0.00555419363081455,-2.22040965330336e-016,0.999984562397003,-0.00555419363081455,-2.22040965330336e-016,0.999984562397003,-0.00554928369820118,-2.22041203558352e-016,0.999984622001648,-0.00554928369820118,-2.22041203558352e-016,0.999984622001648,-0.00554928369820118,-2.22041203558352e-016,0.999984622001648,-0.00238068331964314,-2.22087380088868e-016,0.99999725818634,-0.00238068331964314,-2.22087380088868e-016,0.99999725818634,-0.00238068331964314,-2.22087380088868e-016,0.99999725818634,-0.00189451780170202,2.22179918438355e-016,-0.999998211860657,-0.00189451780170202,2.22179918438355e-016,-0.999998211860657,-0.00189451780170202,2.22179918438355e-016,-0.999998211860657,0.0016076989704743,2.22044326992345e-016,-0.999998807907104,0.0016076989704743,2.22044326992345e-016,-0.999998807907104,0.0016076989704743,2.22044326992345e-016,-0.999998807907104,0.00160926894750446,2.22044326992345e-016,-0.999998807907104,0.00160926894750446,2.22044326992345e-016,-0.999998807907104,0.00160926894750446,2.22044326992345e-016,-0.999998807907104,-0.000681297795381397,2.22043427019839e-016,-0.999999761581421,-0.000681297795381397,2.22043427019839e-016,-0.999999761581421,-0.000681297795381397,2.22043427019839e-016,-0.999999761581421,0.00914209987968206,-0.999958217144012,7.19851086614653e-005,
  1087. 0.00920567102730274,-0.999957621097565,-2.22457957003291e-016,0.00914209987968206,-0.999958217144012,7.19851086614653e-005,0,-1,-2.22025864321073e-016,5.1816132327076e-006,-1,4.07945677238786e-008,0,-1,-2.22025864321073e-016,0,-1,-2.22025864321073e-016,-5.1816132327076e-006,-1,4.07945677238786e-008,0,-1,-2.22025864321073e-016,-4.21473851019982e-005,-1,3.31874900894036e-007,-4.75205451948568e-005,-1,-2.22057019251665e-016,-4.21473851019982e-005,-1,3.31874900894036e-007,0.00338016217574477,-2.21965486753802e-016,0.999994277954102,0.00338016217574477,-2.21965486753802e-016,0.999994277954102,0.00338016217574477,-2.21965486753802e-016,0.999994277954102,0.00415708683431149,-2.22042818214908e-016,0.999991357326508,0.00415708683431149,-2.22042818214908e-016,0.999991357326508,0.00415708683431149,-2.22042818214908e-016,0.999991357326508,0.00447278609499335,-2.22042249114647e-016,0.999989986419678,0.00447278609499335,-2.22042249114647e-016,0.999989986419678,0.00447278609499335,-2.22042249114647e-016,0.999989986419678,-0.0030202092602849,-2.22057469237918e-016,0.999995529651642,-0.0030202092602849,-2.22057469237918e-016,0.999995529651642,-0.0030202092602849,-2.22057469237918e-016,0.999995529651642,-0.999956429004669,7.35093490220606e-005,-0.00933568831533194,-0.999956429004669,7.35093490220606e-005,-0.00933568831533194,-0.999956429004669,7.35093490220606e-005,-0.00933568831533194,-0.999961912631989,6.87251449562609e-005,-0.00872809253633022,-0.999961912631989,6.87251449562609e-005,-0.00872809253633022,-0.999961912631989,6.87251449562609e-005,-0.00872809253633022,-0.999983191490173,-4.56492853118107e-005,0.0057974592782557,-0.999983191490173,-1.27854432829693e-018,0.00579594168812037,-0.999983191490173,-4.56492853118107e-005,0.0057974592782557,-0.999988794326782,-1.02130511646577e-018,0.00473408121615648,-0.999988913536072,-3.72338072338607e-005,0.00472869258373976,-0.999988794326782,-1.02130511646577e-018,0.00473408121615648,-0.00292669353075325,-0.00787373818457127,-0.999964714050293,-0.00292669353075325,-0.00787373818457127,-0.999964714050293,
  1088. -0.00292669353075325,-0.00787373818457127,-0.999964714050293,0.0127973360940814,-0.00787312723696232,-0.999887108802795,0.0127973360940814,-0.00787312723696232,-0.999887108802795,0.0127973360940814,-0.00787312723696232,-0.999887108802795,0.0119662648066878,2.22159854345417e-016,-0.999928414821625,0.011966091580689,-0.00787320826202631,-0.999897420406342,0.011966091580689,-0.00787320826202631,-0.999897420406342,0.0301088411360979,-0.00787020195275545,-0.999515652656555,0.0301082599908113,2.2195761199437e-016,-0.999546647071838,0.0301082599908113,2.2195761199437e-016,-0.999546647071838,0.99996542930603,-0.00268030492588878,-0.00787374377250671,0.999996423721313,-0.00268034171313047,-6.66827876798078e-019,0.99996542930603,-0.00268030492588878,-0.00787374377250671,0.999997138977051,-0.00239442638121545,-6.67136466865349e-019,0.999966144561768,-0.00239439378492534,-0.00787374936044216,0.999997138977051,-0.00239442638121545,-6.67136466865349e-019,0.999997496604919,-0.00224174419417977,-4.95193276367307e-019,0.999997496604919,-0.00224174419417977,-4.95193276367307e-019,0.999997496604919,-0.00224174419417977,-4.95193276367307e-019,0.999997854232788,-0.00208290247246623,-4.94395098774981e-019,0.999997854232788,-0.00208290247246623,-4.94395098774981e-019,0.999997854232788,-0.00208290247246623,-4.94395098774981e-019,-0.0064338487572968,-0.999979317188263,-0.000101320452813525,-0.00646010879427195,-0.999979138374329,-2.22182300718519e-016,-0.00646010879427195,-0.999979138374329,-2.22182300718519e-016,0,-1,-2.22047304842551e-016,-4.96636084790225e-006,-1,-7.82107036911839e-008,-4.96636084790225e-006,-1,-7.82107036911839e-008,-4.96636084790225e-006,-1,-7.82107036911839e-008,-9.92533932731021e-006,-1,-3.12596682761068e-007,-4.96636084790225e-006,-1,-7.82107036911839e-008,-0.00245162798091769,-0.999997019767761,-7.72164057707414e-005,-0.00236344500444829,-0.999997198581696,-3.72196118405554e-005,-0.00245162798091769,-0.999997019767761,-7.72164057707414e-005,0.999981045722961,-0.00617169123142958,-1.32566570586678e-018,0.999981045722961,-0.00617169123142958,-1.32566570586678e-018,
  1089. 0.999981045722961,-0.00617169123142958,-1.32566570586678e-018,0.9999680519104,-0.00800573453307152,-1.82371218666072e-018,0.9999680519104,-0.00800573453307152,-1.82371218666072e-018,0.9999680519104,-0.00800573453307152,-1.82371218666072e-018,0.999973177909851,0.00732524693012238,1.65782897302903e-018,0.999973177909851,0.00732524693012238,1.65782897302903e-018,0.999973177909851,0.00732524693012238,1.65782897302903e-018,0.999988079071045,0.00488037150353193,1.16075556682818e-018,0.999988079071045,0.00488037150353193,1.16075556682818e-018,0.999988079071045,0.00488037150353193,1.16075556682818e-018,-0.013358760625124,-0.999910771846771,-2.2237428602997e-016,-0.013358760625124,-0.999910771846771,-2.2237428602997e-016,-0.013358760625124,-0.999910771846771,-2.2237428602997e-016,0,-1,-2.22055219306652e-016,0,-1,-2.22055219306652e-016,0,-1,-2.22055219306652e-016,0,-1,-2.22055219306652e-016,0,-1,-2.22055219306652e-016,0,-1,-2.22055219306652e-016,-0.000887085974682122,-0.999999701976776,-2.2199685344263e-016,-0.000887085974682122,-0.999999701976776,-2.2199685344263e-016,-0.000887085974682122,-0.999999701976776,-2.2199685344263e-016,0.00463845022022724,2.22019246876173e-016,-0.99998927116394,0.00463845022022724,2.22019246876173e-016,-0.99998927116394,0.00463845022022724,2.22019246876173e-016,-0.99998927116394,0.00312671577557921,2.22043466724508e-016,-0.999995112419128,0.00312671577557921,2.22043466724508e-016,-0.999995112419128,0.00312671577557921,2.22043466724508e-016,-0.999995112419128,0.00286131119355559,2.22043757892084e-016,-0.9999960064888,0.00286131119355559,2.22043757892084e-016,-0.9999960064888,0.00286131119355559,2.22043757892084e-016,-0.9999960064888,0.00886043533682823,2.22004688497392e-016,-0.999960839748383,0.00886043533682823,2.22004688497392e-016,-0.999960839748383,0.00886043533682823,2.22004688497392e-016,-0.999960839748383,-0.0104066450148821,-2.21995159376735e-016,0.999945878982544,-0.0104066450148821,-2.21995159376735e-016,0.999945878982544,-0.0104066450148821,-2.21995159376735e-016,0.999945878982544,-0.0103431222960353,-2.2203273322888e-016,0.999946534633636,
  1090. -0.0103431222960353,-2.2203273322888e-016,0.999946534633636,-0.0103431222960353,-2.2203273322888e-016,0.999946534633636,-0.0103431222960353,-2.2203273322888e-016,0.999946534633636,-0.0103431222960353,-2.2203273322888e-016,0.999946534633636,-0.0103431222960353,-2.2203273322888e-016,0.999946534633636,-0.00888093188405037,-2.22093415198617e-016,0.999960660934448,-0.00888093188405037,-2.22093415198617e-016,0.999960660934448,-0.00888093188405037,-2.22093415198617e-016,0.999960660934448,0.999972879886627,5.80008672841359e-005,0.00736611103639007,0.999972879886627,5.80008672841359e-005,0.00736611103639007,0.999972879886627,5.80008672841359e-005,0.00736611103639007,0.999980568885803,4.91135142510757e-005,0.00623741606250405,0.999980568885803,4.91135142510757e-005,0.00623741606250405,0.999980568885803,4.91135142510757e-005,0.00623741606250405,0.999992311000824,-3.08784910885151e-005,-0.00392156839370728,0.999992311000824,8.52377154396852e-019,-0.00392002006992698,0.999992311000824,-3.08784910885151e-005,-0.00392156839370728,0.999991357326508,9.33834489001048e-019,-0.0041552628390491,0.999991416931152,-3.26758236042224e-005,-0.00414982903748751,0.999991357326508,9.33834489001048e-019,-0.0041552628390491,0.999973297119141,-5.75697231397498e-005,0.0073113557882607,0.999973297119141,-5.75697231397498e-005,0.0073113557882607,0.999973297119141,-5.75697231397498e-005,0.0073113557882607,0.999966681003571,-6.43771854811348e-005,0.00817590206861496,0.999966681003571,-6.43771854811348e-005,0.00817590206861496,0.999966681003571,-6.43771854811348e-005,0.00817590206861496,0.999992668628693,3.01528871204937e-005,-0.00382941658608615,0.999992668628693,8.52452117639865e-019,-0.00382937886752188,0.999992668628693,3.01528871204937e-005,-0.00382941658608615,0.999995708465576,6.80963824779939e-019,-0.00296131102368236,0.999995648860931,2.32759375649039e-005,-0.00295604323036969,0.999995708465576,6.80963824779939e-019,-0.00296131102368236,0.0951347202062607,0.992083847522736,-0.0819697082042694,0.0398561097681522,0.995757162570953,-0.0829404816031456,
  1091. 0.0951347202062607,0.992083847522736,-0.0819697082042694,0.0398494116961956,0.995877265930176,-0.0814891681075096,0.0951347053050995,0.992135107517242,-0.0813481062650681,0.0398494116961956,0.995877265930176,-0.0814891681075096,0.00064768927404657,0.996610999107361,-0.0822565406560898,0.0398518331348896,0.995834350585938,-0.0820109695196152,0.0398518331348896,0.995834350585938,-0.0820109695196152,-3.15262660421922e-008,1,4.0038357838057e-006,0.0393371321260929,0.999225974082947,0.000313748401822522,-3.15262660421922e-008,1,4.0038357838057e-006,-0.0393396057188511,-0.999225914478302,1.31832200622739e-006,-0.0236154813319445,-0.999721109867096,1.31621857235587e-006,-0.0236154813319445,-0.999721109867096,1.31621857235587e-006,-0.047191459685564,-0.998885869979858,1.3101494005241e-006,-0.0236154440790415,-0.999721229076386,1.31252807022975e-006,-0.0393395982682705,-0.999225914478302,1.31085982957302e-006,-0.0393395982682705,-0.999225914478302,1.31085982957302e-006,-0.0550345778465271,-0.998484432697296,1.30952093968517e-006,-0.047191459685564,-0.998885869979858,1.3101494005241e-006,-0.0550345741212368,-0.998484432697296,6.73550477033874e-019,-0.0393396019935608,-0.999225914478302,3.4390338989743e-019,-0.0550345741212368,-0.998484432697296,6.73550477033874e-019,0.999225795269012,-0.0393328443169594,0.000857913750223815,0.9997199177742,-0.0235633756965399,0.00220454484224319,0.9997199177742,-0.0235633756965399,0.00220454484224319,0.99698406457901,-0.0466130375862122,0.0620481483638287,0.997917056083679,-0.0221414975821972,0.0605928190052509,0.997321546077728,-0.0387762896716595,0.0620187446475029,0.997277736663818,-0.0387690253555775,0.0627221390604973,0.996486246585846,-0.0549244396388531,0.0632338672876358,0.996940612792969,-0.0466054603457451,0.0627497807145119,0.996277272701263,-0.0549129173159599,0.0664540678262711,0.997020304203033,-0.0387274660170078,0.0667134448885918,0.996277272701263,-0.0549129173159599,0.0664540678262711,-0.999225795269012,0.0393327958881855,-0.000863834109622985,-0.9997199177742,0.0235632378607988,-0.00221040076576173,
  1092. -0.9997199177742,0.0235632378607988,-0.00221040076576173,-0.999717772006989,0.023664802312851,0.00209304341115057,-0.999225676059723,0.0393440946936607,0.000572115182876587,-0.999225676059723,0.0393440946936607,0.000572115182876587,-0.999225676059723,0.0393440946936607,0.000572115182876587,-0.998484253883362,0.05503810942173,-0.000450593477580696,-0.999225676059723,0.0393440946936607,0.000572115182876587,-0.998484551906586,0.055031169205904,0.000433316308772191,-0.999225974082947,0.0393371656537056,-0.000309741473756731,-0.998484551906586,0.055031169205904,0.000433316308772191,0.0475616082549095,0.997250974178314,-0.0568186119198799,0.0240262374281883,0.998079776763916,-0.057092223316431,0.0475616082549095,0.997250974178314,-0.0568186119198799,0.0240191984921694,0.998140931129456,-0.0560155734419823,0.0475567206740379,0.997304439544678,-0.055876512080431,0.0240191984921694,0.998140931129456,-0.0560155734419823,0.000441087962826714,0.998429775238037,-0.0560181699693203,0.0240181069821119,0.99815046787262,-0.0558481886982918,0.0240181069821119,0.99815046787262,-0.0558481886982918,1.74827434877165e-018,1,1.37659397541075e-020,0.0236139986664057,0.999721229076386,0.000185936994967051,1.74827434877165e-018,1,1.37659397541075e-020,-0.0951347202062607,0.992083847522736,0.0819697603583336,-0.0398561097681522,0.995757162570953,0.0829405412077904,-0.0951347202062607,0.992083847522736,0.0819697603583336,-0.0398494303226471,0.995876967906952,0.0814929530024529,-0.0951346978545189,0.992134690284729,0.0813518911600113,-0.0398494303226471,0.995876967906952,0.0814929530024529,-0.0398518480360508,0.995834052562714,0.0820147395133972,-0.000647719018161297,0.996610760688782,0.0822603181004524,-0.0398518480360508,0.995834052562714,0.0820147395133972,-0.0393371321260929,0.999225974082947,-0.000313748401822522,3.15262660421922e-008,1,-4.0038357838057e-006,3.15262660421922e-008,1,-4.0038357838057e-006,0.0236154813319445,-0.999721109867096,-3.94865583075443e-006,0.0393396057188511,-0.999225914478302,-3.95496590499533e-006,0.0236154813319445,-0.999721109867096,-3.94865583075443e-006,
  1093. 0.0236154440790415,-0.999721229076386,-3.93758455174975e-006,0.0393395982682705,-0.999225914478302,-3.93257960240589e-006,0.047191459685564,-0.998885869979858,-3.93044820157229e-006,0.0393395982682705,-0.999225914478302,-3.93257960240589e-006,0.0550345778465271,-0.998484432697296,-3.92856281905551e-006,0.047191459685564,-0.998885869979858,-3.93044820157229e-006,0.0550345741212368,-0.998484432697296,6.73550477033874e-019,0.0393396019935608,-0.999225914478302,3.4390338989743e-019,0.0550345741212368,-0.998484432697296,6.73550477033874e-019,-0.9997199177742,-0.0235633756965399,-0.00220454484224319,-0.999225795269012,-0.0393328443169594,-0.000857913750223815,-0.9997199177742,-0.0235633756965399,-0.00220454484224319,-0.999717772006989,-0.0236648730933666,0.00209600222297013,-0.999225556850433,-0.0393441133201122,0.000575071549974382,-0.998885631561279,-0.0471954829990864,0.000512770435307175,-0.999225556850433,-0.0393441133201122,0.000575071549974382,-0.998484432697296,-0.0550345778465271,1.47680123063765e-006,-0.998885631561279,-0.0471954829990864,0.000512770435307175,-0.996277272701263,-0.0549129173159599,-0.0664540976285934,-0.997020304203033,-0.0387274660170078,-0.0667134746909142,-0.996277272701263,-0.0549129173159599,-0.0664540976285934,0.999225795269012,0.0393327958881855,0.000863834109622985,0.9997199177742,0.0235632378607988,0.00221040076576173,0.9997199177742,0.0235632378607988,0.00221040076576173,0.999717772006989,0.0236647333949804,-0.00209008483216167,0.999225676059723,0.0393440723419189,-0.000569158757571131,0.999225676059723,0.0393440723419189,-0.000569158757571131,0.999225676059723,0.0393440723419189,-0.000569158757571131,0.998484253883362,0.0550381354987621,0.000453546905191615,0.999225676059723,0.0393440723419189,-0.000569158757571131,0.998484551906586,0.055031169205904,-0.000433316308772191,0.999225974082947,0.0393371656537056,0.000309741473756731,0.998484551906586,0.055031169205904,-0.000433316308772191,-0.0475616082549095,0.997250974178314,0.0568186119198799,-0.0240262374281883,0.998079776763916,0.057092223316431,
  1094. -0.0475616082549095,0.997250974178314,0.0568186119198799,-0.0240191984921694,0.998140931129456,0.0560155734419823,-0.0475567206740379,0.997304439544678,0.055876512080431,-0.0240191984921694,0.998140931129456,0.0560155734419823,-0.0240181032568216,0.99815034866333,0.055848203599453,-0.000441088079242036,0.998429656028748,0.0560181885957718,-0.0240181032568216,0.99815034866333,0.055848203599453,-0.0236139986664057,0.999721229076386,-0.000185936994967051,1.74827434877165e-018,1,1.37659397541075e-020,1.74827434877165e-018,1,1.37659397541075e-020,0.983719170093536,-0.00424400810152292,-0.179662972688675,0.983719170093536,-0.00424400810152292,-0.179662972688675,0.983719170093536,-0.00424400810152292,-0.179662972688675,1,-2.25623216465465e-006,-9.55002105911262e-005,1,-2.25623216465465e-006,-9.55002105911262e-005,1,-2.25623216465465e-006,-9.55002105911262e-005,1,-2.25623216465465e-006,-9.55002105911262e-005,1,-1.68045278314821e-006,-0.000106708837847691,1,-2.25623216465465e-006,-9.55002105911262e-005,0.99929416179657,-0.000591512594837695,-0.037561047822237,0.999289095401764,-0.000890375056769699,-0.0376927070319653,0.99929416179657,-0.000591512594837695,-0.037561047822237,0.000905724358744919,-0.0575134977698326,0.998344421386719,-0.0148104606196284,-0.0577566884458065,0.998220920562744,-0.0148104606196284,-0.0577566884458065,0.998220920562744,0.000911417824681848,-0.0578750297427177,0.998323440551758,-0.0148044629022479,-0.058116726577282,0.998200118541718,0.000911417824681848,-0.0578750297427177,0.998323440551758,0.000614208052866161,-0.0390022099018097,0.999239027500153,0.00878648366779089,-0.0388928763568401,0.999204754829407,0.000614208052866161,-0.0390022099018097,0.999239027500153,0.0087948702275753,-0.0392526313662529,0.999190628528595,0.000619758910033852,-0.0393546894192696,0.99922513961792,0.0087948702275753,-0.0392526313662529,0.999190628528595,-0.0321514531970024,0.998485326766968,0.0446467660367489,-0.0314490906894207,0.998508632183075,0.0446261987090111,-0.0321514531970024,0.998485326766968,0.0446467660367489,
  1095. -0.0314650572836399,0.99901556968689,0.0312705487012863,-0.0319564044475555,0.999001264572144,0.0312292240560055,-0.0314650572836399,0.99901556968689,0.0312705487012863,-0.0234047770500183,0.99939376115799,0.0257745608687401,-0.0314699523150921,0.999171018600464,0.0258253421634436,-0.0314699523150921,0.999171018600464,0.0258253421634436,-0.0314713306725025,0.999214708805084,0.024073388427496,-0.0234193429350853,0.999436438083649,0.0240527838468552,-0.0234193429350853,0.999436438083649,0.0240527838468552,0.0236154813319445,-0.999721109867096,-3.94778953705099e-006,0.0393396057188511,-0.999225914478302,-3.95409460907103e-006,0.0236154813319445,-0.999721109867096,-3.94778953705099e-006,0.0236154440790415,-0.999721229076386,-2.95254972115799e-006,0.0393395982682705,-0.999225914478302,-2.94879873763421e-006,0.0393395982682705,-0.999225914478302,-2.94879873763421e-006,0.0393395982682705,-0.999225914478302,-2.94879873763421e-006,0.0550345778465271,-0.998484432697296,-2.94578899229236e-006,0.0393395982682705,-0.999225914478302,-2.94879873763421e-006,0.0550345741212368,-0.998484432697296,-6.19027150605689e-006,0.0393396019935608,-0.999225914478302,-6.18567810306558e-006,0.0550345741212368,-0.998484432697296,-6.19027150605689e-006,0.0157156717032194,-0.997945129871368,-0.0621173046529293,0.0392633303999901,-0.997288525104523,-0.0622429326176643,0.0157156717032194,-0.997945129871368,-0.0621173046529293,0.0393395982682705,-0.999225914478302,4.06240451411577e-006,0.0157460793852806,-0.999876022338867,4.06866729463218e-006,0.0393395982682705,-0.999225914478302,4.06240451411577e-006,0.0393395982682705,-0.999225914478302,4.06240451411577e-006,0.047191459685564,-0.998885869979858,4.06082517656614e-006,0.0393395982682705,-0.999225914478302,4.06240451411577e-006,0.0393396019935608,-0.999225914478302,3.4390338989743e-019,0.047191459685564,-0.998885869979858,4.95052397169231e-019,0.047191459685564,-0.998885869979858,4.95052397169231e-019,-0.999719023704529,-0.0235231034457684,0.00293077854439616,-0.999225795269012,-0.0393327325582504,-0.000871991214808077,
  1096. -0.999719023704529,-0.0235231034457684,0.00293077854439616,-0.999715149402618,-0.023703308776021,-0.00279379612766206,-0.999225676059723,-0.0393440909683704,0.000571400683838874,-0.999225676059723,-0.0393440909683704,0.000571400683838874,-0.999225676059723,-0.0393440909683704,0.000571400683838874,-0.998479723930359,-0.0550907775759697,0.00179268373176456,-0.999225676059723,-0.0393440909683704,0.000571400683838874,-0.992432773113251,-0.0511856861412525,-0.111611858010292,-0.993180334568024,-0.0382343307137489,-0.110141642391682,-0.992432773113251,-0.0511856861412525,-0.111611858010292,-0.000611172697972506,0.0388094633817673,-0.999246418476105,-0.00153177022002637,0.0389069691300392,-0.999241650104523,-0.000611172697972506,0.0388094633817673,-0.999246418476105,-0.00103790522553027,0.0263627860695124,-0.999651908874512,-0.00103790522553027,0.0263627860695124,-0.999651908874512,-0.000418710522353649,0.0265881177037954,-0.999646484851837,-0.00032835261663422,0.00834015570580959,-0.999965190887451,0.00746249174699187,0.00869964528828859,-0.999934315681458,-0.00032835261663422,0.00834015570580959,-0.999965190887451,0.00718270242214203,0.0146107217296958,-0.999867558479309,-0.000563631823752075,0.0143162403255701,-0.999897360801697,0.00718270242214203,0.0146107217296958,-0.999867558479309,0.999225914478302,0.0393396057188511,1.33780285977991e-005,0.999719023704529,0.0235231705009937,-0.00292867538519204,0.999719023704529,0.0235231705009937,-0.00292867538519204,0.999715268611908,0.0237030256539583,0.00278467522002757,0.999225914478302,0.0393395982682705,-6.6506627263152e-006,0.999225914478302,0.0393395982682705,-6.6506627263152e-006,0.999225914478302,0.0393395982682705,-6.6506627263152e-006,0.998481750488281,0.055066391825676,-0.00135320832487196,0.999225914478302,0.0393395982682705,-6.6506627263152e-006,0.993627846240997,0.052409753203392,0.0997855290770531,0.994373261928558,0.0391485542058945,0.0984338521957397,0.993627846240997,0.052409753203392,0.0997855290770531,0.0157460793852806,-0.999876022338867,3.3638409604464e-006,
  1097. 0.0314804576337337,-0.999504387378693,3.36825178237632e-006,0.0157460793852806,-0.999876022338867,3.3638409604464e-006,0.0157460793852806,-0.999876022338867,4.19988282374106e-006,0.0314804501831532,-0.999504387378693,4.19510934079881e-006,0.0314804501831532,-0.999504387378693,4.19510934079881e-006,0.0314804501831532,-0.999504387378693,4.19510934079881e-006,0.047191459685564,-0.998885869979858,4.19138677898445e-006,0.0314804501831532,-0.999504387378693,4.19510934079881e-006,0.047191459685564,-0.998885869979858,-5.24174356542062e-006,0.0314804539084435,-0.999504387378693,-5.23849985256675e-006,0.047191459685564,-0.998885869979858,-5.24174356542062e-006,0.165678218007088,-0.986179888248444,1.15213526896696e-006,0.110431522130966,-0.993883728981018,1.15569730496645e-006,0.165678218007088,-0.986179888248444,1.15213526896696e-006,0.109894283115864,-0.989048600196838,-0.0985198095440865,0.164871543645859,-0.981378257274628,-0.0985600799322128,0.109894283115864,-0.989048600196838,-0.0985198095440865,0.109899036586285,-0.989091336727142,-0.0980843678116798,0.070346899330616,-0.99267315864563,-0.098240926861763,0.109899036586285,-0.989091336727142,-0.0980843678116798,0.110431522130966,-0.993883728981018,3.64768357030698e-006,0.0706888809800148,-0.997498512268066,3.63446565643244e-006,0.0706888809800148,-0.997498512268066,3.63446565643244e-006,0.0101508349180222,-0.974001109600067,0.226315796375275,0.013880648650229,-0.975320875644684,0.22035551071167,0.360369801521301,-0.927062690258026,0.103384763002396,-0.0382501855492592,0.233706206083298,0.971554696559906,0.0611218512058258,0.234016835689545,0.970309376716614,0.0781524851918221,0.233673170208931,0.96916925907135,-0.0388445928692818,-0.158138006925583,0.986652672290802,0.0762436911463737,-0.15951706469059,0.984246611595154,-0.0478399582207203,-0.15793052315712,0.986290693283081,0.0628669038414955,-0.00442587211728096,0.998012125492096,-0.03933921828866,-0.00443577812984586,0.999216079711914,-0.157940462231636,-0.00604447396472096,0.987430155277252,-0.0393230281770229,-0.0290354359894991,0.99880462884903,
  1098. -0.0473789982497692,-0.0258800964802504,0.998541653156281,0.992770791053772,-0.113788045942783,-0.0381895452737808,-0.0559999123215675,-0.916614651679993,0.395830243825912,-0.0134922116994858,-0.9393470287323,0.342702656984329,-0.53296035528183,-0.84601902961731,0.0143211185932159,0.00842984113842249,0.976771593093872,-0.214117735624313,-0.27784475684166,0.960620045661926,0.00337483524344862,-0.27784475684166,0.960620045661926,0.00337483524344862,-0.0151061769574881,-0.923335492610931,0.383697271347046,-0.458013951778412,-0.888592600822449,0.025028832256794,-0.460709154605865,-0.887481153011322,0.0111501095816493,-0.732929408550262,-0.678285956382751,0.0523701310157776,-0.723404705524445,-0.688538789749146,0.0509903393685818,-0.21016563475132,-0.626586198806763,0.750479936599731,-0.968873023986816,0.244294121861458,-0.0400681830942631,-0.967793226242065,0.244726225733757,0.0590363740921021,-0.966572403907776,0.244231402873993,0.0780311450362206,-0.986802637577057,-0.157499223947525,-0.0376103445887566,-0.984390020370483,-0.158620834350586,0.076262041926384,-0.986424744129181,-0.157091602683067,-0.0478396899998188,-0.998022019863129,0.000340994301950559,0.0628648400306702,-0.999225914478302,-0.000463727948954329,-0.0393359512090683,-0.986183285713196,-0.00289923441596329,-0.165632396936417,-0.984652042388916,-0.17046944797039,-0.0374235548079014,-0.985056757926941,-0.165452837944031,-0.047840915620327,0.028948899358511,-0.537459254264832,0.842792689800262,-0.244452655315399,-0.438922524452209,-0.864632844924927,-0.780578851699829,-0.613169252872467,-0.121326580643654,-0.72322803735733,-0.690225005149841,-0.0230386797338724,-0.37538954615593,0.926604211330414,-0.0220751576125622,-0.0359304584562778,0.260651737451553,-0.964764058589935,-0.267942935228348,0.264501482248306,-0.92641544342041,-0.000816138868685812,0.992554306983948,-0.121800377964973,-0.213809937238693,0.976742565631866,-0.0161085985600948,-0.214732125401497,0.97667270898819,-0.0007636824157089,0.555170118808746,0.831595897674561,0.0153091140091419,-0.0554987341165543,0.535581409931183,-0.84265798330307,
  1099. -0.0417618118226528,0.521872997283936,-0.852000296115875,0.0222856234759092,-0.984822928905487,0.172125473618507,-0.143254786729813,-0.989683508872986,0.0021528284996748,-0.143254786729813,-0.989683508872986,0.0021528284996748,0.0629830956459045,0.015728447586298,-0.997890651226044,-0.0395757779479027,0.0153134213760495,-0.999099314212799,-0.0705471336841583,0.0168146248906851,-0.997366726398468,-0.0366874262690544,-0.142966642975807,-0.989047288894653,0.0610682107508183,-0.144861832261086,-0.987565577030182,0.054461807012558,-0.14389742910862,-0.988092839717865,0.0728036910295486,0.184859201312065,-0.980064630508423,-0.0415559075772762,0.183401748538017,-0.982159316539764,0.0540940351784229,0.184086546301842,-0.981420397758484,0.0488964132964611,0.458941638469696,-0.887119889259338,0.0593681037425995,0.462430894374847,-0.884665548801422,0.933681309223175,0.318175375461578,-0.164327830076218,0.969123780727386,0.178063154220581,-0.170565694570541,0.0711750313639641,0.225627422332764,-0.971610307693481,0.0531517006456852,0.259337812662125,-0.964322984218597,0,0,0,0,0,0,0,0,0,0.00609965203329921,0.999981462955475,-0.000288172566797584,-7.56103909225203e-005,0.999999642372131,0.000872942560818046,0.00775262154638767,0.999968767166138,0.00153858016710728,-0.000137534327222966,0.99999874830246,0.00158787413965911,0.00793289579451084,0.999965488910675,0.0025040723849088,0.00769395753741264,0.999967813491821,0.0022835151758045,-0.00543367071077228,0.999985218048096,0.000299493607599288,0.00789427012205124,0.999968469142914,-0.000867986411321908,6.0777038015658e-005,0.999999761581421,-0.000701686192769557,0.00769230630248785,0.999940991401672,-0.00767268659546971,0.000713592336978763,0.999965786933899,-0.00823876168578863,-0.000233890386880375,0.999972403049469,-0.00742600997909904,0.000242821042775176,0.999996066093445,-0.00280345720238984,0.00795054621994495,0.999963104724884,-0.0032521162647754,-0.000125158243463375,0.999992191791534,-0.0039737862534821,-0.000233890386880375,0.999972403049469,-0.00742600997909904,0.00672121159732342,0.999944388866425,0.00813819281756878,
  1100. 0.00769230630248785,0.999940991401672,-0.00767268659546971,0.00846755877137184,0.999948680400848,0.00558028509840369,0.000205110554816201,0.99997878074646,0.00651225727051497,0.00771259982138872,0.999947130680084,0.00681564165279269,0.00777389202266932,0.999866664409637,-0.0143619226291776,0.00554273650050163,0.999951899051666,0.00809185579419136,-0.000238448526943102,0.999971330165863,-0.00757073238492012,-0.0081363283097744,0.999937891960144,0.00761726452037692,0.00032647026819177,0.999946236610413,0.0103654200211167,0.00879440829157829,0.999920785427094,0.00901451986283064,0.000101235629699659,0.999994933605194,0.00321422936394811,-0.00141456257551908,0.999968349933624,0.00782921351492405,0.00329333334229887,0.999875247478485,-0.015454881824553,0.67433774471283,-0.736511647701263,-0.053097452968359,0.658035278320313,-0.749429047107697,-0.0731150209903717,-0.0383433476090431,-0.721502244472504,0.691349625587463,-0.0863105058670044,0.996245086193085,0.00679611042141914,-0.0145351365208626,0.887026011943817,0.461490601301193,-0.0737421289086342,0.997206151485443,0.0119165172800422,-0.992651283740997,0.116901576519012,-0.0312646105885506,-0.987055003643036,0.117022797465324,0.109672769904137,-0.990091919898987,0.116791613399982,0.0779599919915199,-0.996450185775757,0.0633683130145073,0.0554214157164097,-0.997473776340485,0.0637124329805374,-0.0314164981245995,-0.994883418083191,0.0638001710176468,0.078337274491787,-0.993867993354797,0.00562422443181276,0.110429771244526,-0.999488830566406,0.00559416227042675,-0.0314799658954144,-0.999488830566406,0.00559416227042675,-0.0314799658954144,-0.979883313179016,0.156032010912895,-0.124429628252983,-0.987358391284943,0.155423074960709,-0.0310979019850492,-0.986293613910675,0.155354857444763,0.0555859096348286,-0.993630170822144,0.108257591724396,-0.031295370310545,-0.039267472922802,0.0605208799242973,-0.997394263744354,-0.993630170822144,0.108257591724396,-0.031295370310545,-0.616702258586884,0.78695684671402,-0.0194236859679222,-0.621443688869476,0.779474437236786,-0.0789134874939919,
  1101. -0.0743391439318657,0.915827095508575,-0.394632309675217,-0.0392090678215027,-0.0813895538449287,-0.995910823345184,-0.991523623466492,-0.126118361949921,-0.0312290340662003,-0.220781683921814,-0.0803341567516327,-0.972009181976318,0.102555721998215,0.00891343876719475,0.99468731880188,-0.0315976142883301,0.00750351417809725,0.999472498893738,0.141343280673027,0.00925741717219353,0.98991733789444,0.456959217786789,0.88937121629715,0.0143924150615931,0.011611508205533,0.996755123138428,0.0796516537666321,0.00334535096772015,0.994048237800598,0.108889475464821,-0.0324326604604721,0.0647212415933609,0.997376203536987,0.101883888244629,0.0662612468004227,0.992587089538574,-0.0314105339348316,0.0666133686900139,0.997284352779388,0.0469811148941517,-0.024909345433116,0.998585164546967,-0.0314708463847637,-0.0247062314301729,0.999199271202087,0.102789215743542,-0.0240953676402569,0.994411289691925,-0.0312184821814299,-0.0163806732743979,0.999378442764282,-0.0314550437033176,-0.0401241295039654,0.998699486255646,-0.999011874198914,-0.0210131015628576,0.0391657091677189,-0.0308656543493271,0.196666315197945,0.979984521865845,0.0478148497641087,0.19668747484684,0.979299664497375,-0.0693067088723183,0.196781635284424,0.977994680404663,-0.965851068496704,0.00337016116827726,0.259075969457626,-0.9991814494133,0.00913667492568493,0.0394097864627838,-0.0314776189625263,0.013223011046648,0.999417006969452,-0.152248978614807,-0.986958622932434,0.0522774867713451,-0.00491994805634022,-0.98771196603775,0.156208470463753,-0.0113295651972294,-0.987072587013245,0.159873053431511,-0.0197131242603064,0.779660522937775,0.625892102718353,-0.526347696781158,0.822214186191559,0.216614857316017,-0.518373548984528,0.845921695232391,0.125321000814438
  1102. }
  1103. TangentsW: *2178 {
  1104. 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,
  1105. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  1106. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1107. }
  1108. }
  1109. LayerElementUV: 0 {
  1110. Version: 101
  1111. Name: "UVmap_0"
  1112. MappingInformationType: "ByPolygonVertex"
  1113. ReferenceInformationType: "IndexToDirect"
  1114. UV: *2326 {
  1115. a: -1.5302734375,1.65283203125,-1.5947265625,1.71875,-1.59375,1.6533203125,-1.525390625,1.7216796875,-1.53125,1.58642578125,-1.5947265625,1.5869140625,-1.525390625,1.52294921875,-1.58984375,1.52294921875,-1.505859375,2.35546875,-1.5068359375,2.2861328125,-1.4296875,2.287109375,-1.4326171875,2.3544921875,-1.4169921875,2.0078125,-1.419921875,2.0732421875,-1.4921875,2.0087890625,-1.4912109375,2.0751953125,2.7265625,-0.5556640625,2.01953125,-0.60546875,2.744140625,-0.6123046875,2.017578125,-0.5498046875,-1.529296875,1.458251953125,-1.59375,1.458740234375,-1.591796875,1.396484375,-1.52734375,1.396240234375,-1.5029296875,2.212890625,-1.4326171875,2.154296875,-1.4345703125,2.2177734375,-1.4990234375,2.146484375,-1.3916015625,1.87890625,-1.466796875,1.93994140625,-1.4658203125,1.87841796875,-1.3876953125,1.94287109375,-1.4375,2.498046875,-1.509765625,2.427734375,-1.435546875,2.4248046875,-1.513671875,2.4970703125,2.7265625,-0.416015625,2.01953125,-0.4658203125,2.744140625,-0.47265625,2.017578125,-0.41015625,-1.638671875,2.3935546875,-1.56640625,2.443359375,-1.646484375,2.435546875,-1.5771484375,2.3828125,-1.619140625,1.97802734375,-1.55859375,1.9130859375,-1.548828125,1.96337890625,-1.6142578125,1.9169921875,-1.6376953125,2.6552734375,-1.5673828125,2.703125,-1.64453125,2.697265625,-1.578125,2.64453125,-1.587890625,1.7861328125,-1.525390625,1.84814453125,-1.59765625,1.8349609375,-1.5341796875,1.78271484375,-1.6376953125,2.5244140625,-1.56640625,2.572265625,-1.6455078125,2.56640625,-1.578125,2.513671875,-1.6259765625,2.0458984375,-1.564453125,2.1064453125,-1.638671875,2.091796875,-1.572265625,2.041015625,-1.5107421875,2.5751953125,-1.4375,2.625,-1.515625,2.6162109375,-1.44921875,2.564453125,-1.6328125,2.2353515625,-1.5732421875,2.1708984375,-1.5625,2.220703125,-1.626953125,2.1748046875,-1.3818359375,1.2020263671875,-1.4736328125,1.1943359375,-1.380859375,1.1748046875,-1.4736328125,1.169189453125,-1.5791015625,-0.2939453125,-1.4609375,-0.3115234375,-1.4599609375,-0.291015625,-1.5791015625,-0.3125,-1.3994140625,
  1116. -0.677734375,-1.52734375,-0.6884765625,-1.3984375,-0.7080078125,-1.5263671875,-0.7158203125,1.4111328125,2.341796875,2.73828125,2.3623046875,1.4111328125,2.3671875,2.73828125,2.3388671875,-1.5673828125,-0.58203125,-1.4384765625,-0.607421875,-1.4384765625,-0.58203125,-1.5673828125,-0.6103515625,-1.466796875,0.2978515625,-1.568359375,0.28955078125,-1.4658203125,0.267578125,-1.5673828125,0.26171875,-1.470703125,0.57861328125,-1.5693359375,0.60546875,-1.5693359375,0.576904296875,-1.470703125,0.604736328125,-1.4697265625,1.466796875,-1.380859375,1.4697265625,-1.3828125,1.49951171875,-1.4716796875,1.496826171875,-1.36328125,1.304443359375,-1.453125,1.301513671875,-1.361328125,1.275634765625,-1.453125,1.276123046875,-1.5810546875,-0.5087890625,-1.4599609375,-0.482421875,-1.58203125,-0.4794921875,-1.4599609375,-0.5087890625,-1.4033203125,0.995479583740234,-1.498046875,1.00092744827271,-1.4970703125,0.972412109375,-1.404296875,0.969390869140625,-1.4599609375,-0.408203125,-1.580078125,-0.380859375,-1.5810546875,-0.4091796875,-1.4599609375,-0.3818359375,-1.431640625,0.8040771484375,-1.5302734375,0.7763671875,-1.431640625,0.7764892578125,-1.5302734375,0.8037109375,0.035247802734375,1.300048828125,1.349609375,1.424072265625,0.033447265625,1.420654296875,1.3525390625,1.306640625,0.033447265625,1.673828125,1.35546875,1.69580078125,0.033660888671875,1.69921875,1.35546875,1.67041015625,1.3525390625,1.85498046875,0.03271484375,1.97412109375,0.03076171875,1.85498046875,1.35546875,1.97265625,1.35546875,2.06640625,0.02935791015625,2.0634765625,1.35546875,2.0419921875,0.029693603515625,2.0380859375,-1.4013671875,1.09735107421875,-1.4931640625,1.089599609375,-1.400390625,1.070068359375,-1.4931640625,1.06439208984375,-1.4599609375,-0.2041015625,-1.5791015625,-0.20703125,-1.4609375,-0.224609375,-1.5791015625,-0.2255859375,-1.466796875,0,-1.5830078125,-0.009765625,-1.4658203125,-0.02734375,-1.5830078125,-0.03515625,1.41015625,2.4375,2.73828125,2.4580078125,1.4111328125,2.462890625,2.740234375,2.4345703125,-1.4638671875,0.1923828125,-1.58203125,
  1117. 0.1923828125,-1.46484375,0.1689453125,-1.58203125,0.16650390625,-1.47265625,0.70654296875,-1.5693359375,0.698486328125,-1.4716796875,0.677734375,-1.5693359375,0.671875,-1.52734375,0.901123046875,-1.4326171875,0.875244140625,-1.431640625,0.9002685546875,-1.52734375,0.87353515625,-1.3720703125,1.80224609375,-1.453125,1.77197265625,-1.37109375,1.77490234375,-1.455078125,1.7998046875,-1.470703125,0.50244140625,-1.5703125,0.503662109375,-1.5693359375,0.47412109375,-1.470703125,0.47216796875,-1.5791015625,-0.1337890625,-1.4609375,-0.1337890625,-1.4609375,-0.107421875,-1.580078125,-0.1044921875,-1.470703125,0.3955078125,-1.5732421875,0.40185546875,-1.572265625,0.37060546875,-1.4716796875,0.3671875,-1.5830078125,0.09814453125,-1.46484375,0.07177734375,-1.46484375,0.09716796875,-1.5830078125,0.0703125,-1.47265625,1.369873046875,-1.380859375,1.3955078125,-1.47265625,1.39501953125,-1.380859375,1.369873046875,0.0330810546875,0.7470703125,1.3134765625,0.867919921875,0.0313720703125,0.8646240234375,1.3173828125,0.7532958984375,0.033905029296875,1.765625,1.35546875,1.78759765625,0.033843994140625,1.791015625,1.35546875,1.76220703125,0.03228759765625,1.1173095703125,1.3203125,1.11712646484375,0.0341796875,1.2335205078125,1.3232421875,1.232177734375,1.35546875,2.158203125,0.0300140380859375,2.1298828125,1.35546875,2.1328125,0.0294952392578125,2.1552734375,-0.80908203125,-0.94921875,-1.2490234375,-0.9970703125,-0.80859375,-0.9912109375,-1.2490234375,-0.951171875,-1.6337890625,-0.158203125,-1.685546875,-0.158203125,-1.685546875,-0.1982421875,-1.6337890625,-0.1982421875,-1.60546875,0.995147705078125,-1.5556640625,1.04171752929688,-1.611328125,1.03656005859375,-1.552734375,0.999663591384888,-0.83837890625,0.965118408203125,-1.3486328125,0.9083251953125,-0.83837890625,0.90728759765625,-1.349609375,0.962310791015625,-1.5869140625,0.930908203125,-1.634765625,0.87884521484375,-1.5810546875,0.88433837890625,-1.6416015625,0.92816162109375,-1.63671875,0.11669921875,-1.63671875,0.162109375,-1.6884765625,0.162109375,-1.6884765625,0.11669921875,
  1118. -1.626953125,0.49072265625,-1.68359375,0.44677734375,-1.6298828125,0.443359375,-1.6806640625,0.49462890625,-1.626953125,0.33447265625,-1.626953125,0.3798828125,-1.6787109375,0.3798828125,-1.6787109375,0.33447265625,-1.2490234375,-0.8857421875,-0.80908203125,-0.837890625,-1.2490234375,-0.8408203125,-0.80859375,-0.880859375,-1.63671875,-0.0947265625,-1.63671875,-0.0556640625,-1.6884765625,-0.0947265625,-1.6884765625,-0.0556640625,-1.6005859375,1.103515625,-1.55078125,1.150146484375,-1.6064453125,1.1448974609375,-1.5478515625,1.1080322265625,-1.345703125,1.02938842773438,-0.8349609375,1.086181640625,-1.345703125,1.0833740234375,-0.83447265625,1.02835083007813,-1.68359375,0.8118896484375,-1.6767578125,0.7625732421875,-1.62890625,0.8145751953125,-1.623046875,0.76806640625,-1.6884765625,0.0078125,-1.63671875,0.0078125,-1.6884765625,0.05322265625,-1.63671875,0.05322265625,-1.677734375,0.609130859375,-1.6806640625,0.5615234375,-1.6240234375,0.60546875,-1.626953125,0.557861328125,-1.6875,0.2255859375,-1.6357421875,0.2255859375,-1.6875,0.27099609375,-1.6357421875,0.27099609375,-1.4697265625,1.5712890625,-1.380859375,1.57568359375,-1.3828125,1.60302734375,-1.47265625,1.59912109375,-0.8134765625,0.739990234375,-0.08233642578125,0.7637939453125,-0.81396484375,0.7554931640625,-0.07379150390625,0.731689453125,-0.74267578125,1.2349853515625,-0.02471923828125,1.2337646484375,-0.73876953125,1.322021484375,-0.0255126953125,1.3203125,-0.736328125,1.386962890625,-0.02392578125,1.48388671875,-0.7412109375,1.47412109375,-0.0235137939453125,1.397705078125,-0.78466796875,0.84228515625,0.00980377197265625,0.853271484375,-0.7841796875,0.870361328125,-0.00282096862792969,0.8294677734375,-1.37109375,1.7021484375,-1.458984375,1.67724609375,-1.3701171875,1.67626953125,-1.458984375,1.7021484375,-1.5859375,1.2147216796875,-1.529296875,1.2181396484375,-1.5302734375,1.24169921875,-1.587890625,1.23974609375,-1.6240234375,0.699462890625,-1.681640625,0.696533203125,-1.623046875,0.676513671875,-1.6796875,0.67333984375,-1.3564453125,2.1259765625,-0.73193359375,
  1119. 2.1494140625,-1.357421875,2.1484375,-0.73193359375,2.1279296875,-1.591796875,1.3056640625,-1.5263671875,1.307861328125,-1.52734375,1.330322265625,-1.59375,1.328125,-1.63671875,2.30078125,-1.5625,2.3212890625,-1.63671875,2.3212890625,-1.5625,2.30078125,-1.66796875,-0.80859375,-1.3984375,-0.8125,-1.666015625,-0.783203125,-1.3974609375,-0.7890625,-0.814453125,-1.4609375,-1.091796875,-1.5,-0.814453125,-1.49609375,-1.0908203125,-1.46484375,-1.140625,-1.267578125,-1.412109375,-1.267578125,-1.140625,-1.291015625,-1.4111328125,-1.291015625,-0.810546875,-1.05859375,-1.0888671875,-1.09765625,-0.81005859375,-1.095703125,-1.0869140625,-1.060546875,-1.76171875,-0.82421875,-1.76171875,-0.849609375,-1.7255859375,-0.82421875,-1.724609375,-0.8486328125,-1.4658203125,-1.224609375,-1.5009765625,-1.201171875,-1.5009765625,-1.224609375,-1.4658203125,-1.201171875,-1.40625,-1.095703125,-1.13671875,-1.076171875,-1.4052734375,-1.0703125,-1.13671875,-1.099609375,-0.9423828125,-1.669921875,-1.2197265625,-1.708984375,-0.9423828125,-1.70703125,-1.21875,-1.673828125,-1.4111328125,-1.1953125,-1.140625,-1.1953125,-1.412109375,-1.171875,-1.140625,-1.171875,-0.81494140625,-1.259765625,-1.0927734375,-1.296875,-0.814453125,-1.294921875,-1.0908203125,-1.26171875,-1.76171875,-0.734375,-1.76171875,-0.759765625,-1.7255859375,-0.7333984375,-1.724609375,-0.7587890625,-1.5009765625,-1.3984375,-1.466796875,-1.3984375,-1.5009765625,-1.375,-1.466796875,-1.375,-1.572265625,-0.904296875,-1.302734375,-0.8857421875,-1.5712890625,-0.87890625,-1.302734375,-0.908203125,-1.140625,-1.556640625,-1.41796875,-1.595703125,-1.140625,-1.591796875,-1.4169921875,-1.560546875,-1.412109375,-1.484375,-1.140625,-1.482421875,-1.412109375,-1.458984375,-1.140625,-1.458984375,-0.81494140625,-1.359375,-1.0927734375,-1.396484375,-0.814453125,-1.39453125,-1.0908203125,-1.361328125,-1.673828125,-0.5537109375,-1.673828125,-0.5791015625,-1.6376953125,-0.552734375,-1.6376953125,-0.578125,-1.5009765625,-1.484375,-1.466796875,-1.484375,-1.5009765625,-1.4609375,-1.466796875,-1.4609375,-1.5732421875,
  1120. -1,-1.302734375,-1.00390625,-1.5712890625,-0.9755859375,-1.302734375,-0.9814453125,-0.6162109375,-1.56640625,-0.89306640625,-1.60546875,-0.61572265625,-1.6015625,-0.892578125,-1.5703125,-1.1416015625,-1.36328125,-1.412109375,-1.36328125,-1.140625,-1.38671875,-1.412109375,-1.38671875,-0.81494140625,-1.16015625,-1.0927734375,-1.197265625,-0.814453125,-1.1953125,-1.0908203125,-1.16015625,-1.66015625,-0.6435546875,-1.66015625,-0.669921875,-1.6240234375,-0.6435546875,-1.623046875,-0.6689453125,-1.466796875,-1.3125,-1.5009765625,-1.2890625,-1.5009765625,-1.3125,-1.466796875,-1.2890625,-0.6767578125,1.78857421875,-0.0235137939453125,1.8369140625,-0.677734375,1.82470703125,-0.0230712890625,1.8017578125,-1.6630859375,-0.9130859375,-1.666015625,-0.9453125,-1.6279296875,-0.916015625,-1.6298828125,-0.9482421875,-1.5029296875,-1.578125,-1.466796875,-1.580078125,-1.501953125,-1.548828125,-1.466796875,-1.548828125,-1.6767578125,-0.26171875,-1.6357421875,-0.2958984375,-1.6337890625,-0.263671875,-1.6796875,-0.29296875,-1.6767578125,-0.3896484375,-1.634765625,-0.3896484375,-1.6767578125,-0.3583984375,-1.634765625,-0.3583984375,-0.72900390625,1.552734375,-0.021240234375,1.60546875,-0.72998046875,1.591796875,-0.020721435546875,1.5673828125,-1.673828125,-0.4521484375,-1.6376953125,-0.4892578125,-1.634765625,-0.455078125,-1.67578125,-0.4873046875,-1.6279296875,-1.046875,-1.6650390625,-1.009765625,-1.666015625,-1.04296875,-1.6279296875,-1.009765625,-1.5009765625,-1.13671875,-1.4677734375,-1.138671875,-1.4658203125,-1.109375,-1.4990234375,-1.107421875,-1.466796875,-1.669921875,-1.4990234375,-1.642578125,-1.4990234375,-1.669921875,-1.466796875,-1.642578125,1.3720703125,-0.5439453125,1.3505859375,-0.59765625,1.6181640625,-0.5400390625,0.1290283203125,-1.013671875,0.12078857421875,-0.9423828125,-0.151611328125,-1.01171875,-0.34521484375,-0.9462890625,-0.27099609375,-1.01171875,-0.6025390625,-1.01171875,-0.763671875,-0.9453125,-0.75341796875,-1.01171875,-0.759765625,-1.291015625,-0.60791015625,-1.291015625,-0.7763671875,-1.22265625,-0.224853515625,
  1121. -1.291015625,-0.204833984375,-1.224609375,0.12445068359375,-1.224609375,0.12744140625,-1.29296875,0.1259765625,-1.22265625,0.60595703125,-0.1240234375,0.0465087890625,-0.1318359375,0.053985595703125,-0.2197265625,1.298828125,-0.1240234375,1.30078125,-0.2138671875,1.2998046875,-0.4326171875,0.859375,-0.44140625,1.294921875,-0.5478515625,0.08563232421875,-0.431640625,0.084716796875,-0.54296875,-1.1103515625,1.72998046875,-1.3173828125,1.73046875,-1.3173828125,1.66943359375,-0.78271484375,1.72705078125,-0.7822265625,1.6708984375,-1.208984375,-0.259765625,-1.40625,-0.2607421875,-1.40625,-0.3076171875,-0.900390625,-0.2587890625,-0.900390625,-0.3115234375,-0.7861328125,0.992259979248047,-0.77734375,0.9329833984375,-0.43896484375,0.93328857421875,-0.0238037109375,1.00949859619141,-0.024658203125,0.938018798828125,-0.75732421875,1.1614990234375,-0.72705078125,1.08319091796875,-0.3564453125,1.1517333984375,-0.02362060546875,1.08935546875,-0.0247802734375,1.14013671875,-0.8271484375,-0.5771484375,-0.8271484375,-0.59375,-0.3515625,-0.59375,-0.3525390625,-0.576171875,0.03167724609375,-0.5947265625,0.0298919677734375,-0.57421875,1.609375,0.13916015625,1.35546875,0.14404296875,1.3876953125,0.0830078125,1.6337890625,0.0791015625,2.01953125,0.13818359375,2.033203125,0.07763671875,2.73828125,0.14208984375,2.744140625,0.08056640625,1.35546875,-0.2587890625,1.3583984375,-0.31640625,1.6103515625,-0.3203125,2.01953125,-0.33203125,2.025390625,-0.2763671875,2.734375,-0.32421875,2.744140625,-0.267578125,2.013671875,-1.435546875,1.35546875,-1.37890625,1.345703125,-1.439453125,2.0234375,-1.375,2.73046875,-1.4375,2.744140625,-1.376953125,1.3427734375,-1.712890625,1.90625,-1.6484375,1.3427734375,-1.6484375,2.26953125,-1.705078125,2.349609375,-1.642578125,2.712890625,-1.64453125,2.744140625,-1.70703125,1.3701171875,0.79345703125,1.9267578125,0.8153076171875,1.3720703125,0.8472900390625,1.9248046875,0.7591552734375,2.375,0.8055419921875,2.375,0.747802734375,2.740234375,0.791015625,2.744140625,0.731689453125,1.8994140625,-1.3046875,1.3466796875,
  1122. -1.248046875,1.3466796875,-1.310546875,2.24609375,-1.244140625,2.34375,-1.306640625,2.712890625,-1.302734375,2.744140625,-1.236328125,2.27734375,-0.7490234375,1.3525390625,-0.6923828125,1.3515625,-0.751953125,2.3125,-0.693359375,2.7421875,-0.7333984375,2.744140625,-0.6806640625,1.607421875,-0.4560546875,1.3720703125,-0.404296875,1.3525390625,-0.4619140625,1.619140625,-0.400390625,1.3876953125,-0.0478515625,1.609375,0.00830078125,1.3544921875,0.0146484375,1.6337890625,-0.0517578125,2.01953125,0.00732421875,2.033203125,-0.052734375,2.73828125,0.0107421875,2.744140625,-0.0498046875,1.345703125,-1.572265625,1.599609375,-1.56640625,1.361328125,-1.51171875,1.615234375,-1.5078125,2.013671875,-1.56640625,2.0234375,-1.505859375,2.732421875,-1.568359375,2.744140625,-1.509765625,1.3583984375,-0.1767578125,1.6103515625,-0.125,1.3544921875,-0.1201171875,1.6103515625,-0.1806640625,2.025390625,-0.13671875,2.01953125,-0.1923828125,2.734375,-0.1845703125,2.744140625,-0.1279296875,1.34765625,-1.169921875,1.9091796875,-1.10546875,1.34765625,-1.107421875,1.9111328125,-1.166015625,2.349609375,-1.1015625,2.3671875,-1.162109375,2.712890625,-1.1015625,2.744140625,-1.1640625,1.369140625,0.610107421875,1.9267578125,0.632080078125,1.3720703125,0.6640625,1.9248046875,0.575927734375,2.375,0.622314453125,2.375,0.564453125,2.740234375,0.60791015625,2.744140625,0.54833984375,1.3515625,-1.029296875,1.90234375,-1.025390625,1.3505859375,-0.96875,1.904296875,-0.9658203125,2.34375,-1.02734375,2.361328125,-0.9658203125,2.712890625,-1.0234375,2.744140625,-0.9580078125,1.9599609375,-0.888671875,1.3525390625,-0.83203125,1.3515625,-0.892578125,1.9599609375,-0.83203125,2.396484375,-0.88671875,2.3984375,-0.8330078125,2.7421875,-0.873046875,2.744140625,-0.8203125,-0.74658203125,-0.873046875,-0.75146484375,-0.806640625,-0.7509765625,-0.875,-0.6005859375,-0.806640625,-0.3203125,-0.873046875,-0.1483154296875,-0.8720703125,0.134033203125,-0.802734375,0.1302490234375,-0.8720703125,0.1319580078125,-0.875,0.3232421875,-1.50390625,0.32568359375,-1.572265625,0.32470703125,
  1123. -1.501953125,0.0435791015625,-1.5703125,0.037109375,-1.50390625,-0.1507568359375,-1.5703125,-0.409423828125,-1.50390625,-0.409423828125,-1.5703125,-0.56201171875,-1.501953125,-0.5615234375,-1.572265625,0.03448486328125,-0.7353515625,0.036224365234375,-0.6630859375,0.03277587890625,-0.7314453125,-0.245849609375,-0.7314453125,-0.68359375,-0.666015625,-0.421142578125,-0.732421875,-0.69677734375,-0.7314453125,-0.8486328125,-0.666015625,-0.8486328125,-0.7333984375,0.32373046875,-1.64453125,0.325927734375,-1.712890625,0.324951171875,-1.642578125,0.04388427734375,-1.7109375,0.012115478515625,-1.64453125,-0.294189453125,-1.708984375,-0.5615234375,-1.64453125,-0.5615234375,-1.7109375,0.12445068359375,-1.365234375,0.1279296875,-1.435546875,0.1258544921875,-1.361328125,-0.1551513671875,-1.4296875,-0.17236328125,-1.365234375,-0.349365234375,-1.4296875,-0.77490234375,-1.36328125,-0.60791015625,-1.4296875,-0.7607421875,-1.431640625,-0.76025390625,-1.361328125,-0.60400390625,-1.150390625,-0.76513671875,-1.083984375,-0.7548828125,-1.15234375,-0.189208984375,-1.0859375,-0.168701171875,-1.150390625,0.1275634765625,-1.15234375,0.1278076171875,-1.083984375,0.69873046875,-1.24609375,0.182373046875,-1.138671875,0.1812744140625,-1.244140625,0.69970703125,-1.138671875,1.2919921875,-1.248046875,1.2939453125,-1.140625,0.183837890625,-1.07421875,0.7001953125,-0.9677734375,0.1822509765625,-0.9697265625,0.70068359375,-1.072265625,1.2939453125,-0.96484375,1.294921875,-1.0703125,1.4072265625,1.421875,2.029296875,1.423583984375,1.4072265625,1.447021484375,2.029296875,1.448486328125,2.744140625,1.425048828125,2.744140625,1.4501953125,1.4111328125,2.5361328125,2.26171875,2.646484375,1.412109375,2.6572265625,2.740234375,2.5302734375,2.744140625,2.6572265625,0.0321044921875,2.4013671875,0.89013671875,2.4150390625,0.030181884765625,2.52734375,1.361328125,2.529296875,1.3583984375,2.4052734375,2.048828125,1.61572265625,1.408203125,1.64208984375,1.408203125,1.61669921875,2.048828125,1.640625,2.744140625,1.61376953125,2.744140625,1.63916015625,0.61962890625,
  1124. 2.2216796875,0.03802490234375,2.2470703125,0.0291595458984375,2.22265625,1.35546875,2.22265625,1.35546875,2.248046875,0.744140625,1.02381896972656,0.0294647216796875,1.04910278320313,0.0296478271484375,1.02388000488281,0.74267578125,1.05130004882813,1.3203125,1.0235595703125,1.3173828125,1.05325317382813,0.0323486328125,1.490234375,0.6220703125,1.5146484375,0.03240966796875,1.515625,0.62158203125,1.48876953125,1.353515625,1.5126953125,1.353515625,1.4873046875,0.034942626953125,0.65673828125,0.74462890625,0.680908203125,0.03485107421875,0.679931640625,0.74365234375,0.654541015625,1.31640625,0.681884765625,1.3154296875,0.65234375,0.179931640625,-1.416015625,0.69775390625,-1.41796875,0.1810302734375,-1.310546875,0.6982421875,-1.3125,1.291015625,-1.421875,1.2919921875,-1.314453125,0.1871337890625,-0.9013671875,0.70361328125,-0.7939453125,0.185546875,-0.796875,0.7041015625,-0.900390625,1.2978515625,-0.791015625,1.2978515625,-0.8984375,2.029296875,1.51953125,1.4072265625,1.54296875,1.4072265625,1.517578125,2.029296875,1.54443359375,2.744140625,1.52099609375,2.744140625,1.54638671875,0.0897216796875,-0.728515625,1.3046875,-0.6103515625,0.087890625,-0.61328125,0.87255859375,-0.7158203125,1.2998046875,-0.724609375,0.036468505859375,0.2490234375,0.85546875,0.33740234375,0.037628173828125,0.341796875,0.85693359375,0.24560546875,1.3115234375,0.33544921875,1.3154296875,0.2431640625,0.85546875,0.40478515625,0.03656005859375,0.49658203125,0.0380859375,0.404296875,0.857421875,0.4970703125,1.3115234375,0.40478515625,1.3154296875,0.4970703125,0.03118896484375,2.3125,0.62158203125,2.3115234375,0.0312042236328125,2.337890625,0.62158203125,2.3369140625,1.357421875,2.3125,1.357421875,2.337890625,0.0296478271484375,0.9312744140625,0.744140625,0.93121337890625,0.029449462890625,0.95648193359375,0.74267578125,0.958648681640625,1.3203125,0.93096923828125,1.3173828125,0.96063232421875,0.03302001953125,1.58203125,0.6220703125,1.6064453125,0.03253173828125,1.607421875,0.62158203125,1.580078125,1.353515625,1.6044921875,1.353515625,1.57861328125,
  1125. 0.03497314453125,0.564453125,0.74462890625,0.58837890625,0.03485107421875,0.58740234375,0.74365234375,0.56201171875,1.31640625,0.58935546875,1.3154296875,0.56005859375,-1.326171875,1.60302734375,-1.3271484375,1.54541015625,-1.12109375,1.5361328125,-0.7958984375,1.5341796875,-0.794921875,1.591796875,-1.2666015625,1.7939453125,-1.0595703125,1.8544921875,-1.2666015625,1.85498046875,-0.7314453125,1.8515625,-0.7314453125,1.7958984375,-1.416015625,0.65771484375,-1.2177734375,0.7138671875,-1.4169921875,0.710205078125,-1.2177734375,0.6591796875,-0.90625,0.71923828125,-0.90576171875,0.661376953125,-1.41015625,0.353515625,-1.4111328125,0.30615234375,-1.21484375,0.30078125,-0.90576171875,0.2919921875,-0.904296875,0.3447265625,-1.40625,-0.19140625,-1.208984375,-0.1435546875,-1.40625,-0.14453125,-0.900390625,-0.142578125,-0.900390625,-0.1953125,-1.326171875,1.468017578125,-1.3271484375,1.41064453125,-1.12109375,1.401611328125,-0.7958984375,1.399169921875,-0.794921875,1.45703125,-1.376953125,0.782470703125,-1.1796875,0.838623046875,-1.3779296875,0.8350830078125,-1.1787109375,0.783935546875,-0.86767578125,0.8441162109375,-0.8671875,0.7862548828125,-1.41015625,0.22998046875,-1.4111328125,0.18212890625,-1.21484375,0.1767578125,-0.90576171875,0.16796875,-0.904296875,0.220703125,-0.822265625,-0.50390625,-0.349609375,-0.48828125,-0.822265625,-0.48828125,-0.35009765625,-0.505859375,0.031585693359375,-0.4873046875,0.0306549072265625,-0.5068359375,-0.677734375,1.91455078125,-0.0234222412109375,1.9033203125,-0.6767578125,1.94677734375,-0.293212890625,1.94140625,-0.0230560302734375,1.9326171875,-0.2939453125,2.4658203125,-0.67626953125,2.4921875,-0.67578125,2.4609375,-0.0247039794921875,2.50390625,-0.0229034423828125,2.4736328125,-0.6787109375,2.0283203125,-0.024688720703125,2.0166015625,-0.677734375,2.0595703125,-0.30712890625,2.0546875,-0.024169921875,2.0458984375,-0.306640625,2.3525390625,-0.67626953125,2.37890625,-0.67578125,2.3466796875,-0.024658203125,2.390625,-0.0229034423828125,2.3603515625,-1.3857421875,2.6806640625,-1.0712890625,
  1126. 2.708984375,-1.384765625,2.712890625,-1.0712890625,2.6767578125,-0.73291015625,2.69921875,-0.73388671875,2.6689453125,-1.3349609375,2.017578125,-1.0458984375,2.0634765625,-1.3349609375,2.05078125,-1.044921875,2.029296875,-0.73291015625,2.0615234375,-0.732421875,2.0302734375,-0.365478515625,2.6103515625,-0.6796875,2.6064453125,-0.67919921875,2.57421875,-0.365234375,2.578125,-0.0264739990234375,2.607421875,-0.02642822265625,2.5771484375,-0.0171051025390625,0.0009765625,-0.861328125,0,-0.453857421875,0,-0.0164337158203125,0.07568359375,-0.70263671875,0.06787109375,-0.8447265625,0.0712890625,-0.333984375,0.07177734375,-0.70263671875,0.07470703125,-0.0189971923828125,0.14404296875,-0.83935546875,0.140625,-0.311767578125,0.1416015625,-0.0178985595703125,0.1455078125,-0.435791015625,0.2158203125,-0.017486572265625,0.21484375,-0.85107421875,0.21240234375,-0.70751953125,0.21630859375,-0.0189971923828125,0.2158203125,-0.28173828125,0.2158203125,2.02734375,1.231689453125,1.4052734375,1.258056640625,1.4052734375,1.2330322265625,2.02734375,1.256591796875,2.7421875,1.255126953125,2.7421875,1.22998046875,0.0267181396484375,2.68359375,0.8759765625,2.6865234375,0.02716064453125,2.708984375,0.8759765625,2.7099609375,1.3583984375,2.712890625,1.3583984375,2.6865234375,2.08984375,1.978515625,1.4091796875,2.07421875,1.408203125,1.97802734375,2.08984375,2.07421875,2.740234375,2.0673828125,2.744140625,1.9716796875,1.4091796875,1.8095703125,2.08984375,1.90234375,1.408203125,1.90576171875,2.087890625,1.80615234375,2.740234375,1.81005859375,2.744140625,1.90625,1.4111328125,2.2421875,2.08984375,2.2685546875,1.4111328125,2.267578125,2.08984375,2.244140625,2.744140625,2.2451171875,2.744140625,2.2705078125,0.048614501953125,-0.056640625,0.60693359375,0.03125,0.04547119140625,0.033203125,0.607421875,-0.060546875,1.30078125,-0.060546875,1.3037109375,0.02978515625,2.1328125,1.07464599609375,1.3798828125,1.164306640625,1.3759765625,1.07672119140625,2.134765625,1.1627197265625,2.744140625,1.161376953125,2.7421875,1.07281494140625,1.376953125,0.91571044921875,
  1127. 2.130859375,1.00571823120117,1.373046875,1.00360107421875,2.1328125,0.91796875,2.744140625,0.91961669921875,2.7421875,1.00763320922852,1.4052734375,1.3291015625,2.02734375,1.32763671875,1.4052734375,1.35400390625,2.02734375,1.3525390625,2.7421875,1.35107421875,2.7421875,1.325927734375,0.8759765625,2.595703125,0.027191162109375,2.6171875,0.0270843505859375,2.5927734375,0.8759765625,2.619140625,1.3583984375,2.62109375,1.3583984375,2.595703125,1.408203125,1.712890625,2.265625,1.7109375,1.408203125,1.73828125,2.265625,1.736328125,2.744140625,1.7353515625,2.744140625,1.7099609375,1.4091796875,2.146484375,2.265625,2.1728515625,1.4091796875,2.1708984375,2.265625,2.1484375,2.744140625,2.1494140625,2.744140625,2.1748046875,1.37109375,0.21240234375,1.9814453125,0.3095703125,1.3671875,0.31103515625,1.982421875,0.208984375,2.740234375,0.208984375,2.744140625,0.3076171875,1.982421875,0.38134765625,1.37109375,0.47314453125,1.3681640625,0.37451171875,1.982421875,0.48193359375,2.740234375,0.48193359375,2.744140625,0.3837890625,0.04425048828125,-0.365234375,0.7392578125,-0.3671875,0.048126220703125,-0.28515625,0.7412109375,-0.2861328125,1.2998046875,-0.287109375,1.2998046875,-0.369140625,0.048583984375,0.095703125,0.74169921875,0.1787109375,0.044952392578125,0.1767578125,0.74365234375,0.09814453125,1.3037109375,0.099609375,1.302734375,0.18017578125,-1.341796875,-0.7744140625,-1.171875,-0.7265625,-1.34375,-0.7294921875,-1.1708984375,-0.771484375,-0.90283203125,-0.7646484375,-0.90380859375,-0.7216796875,-1.2177734375,0.4169921875,-1.416015625,0.470703125,-1.416015625,0.41796875,-1.2177734375,0.4716796875,-0.90576171875,0.4736328125,-0.90576171875,0.41552734375,-1.2138671875,0.05322265625,-1.4091796875,0.10498046875,-1.4111328125,0.05859375,-1.212890625,0.10205078125,-0.904296875,0.09716796875,-0.90576171875,0.04443359375,-1.189453125,-0.541015625,-1.3857421875,-0.4931640625,-1.3857421875,-0.5390625,-1.189453125,-0.4921875,-0.88037109375,-0.490234375,-0.88037109375,-0.54296875,-1.326171875,1.1494140625,-1.1279296875,1.2056884765625,-1.326171875,
  1128. 1.2021484375,-1.126953125,1.15087890625,-0.81494140625,1.1531982421875,-0.81591796875,1.2110595703125,-1.341796875,-0.6591796875,-1.171875,-0.611328125,-1.34375,-0.6142578125,-1.1708984375,-0.65625,-0.90283203125,-0.6494140625,-0.90380859375,-0.6064453125,-1.416015625,0.538818359375,-1.2177734375,0.537841796875,-1.416015625,0.59130859375,-1.2177734375,0.592529296875,-0.90576171875,0.59423828125,-0.90576171875,0.53662109375,-1.40625,-0.064453125,-1.2099609375,-0.0703125,-1.4052734375,-0.0185546875,-1.208984375,-0.021484375,-0.89990234375,-0.0263671875,-0.9013671875,-0.0791015625,-1.208984375,-0.4248046875,-1.4052734375,-0.376953125,-1.4052734375,-0.4228515625,-1.208984375,-0.3759765625,-0.900390625,-0.3740234375,-0.900390625,-0.4267578125,-1.306640625,1.2744140625,-1.109375,1.33056640625,-1.3076171875,1.3271484375,-1.1083984375,1.27587890625,-0.79638671875,1.278076171875,-0.796875,1.3359375,-1.0576171875,2.2412109375,-0.732421875,2.2119140625,-0.73193359375,2.2314453125,-1.0576171875,2.2197265625,-1.376953125,2.224609375,-1.376953125,2.2470703125,0.88330078125,-1.66796875,0.3818359375,-1.609375,0.37890625,-1.66796875,0.884765625,-1.609375,1.2900390625,-1.611328125,1.2900390625,-1.669921875,0.38134765625,-1.546875,0.88427734375,-1.486328125,0.378662109375,-1.48828125,0.8857421875,-1.544921875,1.2919921875,-1.54296875,1.2919921875,-1.484375,-0.67822265625,2.12890625,-0.294677734375,2.1328125,-0.67822265625,2.1650390625,-0.29443359375,2.1689453125,-0.024169921875,2.1640625,-0.024383544921875,2.1298828125,-1.380859375,2.42578125,-1.09375,2.4609375,-1.3798828125,2.474609375,-1.09375,2.41796875,-0.7294921875,2.4306640625,-0.7294921875,2.46875,-1.37890625,2.318359375,-1.0927734375,2.31640625,-1.3779296875,2.3544921875,-1.091796875,2.3486328125,-0.7314453125,2.337890625,-0.73193359375,2.310546875,-1.3828125,2.5380859375,-1.09765625,2.5615234375,-1.384765625,2.5869140625,-1.09765625,2.60546875,-0.73388671875,2.5947265625,-0.73291015625,2.5556640625,-0.424560546875,2.2333984375,-0.67724609375,2.267578125,-0.677734375,2.2353515625,
  1129. -0.425048828125,2.265625,-0.02520751953125,2.279296875,-0.023895263671875,2.2490234375,-0.72900390625,1.67529296875,-0.326904296875,1.68017578125,-0.728515625,1.71435546875,-0.326904296875,1.71875,-0.02001953125,1.71337890625,-0.020233154296875,1.67626953125,-1.333984375,1.9208984375,-1.0439453125,1.95166015625,-1.333984375,1.9541015625,-1.0439453125,1.91845703125,-0.7314453125,1.92138671875,-0.7314453125,1.953125,-0.00178909301757813,-0.41796875,-0.84619140625,-0.4189453125,-0.7001953125,-0.419921875,-0.65576171875,-0.3505859375,-0.0089111328125,-0.34765625,-0.845703125,-0.34765625,-0.27490234375,-0.34765625,-0.70361328125,-0.3447265625,-0.458251953125,-0.34765625,-0.00171184539794922,-0.2783203125,-0.845703125,-0.279296875,-0.685546875,-0.2802734375,-0.63525390625,-0.2109375,-0.00893402099609375,-0.2080078125,-0.84619140625,-0.2080078125,-0.27490234375,-0.2080078125,-0.59423828125,-0.20703125,-0.86328125,-0.068359375,-0.4580078125,-0.068359375,-0.703125,-0.064453125,-0.0184173583984375,-0.0654296875,-0.274658203125,-0.068359375,-0.8623046875,-0.1396484375,-0.313232421875,-0.13671875,-0.00896453857421875,-0.140625,-0.3076171875,-0.138671875,-0.432861328125,0.36474609375,-0.0189971923828125,0.3642578125,-0.28173828125,0.3642578125,-0.017486572265625,0.36328125,-0.0178985595703125,0.2939453125,-0.84814453125,0.36376953125,-0.8515625,0.35986328125,-0.4384765625,0.294921875,-0.0189971923828125,0.29248046875,-0.8515625,0.29248046875,-0.287353515625,0.28955078125,-0.70703125,0.29248046875,-0.392333984375,0.661376953125,-0.0190582275390625,0.6611328125,-0.283203125,0.6611328125,-0.708984375,0.66162109375,-0.8681640625,0.659423828125,-0.43359375,0.592041015625,-0.0192413330078125,0.590576171875,-0.861328125,0.58935546875,-0.020599365234375,0.58935546875,-0.330322265625,0.58740234375,-0.29736328125,0.515380859375,-0.019378662109375,0.4423828125,-0.0190277099609375,0.512939453125,-0.708984375,0.51318359375,-0.869140625,0.51025390625,-0.4296875,0.44287109375,-0.020599365234375,0.44091796875,-0.861328125,0.4423828125,-0.298095703125,
  1130. 0.43798828125,-0.86572265625,0.44140625
  1131. }
  1132. UVIndex: *2178 {
  1133. a: 0,1,2,0,3,1,4,5,6,5,7,6,8,9,10,10,11,8,12,13,14,13,15,14,16,17,18,17,16,19,20,21,22,20,22,23,24,25,26,25,24,27,28,29,30,28,31,29,32,33,34,32,35,33,36,37,38,37,36,39,40,41,42,43,41,40,44,45,46,47,45,44,48,49,50,51,49,48,52,53,54,52,55,53,56,57,58,59,57,56,60,61,62,60,63,61,64,65,66,67,65,64,68,69,70,71,69,68,72,73,74,74,73,75,76,77,78,77,76,79,80,81,82,82,81,83,84,85,86,85,84,87,88,89,90,89,88,91,92,93,94,94,93,95,96,97,98,97,96,99,100,101,102,100,102,103,104,105,106,106,105,107,108,109,110,109,108,111,112,113,114,114,115,112,116,117,118,117,116,119,120,121,122,121,120,123,124,125,126,125,124,127,128,129,130,129,128,131,132,133,134,133,132,135,136,137,138,139,138,137,140,141,142,142,141,143,144,145,146,146,145,147,148,149,150,150,149,151,152,153,154,153,152,155,156,157,158,158,157,159,160,161,162,162,161,163,164,165,166,165,164,167,168,169,170,169,168,171,172,173,174,172,174,175,176,177,178,178,179,176,180,181,182,180,182,183,184,185,186,185,184,187,188,189,190,189,188,191,192,193,194,193,192,195,196,197,198,197,196,199,200,201,202,203,202,201,204,205,206,205,204,207,208,209,210,209,208,211,212,213,214,212,214,215,216,217,218,217,216,219,220,221,222,221,220,223,224,225,226,225,224,227,228,229,230,228,230,231,232,233,234,233,232,235,236,237,238,236,238,239,240,241,242,241,240,243,244,245,246,246,245,247,248,249,250,249,248,251,252,253,254,253,252,255,256,257,258,257,259,258,260,261,262,262,261,263,264,265,266,265,267,266,268,269,270,270,269,271,272,273,274,272,274,275,276,277,278,277,276,279,280,281,282,282,281,283,284,285,286,285,284,287,288,289,290,289,288,291,292,293,294,293,292,295,296,297,298,296,298,299,300,301,302,302,301,303,304,305,306,305,304,307,308,309,310,308,310,311,312,313,314,313,312,315,316,317,318,318,317,319,320,321,322,321,320,323,324,325,326,326,325,327,328,329,330,329,328,331,332,333,334,333,335,334,336,337,338,337,336,339,340,341,342,341,340,343,344,345,346,345,344,347,348,349,350,350,349,351,352,353,354,353,352,355,356,357,358,357,359,358,360,361,362,362,361,363,364,365,
  1134. 366,365,364,367,368,369,370,369,368,371,372,373,374,374,373,375,376,377,378,377,376,379,380,381,382,381,383,382,384,385,386,386,385,387,388,389,390,390,389,391,392,393,394,393,392,395,396,397,398,398,397,399,400,401,402,401,400,403,404,405,406,405,407,406,408,409,410,409,408,411,412,413,414,413,412,415,416,417,418,417,419,418,420,421,422,422,421,423,424,425,426,425,424,427,428,429,430,430,429,431,432,433,434,433,432,435,436,437,438,437,436,439,440,441,442,441,440,443,444,445,446,444,446,447,448,449,450,449,448,451,452,453,454,17,454,453,454,17,19,455,456,457,458,457,456,457,458,459,458,460,459,460,458,461,460,461,462,463,464,465,464,466,465,467,465,466,466,468,467,468,466,469,468,469,470,471,472,473,473,474,471,474,473,475,476,477,478,477,479,478,480,478,479,481,482,483,483,484,481,484,483,485,486,487,488,488,489,486,489,488,490,491,492,493,493,494,491,494,493,495,496,497,498,497,499,498,498,499,500,501,502,503,504,501,503,505,504,503,506,504,505,507,508,509,509,510,507,510,511,507,511,510,512,513,511,512,513,512,514,515,516,517,518,515,517,515,518,519,520,519,518,519,520,521,522,523,524,523,522,525,526,525,522,525,526,527,528,529,530,529,528,531,531,532,529,531,533,532,533,531,534,535,536,537,536,535,538,538,539,536,539,538,540,540,541,539,541,540,542,543,544,545,544,543,546,547,546,543,547,548,546,549,546,548,550,551,552,551,550,553,550,554,553,555,553,554,556,557,558,557,556,559,37,559,556,559,37,39,560,561,562,560,563,561,563,564,561,564,563,565,565,566,564,565,567,566,568,569,570,571,570,569,572,571,569,571,572,573,572,574,573,575,573,574,576,577,578,577,576,579,580,577,579,580,579,581,582,580,581,580,582,583,584,585,586,585,584,587,587,588,585,588,587,589,589,590,588,590,589,591,592,593,594,593,592,595,595,596,593,596,595,597,597,598,596,598,597,599,600,601,602,603,602,601,601,604,603,605,603,604,606,605,604,605,606,607,608,609,610,609,608,611,612,611,608,611,612,613,614,613,612,613,614,615,616,617,618,616,619,617,619,616,620,621,619,620,622,619,621,623,622,621,624,622,623,625,626,627,625,628,626,628,625,629,
  1135. 629,630,628,631,630,629,630,631,632,633,632,631,634,632,633,635,636,637,637,636,638,639,638,636,638,639,640,639,641,640,642,641,639,641,642,643,644,645,646,644,647,645,647,644,648,648,649,647,648,650,649,651,649,650,652,653,654,652,655,653,655,652,656,656,657,655,658,657,656,657,658,659,660,659,658,661,660,658,662,663,664,662,665,663,665,662,666,667,665,666,665,667,668,669,670,671,670,669,672,673,672,669,672,673,674,675,676,677,676,675,678,678,679,676,679,678,680,681,682,683,684,683,682,682,685,684,686,684,685,687,688,689,688,687,690,688,690,691,692,693,694,695,694,693,695,693,696,697,698,699,698,697,700,701,700,697,700,701,702,703,704,705,706,704,703,704,706,707,708,709,710,709,708,711,712,711,708,711,712,713,714,715,716,715,714,717,717,718,715,718,717,719,720,721,722,721,720,723,723,724,721,724,723,725,726,727,728,729,728,727,727,730,729,731,729,730,732,733,734,733,732,735,735,736,733,736,735,737,738,739,740,739,738,741,742,741,738,741,742,743,744,745,746,745,744,747,745,747,748,749,750,751,750,749,752,752,753,750,753,752,754,755,756,757,756,755,758,759,758,755,758,759,760,761,762,763,764,763,762,762,765,764,766,764,765,767,768,769,770,769,768,768,771,770,772,770,771,773,774,775,774,773,776,776,777,774,777,776,778,779,780,781,780,779,782,782,783,780,783,782,784,785,786,787,788,785,787,789,785,788,790,791,792,790,793,791,793,790,794,795,796,797,796,795,798,798,799,796,799,798,800,801,802,803,804,801,803,805,801,804,806,807,808,806,809,807,809,806,810,811,812,813,813,814,811,811,814,815,816,817,818,817,816,819,819,820,817,820,819,821,822,823,824,824,825,822,822,825,826,827,828,829,828,827,830,830,831,828,831,830,832,833,834,835,835,834,836,834,837,836,838,839,840,839,838,841,841,838,842,843,844,845,845,844,846,844,847,846,848,849,850,849,848,851,851,848,852,853,854,855,854,853,856,856,857,854,857,856,858,859,860,861,860,859,862,862,863,860,863,862,864,865,866,867,867,868,865,868,869,865,869,868,870,871,872,873,874,872,871,872,874,875,872,875,876,877,875,874,878,876,875,875,877,878,879,880,881,880,879,882,882,883,880,
  1136. 883,882,884,883,885,880,883,886,885,887,883,884,883,887,888,889,890,891,890,889,892,889,893,892,893,889,894,895,896,897,898,897,896,896,899,898,899,896,900,901,902,903,902,901,904,901,905,904,905,901,906,907,908,909,908,907,910,910,911,908,912,908,911,913,914,915,914,913,916,916,917,914,918,914,917,919,920,921,920,919,922,923,920,922,920,923,924,925,926,927,926,925,928,925,929,928,929,925,930,931,932,933,932,931,934,935,932,934,932,935,936,937,938,939,940,939,938,938,941,940,941,938,942,943,944,945,944,943,946,943,947,946,947,943,948,949,950,951,952,951,950,950,953,952,953,950,954,955,956,957,956,955,958,959,956,958,956,959,960,961,962,963,962,961,964,964,965,962,966,962,965,967,968,969,968,967,970,967,971,970,971,967,972,973,974,975,976,975,974,974,977,976,977,974,978,979,980,981,980,979,982,982,983,980,984,980,983,985,986,987,986,985,988,989,986,988,990,986,989,991,992,993,994,992,991,991,995,994,995,991,996,997,998,999,1000,998,997,997,1001,1000,1001,997,1002,1003,1004,1005,1004,1003,1006,1003,1007,1006,1007,1003,1008,1009,1010,1011,1010,1009,1012,1013,1010,1012,1014,1010,1013,1015,1016,1017,1016,1015,1018,1018,1019,1016,1016,1019,1020,1021,1022,1023,1023,1022,1024,1022,1025,1024,1025,1022,1026,1027,1028,1029,1029,1028,1030,1028,1031,1030,1031,1028,1032,1033,1034,1035,1034,1033,1036,1033,1037,1036,1037,1033,1038,1039,1040,1041,1040,1039,1042,1042,1043,1040,1040,1043,1044,1045,1046,1047,1048,1046,1045,1045,1049,1048,1049,1045,1050,1051,1052,1053,1054,1052,1051,1051,1055,1054,1055,1051,1056,1057,1058,1059,1058,1057,1060,1061,1058,1060,1058,1061,1062,1063,1064,1065,1065,1064,1066,1064,1067,1066,1067,1064,1068,1069,1070,1071,1070,1069,1072,1072,1073,1070,1070,1073,1074,1075,1076,1077,1077,1076,1078,1076,1079,1078,1079,1076,1080,1081,1082,1083,1082,1084,1083,1082,1085,1084,1085,1082,1086,1087,1088,1089,1088,1087,1090,1087,1091,1090,1091,1087,1092,1093,1094,1095,1095,1094,1096,1094,1097,1096,1097,1094,1098,1099,1100,1101,1100,1099,1102,1102,1103,1100,1100,1103,1104,1105,1106,1107,1108,1106,1105,1108,1105,1109,1106,1108,
  1137. 1110,1108,1109,1111,1110,1108,1112,1108,1111,1113,1108,1113,1112,1114,1115,1116,1117,1115,1114,1117,1114,1118,1115,1117,1119,1117,1118,1120,1121,1119,1117,1117,1120,1121,1122,1123,1124,1123,1122,1125,1125,1126,1123,1127,1125,1122,1125,1127,1128,1129,1125,1128,1128,1127,1130,1130,1129,1128,1131,1132,1133,1132,1131,1134,1131,1135,1134,1136,1137,1131,1135,1131,1138,1131,1137,1138,1138,1139,1135,1140,1138,1137,1141,1139,1138,1142,1138,1140,1138,1142,1141,1143,1144,1145,1143,1146,1147,1148,1144,1143,1147,1148,1143,1144,1148,1149,1150,1148,1147,1148,1151,1149,1148,1150,1152,1151,1148,1152,1153,1154,1155,1156,1157,1153,1154,1153,1158,1157,1158,1153,1154,1158,1159,1158,1157,1160,1161,1159,1158,1162,1158,1160,1158,1162,1161
  1138. }
  1139. }
  1140. LayerElementUV: 1 {
  1141. Version: 101
  1142. Name: "LightMapUV"
  1143. MappingInformationType: "ByPolygonVertex"
  1144. ReferenceInformationType: "IndexToDirect"
  1145. UV: *2326 {
  1146. a: 0.40576171875,0.09375,0.3955078125,0.1044921875,0.395751953125,0.09375,0.406494140625,0.10498046875,0.744140625,0.10498046875,0.73388671875,0.10498046875,0.7451171875,0.0947265625,0.734375,0.0947265625,0.07318115234375,0.10498046875,0.072998046875,0.09375,0.085693359375,0.09375,0.0850830078125,0.10498046875,0.343017578125,0.10986328125,0.342529296875,0.12060546875,0.3310546875,0.10986328125,0.331298828125,0.12109375,0.8505859375,0.763671875,0.74072265625,0.755126953125,0.853515625,0.754150390625,0.740234375,0.7646484375,0.77685546875,0.10498046875,0.76611328125,0.10498046875,0.76611328125,0.09521484375,0.77685546875,0.09521484375,0.29931640625,0.1201171875,0.310791015625,0.1103515625,0.310791015625,0.12060546875,0.2998046875,0.10888671875,0.89111328125,0.1103515625,0.87890625,0.12060546875,0.87939453125,0.1103515625,0.8916015625,0.12109375,0.37548828125,0.12158203125,0.363525390625,0.10986328125,0.375732421875,0.109375,0.36279296875,0.12109375,0.366943359375,0.763671875,0.2568359375,0.755126953125,0.369873046875,0.754150390625,0.256591796875,0.7646484375,0.669921875,0.11083984375,0.681640625,0.11962890625,0.66845703125,0.1181640625,0.6796875,0.10888671875,0.234375,0.10498046875,0.243896484375,0.09326171875,0.2454833984375,0.10205078125,0.2352294921875,0.09375,0.7021484375,0.11083984375,0.71337890625,0.11962890625,0.701171875,0.1181640625,0.7119140625,0.10888671875,0.267333984375,0.09326171875,0.27734375,0.1044921875,0.265625,0.10205078125,0.27587890625,0.0927734375,0.84716796875,0.11083984375,0.85888671875,0.11962890625,0.84619140625,0.1181640625,0.85693359375,0.10888671875,0.10638427734375,0.09375,0.11627197265625,0.10498046875,0.10443115234375,0.10205078125,0.11492919921875,0.09326171875,0.54052734375,0.11083984375,0.55224609375,0.1201171875,0.5400390625,0.1181640625,0.55029296875,0.10888671875,0.2022705078125,0.10498046875,0.211669921875,0.09326171875,0.2132568359375,0.10205078125,0.203125,0.09375,0.2164306640625,0.07275390625,0.20166015625,0.07177734375,0.216552734375,0.068359375,0.20166015625,
  1147. 0.0673828125,0.76611328125,0.072265625,0.78125,0.068359375,0.78125,0.07275390625,0.76611328125,0.068359375,0.44775390625,0.10498046875,0.427490234375,0.103515625,0.447998046875,0.10009765625,0.427490234375,0.0986328125,0.044342041015625,0.32568359375,0.040985107421875,0.539794921875,0.040313720703125,0.32568359375,0.04486083984375,0.539794921875,0.169677734375,0.06787109375,0.1737060546875,0.0888671875,0.1695556640625,0.0888671875,0.174072265625,0.06787109375,0.363037109375,0.0888671875,0.3466796875,0.08740234375,0.363037109375,0.083984375,0.3466796875,0.0830078125,0.08892822265625,0.068359375,0.0726318359375,0.07275390625,0.0726318359375,0.06787109375,0.0889892578125,0.072265625,0.94384765625,0.08349609375,0.95849609375,0.083984375,0.95849609375,0.0888671875,0.943359375,0.08837890625,0.98974609375,0.07275390625,0.9755859375,0.072265625,0.98974609375,0.06787109375,0.9755859375,0.06787109375,0.48095703125,0.0849609375,0.4765625,0.10498046875,0.47607421875,0.0849609375,0.48095703125,0.10498046875,0.119384765625,0.07177734375,0.1048583984375,0.07275390625,0.10491943359375,0.06787109375,0.1192626953125,0.0673828125,0.318115234375,0.08447265625,0.29833984375,0.08837890625,0.29833984375,0.083984375,0.318115234375,0.08837890625,0.05535888671875,0.056640625,0.040313720703125,0.0517578125,0.05535888671875,0.05224609375,0.040283203125,0.056640625,0.491943359375,0.9720458984375,0.70458984375,0.991943359375,0.49169921875,0.99139404296875,0.705078125,0.973098754882813,0.318359375,0.3115234375,0.31494140625,0.5244140625,0.314453125,0.3115234375,0.319091796875,0.5244140625,0.94677734375,0.97247314453125,0.73388671875,0.99169921875,0.73388671875,0.972503662109375,0.947265625,0.991477966308594,0.2176513671875,0.4599609375,0.2181396484375,0.24658203125,0.2218017578125,0.4599609375,0.2222900390625,0.24658203125,0.2486572265625,0.07275390625,0.23388671875,0.07177734375,0.248779296875,0.068359375,0.23388671875,0.0673828125,0.8134765625,0.07275390625,0.79833984375,0.072265625,0.8134765625,0.068359375,0.79833984375,0.068359375,0.9111328125,
  1148. 0.10498046875,0.91259765625,0.08740234375,0.916015625,0.10498046875,0.91748046875,0.08740234375,0.07659912109375,0.32568359375,0.0732421875,0.53955078125,0.07257080078125,0.32568359375,0.0770263671875,0.539794921875,0.70166015625,0.0888671875,0.70166015625,0.0712890625,0.70556640625,0.0888671875,0.7060546875,0.0712890625,0.68408203125,0.0888671875,0.66943359375,0.08740234375,0.6845703125,0.083984375,0.66943359375,0.0830078125,0.5078125,0.07275390625,0.52294921875,0.068359375,0.52294921875,0.072265625,0.5078125,0.06787109375,0.0208740234375,0.056640625,0.008453369140625,0.05126953125,0.021087646484375,0.0517578125,0.00809478759765625,0.05615234375,0.86328125,0.0888671875,0.8466796875,0.0888671875,0.8466796875,0.08447265625,0.86328125,0.083984375,0.572265625,0.10009765625,0.59130859375,0.10009765625,0.59130859375,0.10400390625,0.572265625,0.1044921875,0.541015625,0.0888671875,0.5400390625,0.07177734375,0.544921875,0.07177734375,0.54541015625,0.0888671875,0.62060546875,0.08837890625,0.6396484375,0.08447265625,0.6396484375,0.08837890625,0.62060546875,0.083984375,0.6689453125,0.0517578125,0.68212890625,0.056640625,0.6689453125,0.056640625,0.68212890625,0.05224609375,0.250244140625,0.9246826171875,0.462890625,0.943572998046875,0.2498779296875,0.94305419921875,0.46337890625,0.9256591796875,0.7216796875,0.32763671875,0.71826171875,0.54052734375,0.71728515625,0.32763671875,0.72216796875,0.54052734375,0.73388671875,0.92510986328125,0.94677734375,0.925048828125,0.73388671875,0.943328857421875,0.947265625,0.943115234375,0.74951171875,0.4599609375,0.75439453125,0.2470703125,0.75390625,0.4599609375,0.75048828125,0.24658203125,0.75,0.2177734375,0.75634765625,0.13232421875,0.75537109375,0.2177734375,0.75,0.13232421875,0.83984375,0.056640625,0.83056640625,0.056640625,0.83056640625,0.05078125,0.83984375,0.05078125,0.13818359375,0.05029296875,0.1470947265625,0.05712890625,0.1370849609375,0.05615234375,0.147705078125,0.05078125,0.71728515625,0.298828125,0.72607421875,0.212890625,0.7265625,0.298828125,0.7177734375,0.212890625,0.435791015625,
  1149. 0.07275390625,0.427978515625,0.064453125,0.436767578125,0.06494140625,0.427001953125,0.072265625,0.61279296875,0.04931640625,0.61279296875,0.056640625,0.6044921875,0.056640625,0.6044921875,0.04931640625,0.74267578125,0.072265625,0.7333984375,0.06494140625,0.7421875,0.064453125,0.734375,0.07275390625,0.37109375,0.04931640625,0.37109375,0.056640625,0.36279296875,0.056640625,0.36279296875,0.04931640625,0.78857421875,0.13232421875,0.7822265625,0.2177734375,0.7822265625,0.13232421875,0.78759765625,0.2177734375,0.8720703125,0.05078125,0.8720703125,0.056640625,0.86279296875,0.05078125,0.86279296875,0.056640625,0.29931640625,0.05029296875,0.308349609375,0.05712890625,0.29833984375,0.05615234375,0.308837890625,0.05078125,0.00811767578125,0.2900390625,0.0936279296875,0.298828125,0.00807952880859375,0.29833984375,0.0936279296875,0.28955078125,0.394775390625,0.072265625,0.395751953125,0.064453125,0.403564453125,0.07275390625,0.404541015625,0.06494140625,0.63671875,0.04931640625,0.64501953125,0.04931640625,0.63671875,0.056640625,0.64501953125,0.056640625,0.57275390625,0.07275390625,0.572265625,0.06494140625,0.58154296875,0.072265625,0.5810546875,0.064453125,0.45947265625,0.04931640625,0.4677734375,0.04931640625,0.45947265625,0.056640625,0.4677734375,0.056640625,0.266357421875,0.0673828125,0.280029296875,0.06787109375,0.27978515625,0.07275390625,0.265869140625,0.07177734375,0.94775390625,0.115234375,0.943359375,0.22509765625,0.94482421875,0.115234375,0.94873046875,0.2265625,0.360107421875,0.546875,0.3603515625,0.6689453125,0.346923828125,0.54736328125,0.34716796875,0.668701171875,0.329833984375,0.547607421875,0.31494140625,0.6689453125,0.31640625,0.546875,0.328125,0.6689453125,0.447998046875,0.2255859375,0.446044921875,0.35205078125,0.443359375,0.22607421875,0.449951171875,0.35009765625,0.344482421875,0.056640625,0.330810546875,0.05224609375,0.344482421875,0.05224609375,0.330810546875,0.056640625,0.927734375,0.052734375,0.93798828125,0.05322265625,0.93798828125,0.056640625,0.92724609375,0.056640625,0.0828857421875,0.04052734375,
  1150. 0.0726318359375,0.0400390625,0.08294677734375,0.037109375,0.07281494140625,0.03662109375,0.04327392578125,0.07763671875,0.040313720703125,0.20166015625,0.040374755859375,0.0771484375,0.043060302734375,0.20166015625,0.89501953125,0.052734375,0.90625,0.05322265625,0.90625,0.056640625,0.89501953125,0.05615234375,0.2015380859375,0.037109375,0.2127685546875,0.04052734375,0.2015380859375,0.04052734375,0.2127685546875,0.037109375,0.572265625,0.16552734375,0.6162109375,0.1650390625,0.57275390625,0.169921875,0.6162109375,0.16845703125,0.277587890625,0.20166015625,0.233154296875,0.1953125,0.277587890625,0.19580078125,0.2332763671875,0.201171875,0.9755859375,0.13720703125,0.9755859375,0.09326171875,0.9794921875,0.13720703125,0.9794921875,0.09375,0.1370849609375,0.185546875,0.1431884765625,0.14111328125,0.142822265625,0.185546875,0.1373291015625,0.14111328125,0.7333984375,0.04052734375,0.7333984375,0.0361328125,0.7392578125,0.04052734375,0.73974609375,0.03662109375,0.0136260986328125,0.0205078125,0.00806427001953125,0.0244140625,0.00806427001953125,0.0205078125,0.0136260986328125,0.0244140625,0.298583984375,0.1494140625,0.342041015625,0.15234375,0.298583984375,0.15380859375,0.342041015625,0.14892578125,0.1163330078125,0.20166015625,0.07183837890625,0.1953125,0.11639404296875,0.19580078125,0.07196044921875,0.201171875,0.1409912109375,0.07763671875,0.1409912109375,0.12109375,0.1370849609375,0.0771484375,0.13720703125,0.12109375,0.277587890625,0.16943359375,0.23291015625,0.16357421875,0.277587890625,0.16357421875,0.2332763671875,0.16943359375,0.701171875,0.04052734375,0.701171875,0.0361328125,0.70703125,0.04052734375,0.70703125,0.03662109375,0.95947265625,0.03662109375,0.96484375,0.03662109375,0.95947265625,0.04052734375,0.96484375,0.04052734375,0.2340087890625,0.13330078125,0.277587890625,0.13623046875,0.234130859375,0.1376953125,0.277587890625,0.1328125,0.443603515625,0.20166015625,0.449951171875,0.1572265625,0.449462890625,0.20166015625,0.4443359375,0.1572265625,0.572265625,0.13330078125,0.6162109375,0.13330078125,0.572265625,
  1151. 0.13720703125,0.6162109375,0.13720703125,0.1163330078125,0.16943359375,0.07159423828125,0.16357421875,0.11639404296875,0.16357421875,0.07196044921875,0.16943359375,0.52392578125,0.04052734375,0.52392578125,0.0361328125,0.52978515625,0.04052734375,0.52978515625,0.03662109375,0.79833984375,0.03662109375,0.8037109375,0.03662109375,0.79833984375,0.04052734375,0.8037109375,0.04052734375,0.07269287109375,0.13330078125,0.1163330078125,0.1328125,0.072998046875,0.1376953125,0.11639404296875,0.13623046875,0.6162109375,0.20166015625,0.57177734375,0.1953125,0.6162109375,0.19580078125,0.57177734375,0.201171875,0.455078125,0.13720703125,0.4111328125,0.13720703125,0.455078125,0.13330078125,0.411376953125,0.13330078125,0.701171875,0.185546875,0.70751953125,0.14111328125,0.70703125,0.185546875,0.70166015625,0.14111328125,0.55615234375,0.04052734375,0.55615234375,0.0361328125,0.56201171875,0.04052734375,0.56201171875,0.03662109375,0.045867919921875,0.0205078125,0.040313720703125,0.0244140625,0.040313720703125,0.0205078125,0.045867919921875,0.0244140625,0.4833984375,0.24169921875,0.4755859375,0.34716796875,0.4775390625,0.24169921875,0.481201171875,0.34716796875,0.234130859375,0.04052734375,0.2337646484375,0.03564453125,0.239990234375,0.0400390625,0.2396240234375,0.03515625,0.49169921875,0.03564453125,0.497314453125,0.03515625,0.49169921875,0.04052734375,0.497314453125,0.04052734375,0.10516357421875,0.04052734375,0.11181640625,0.03515625,0.1121826171875,0.0400390625,0.10479736328125,0.03564453125,0.26611328125,0.03564453125,0.272705078125,0.03564453125,0.26611328125,0.04052734375,0.272705078125,0.04052734375,0.443603515625,0.4345703125,0.548828125,0.44384765625,0.443359375,0.44140625,0.548828125,0.4375,0.169677734375,0.04052734375,0.176025390625,0.03515625,0.176513671875,0.0400390625,0.1693115234375,0.03564453125,0.401611328125,0.03515625,0.39501953125,0.04052734375,0.394775390625,0.03564453125,0.401611328125,0.04052734375,0.42724609375,0.03564453125,0.43212890625,0.03515625,0.4326171875,0.0400390625,0.427490234375,0.04052734375,0.7705078125,
  1152. 0.03564453125,0.76611328125,0.04052734375,0.76611328125,0.03564453125,0.7705078125,0.04052734375,0.6396484375,0.765625,0.63623046875,0.756591796875,0.67822265625,0.7662353515625,0.81298828125,0.594970703125,0.8115234375,0.605224609375,0.76220703125,0.59521484375,0.72705078125,0.604736328125,0.74072265625,0.59521484375,0.6806640625,0.59521484375,0.6513671875,0.60498046875,0.6533203125,0.594970703125,0.475830078125,0.627197265625,0.5029296875,0.62744140625,0.472900390625,0.63720703125,0.572265625,0.62744140625,0.576171875,0.636962890625,0.63525390625,0.636962890625,0.6357421875,0.626953125,0.6357421875,0.637451171875,0.39501953125,0.77587890625,0.396240234375,0.679931640625,0.40966796875,0.68115234375,0.39501953125,0.89483642578125,0.40869140625,0.89520263671875,0.1048583984375,0.91143798828125,0.10626220703125,0.8336181640625,0.121826171875,0.91046142578125,0.10479736328125,0.697021484375,0.12109375,0.69677734375,0.63671875,0.39111328125,0.63671875,0.35791015625,0.646484375,0.35791015625,0.63720703125,0.44384765625,0.646484375,0.44384765625,0.66943359375,0.181640625,0.66943359375,0.1484375,0.6767578125,0.1484375,0.6689453125,0.23388671875,0.67724609375,0.23388671875,0.00720977783203125,0.570068359375,0.00864410400390625,0.560791015625,0.0648193359375,0.560791015625,0.1336669921875,0.57275390625,0.1334228515625,0.5615234375,0.4111328125,0.531494140625,0.423095703125,0.536376953125,0.41259765625,0.59814453125,0.422119140625,0.6533203125,0.41455078125,0.653076171875,0.81494140625,0.08935546875,0.81787109375,0.08935546875,0.81787109375,0.16064453125,0.814453125,0.16015625,0.81787109375,0.21826171875,0.814453125,0.2177734375,0.250732421875,0.49267578125,0.2498779296875,0.453125,0.260009765625,0.45849609375,0.2607421875,0.49658203125,0.250732421875,0.556640625,0.260986328125,0.558837890625,0.250244140625,0.6689453125,0.260498046875,0.66943359375,0.63720703125,0.8309326171875,0.6376953125,0.8212890625,0.67626953125,0.8206787109375,0.73974609375,0.818603515625,0.74072265625,0.827880859375,0.8505859375,0.8199462890625,0.85205078125,
  1153. 0.829345703125,0.292236328125,0.556396484375,0.28271484375,0.45458984375,0.29296875,0.453125,0.2822265625,0.55810546875,0.292724609375,0.667724609375,0.28271484375,0.669677734375,0.153076171875,0.72216796875,0.240478515625,0.733154296875,0.153076171875,0.73291015625,0.296630859375,0.723388671875,0.30908203125,0.73388671875,0.36572265625,0.73388671875,0.370361328125,0.72314453125,0.49169921875,0.93463134765625,0.57861328125,0.938262939453125,0.4921875,0.943572998046875,0.57861328125,0.928955078125,0.64892578125,0.9366455078125,0.64892578125,0.92706298828125,0.7060546875,0.93426513671875,0.70654296875,0.92437744140625,0.2391357421875,0.7872314453125,0.153076171875,0.7969970703125,0.1531982421875,0.7864990234375,0.29296875,0.7974853515625,0.30810546875,0.786865234375,0.365478515625,0.78759765625,0.37060546875,0.7987060546875,0.9873046875,0.677978515625,0.9775390625,0.535400390625,0.98779296875,0.53515625,0.9775390625,0.68359375,0.984375,0.749755859375,0.9755859375,0.7501220703125,0.1927490234375,0.7567138671875,0.156005859375,0.765625,0.1529541015625,0.755859375,0.194580078125,0.7662353515625,0.6416015625,0.69140625,0.67626953125,0.700927734375,0.63671875,0.7021484375,0.68017578125,0.69091796875,0.740234375,0.70068359375,0.74267578125,0.690673828125,0.8525390625,0.701416015625,0.85302734375,0.691162109375,0.00806427001953125,0.658447265625,0.04736328125,0.6591796875,0.0105819702148438,0.668701171875,0.049835205078125,0.669189453125,0.11151123046875,0.659423828125,0.11322021484375,0.66943359375,0.22265625,0.65869140625,0.224609375,0.6689453125,0.1536865234375,0.8212890625,0.1927490234375,0.8299560546875,0.1531982421875,0.8306884765625,0.19287109375,0.8206787109375,0.2568359375,0.827880859375,0.256103515625,0.818603515625,0.366943359375,0.8199462890625,0.368408203125,0.829345703125,0.153076171875,0.68994140625,0.240478515625,0.70068359375,0.153076171875,0.70068359375,0.24072265625,0.690673828125,0.30908203125,0.70166015625,0.3115234375,0.69140625,0.365478515625,0.701416015625,0.3701171875,0.69091796875,0.007965087890625,
  1154. 0.93463134765625,0.09539794921875,0.938262939453125,0.0084381103515625,0.943572998046875,0.0950927734375,0.928955078125,0.1656494140625,0.9366455078125,0.165771484375,0.92706298828125,0.222900390625,0.93426513671875,0.2236328125,0.92437744140625,0.63671875,0.7864990234375,0.72314453125,0.7872314453125,0.63671875,0.7969970703125,0.72314453125,0.7974853515625,0.7919921875,0.7869873046875,0.79443359375,0.7974853515625,0.849609375,0.78759765625,0.8544921875,0.7987060546875,0.73046875,0.722412109375,0.63671875,0.73193359375,0.63671875,0.721923828125,0.73046875,0.73193359375,0.79736328125,0.722900390625,0.7978515625,0.731689453125,0.8505859375,0.72509765625,0.8505859375,0.73388671875,0.4765625,0.59521484375,0.475830078125,0.604736328125,0.475830078125,0.5947265625,0.5029296875,0.604736328125,0.5537109375,0.59521484375,0.5849609375,0.59521484375,0.63623046875,0.605224609375,0.63525390625,0.59521484375,0.6357421875,0.594970703125,0.1856689453125,0.636962890625,0.1954345703125,0.63720703125,0.185302734375,0.63720703125,0.1951904296875,0.58642578125,0.1856689453125,0.585205078125,0.1951904296875,0.55126953125,0.1856689453125,0.504638671875,0.1951904296875,0.504638671875,0.185302734375,0.47705078125,0.1954345703125,0.47705078125,0.168212890625,0.594970703125,0.16845703125,0.605224609375,0.1678466796875,0.59521484375,0.117431640625,0.59521484375,0.03802490234375,0.604736328125,0.0855712890625,0.59521484375,0.03564453125,0.59521484375,0.00815582275390625,0.604736328125,0.00815582275390625,0.59521484375,0.218017578125,0.636962890625,0.2276611328125,0.63720703125,0.217529296875,0.63720703125,0.2274169921875,0.58642578125,0.2178955078125,0.58056640625,0.2274169921875,0.525390625,0.2178955078125,0.47705078125,0.2276611328125,0.47705078125,0.1678466796875,0.636962890625,0.1685791015625,0.626708984375,0.1680908203125,0.637451171875,0.117431640625,0.62744140625,0.11431884765625,0.636962890625,0.08233642578125,0.62744140625,0.00551605224609375,0.63720703125,0.03564453125,0.62744140625,0.00809478759765625,0.627197265625,0.00812530517578125,
  1155. 0.637451171875,0.6806640625,0.627685546875,0.6513671875,0.63720703125,0.6533203125,0.62744140625,0.755859375,0.636962890625,0.75927734375,0.62744140625,0.81298828125,0.62744140625,0.81298828125,0.63720703125,0.736328125,0.88067626953125,0.63720703125,0.89520263671875,0.63671875,0.8809814453125,0.736328125,0.89495849609375,0.8505859375,0.88031005859375,0.85107421875,0.89471435546875,0.474365234375,0.681640625,0.4599609375,0.7808837890625,0.460205078125,0.681396484375,0.47412109375,0.781005859375,0.45947265625,0.8951416015625,0.473876953125,0.89532470703125,0.443359375,0.4716796875,0.54296875,0.4716796875,0.443359375,0.4755859375,0.54296875,0.4755859375,0.6572265625,0.47216796875,0.6572265625,0.47607421875,0.2498779296875,0.97235107421875,0.38671875,0.990219116210938,0.25,0.991981506347656,0.4638671875,0.971405029296875,0.464599609375,0.991844177246094,0.0082855224609375,0.971359252929688,0.14697265625,0.973587036132813,0.00797271728515625,0.991531372070313,0.2232666015625,0.991943359375,0.2227783203125,0.972076416015625,0.10906982421875,0.4287109375,0.10479736328125,0.32568359375,0.10888671875,0.3251953125,0.10504150390625,0.4287109375,0.109375,0.54052734375,0.10528564453125,0.54052734375,0.57666015625,0.32421875,0.572265625,0.2294921875,0.57666015625,0.22802734375,0.576171875,0.44384765625,0.572265625,0.44384765625,0.81884765625,0.47705078125,0.81494140625,0.35791015625,0.81884765625,0.35791015625,0.814453125,0.4765625,0.81884765625,0.57275390625,0.814453125,0.572265625,0.8828125,0.26123046875,0.87890625,0.35693359375,0.87890625,0.26123046875,0.88330078125,0.35693359375,0.87939453125,0.47607421875,0.88330078125,0.47607421875,0.947265625,0.26220703125,0.943359375,0.38037109375,0.94384765625,0.26220703125,0.94775390625,0.38037109375,0.943359375,0.47607421875,0.94775390625,0.47607421875,0.89306640625,0.681396484375,0.89306640625,0.7808837890625,0.87890625,0.681640625,0.87890625,0.781005859375,0.8935546875,0.89495849609375,0.87939453125,0.895263671875,0.442138671875,0.681640625,0.427734375,0.7808837890625,0.427978515625,
  1156. 0.681396484375,0.44189453125,0.781005859375,0.42724609375,0.8951416015625,0.441650390625,0.89532470703125,0.38330078125,0.36181640625,0.37939453125,0.26220703125,0.383544921875,0.26220703125,0.379150390625,0.36181640625,0.383056640625,0.47607421875,0.37890625,0.47607421875,0.07354736328125,0.697021484375,0.056365966796875,0.91229248046875,0.0567626953125,0.69677734375,0.07171630859375,0.835693359375,0.07293701171875,0.91143798828125,0.61865234375,0.6962890625,0.60498046875,0.8341064453125,0.6044921875,0.696533203125,0.619140625,0.8343505859375,0.60546875,0.91082763671875,0.61962890625,0.91143798828125,0.92529296875,0.81787109375,0.9111328125,0.68017578125,0.92529296875,0.680419921875,0.9111328125,0.8182373046875,0.92529296875,0.8946533203125,0.9111328125,0.895263671875,0.60888671875,0.22802734375,0.60888671875,0.32421875,0.6044921875,0.22802734375,0.6044921875,0.32421875,0.60888671875,0.44384765625,0.6044921875,0.44384765625,0.0126190185546875,0.32568359375,0.0126266479492188,0.44482421875,0.00868988037109375,0.32568359375,0.0083465576171875,0.4443359375,0.012664794921875,0.54052734375,0.0080413818359375,0.5400390625,0.689453125,0.26123046875,0.685546875,0.35693359375,0.68505859375,0.26123046875,0.689453125,0.35693359375,0.685546875,0.47607421875,0.68994140625,0.47607421875,0.1893310546875,0.24609375,0.185546875,0.3642578125,0.1856689453125,0.24609375,0.189697265625,0.3642578125,0.1854248046875,0.4599609375,0.18994140625,0.4599609375,0.75,0.4873046875,0.75927734375,0.48681640625,0.7607421875,0.52001953125,0.76123046875,0.572509765625,0.751953125,0.57275390625,0.1468505859375,0.341796875,0.1370849609375,0.375,0.1370849609375,0.341796875,0.1375732421875,0.427734375,0.1466064453125,0.427734375,0.443603515625,0.36962890625,0.476806640625,0.37841796875,0.443359375,0.3779296875,0.476806640625,0.3701171875,0.52880859375,0.37939453125,0.52880859375,0.3701171875,0.78173828125,0.24560546875,0.7890625,0.2451171875,0.7900390625,0.2783203125,0.79150390625,0.33056640625,0.783203125,0.3310546875,0.88623046875,0.1484375,0.87890625,
  1157. 0.181640625,0.87890625,0.1484375,0.87890625,0.23388671875,0.88671875,0.23388671875,0.78271484375,0.4873046875,0.79150390625,0.48681640625,0.79296875,0.52001953125,0.79345703125,0.572509765625,0.7841796875,0.57275390625,0.443603515625,0.40185546875,0.476806640625,0.41064453125,0.443359375,0.41015625,0.476806640625,0.40234375,0.52880859375,0.41162109375,0.52880859375,0.40234375,0.81396484375,0.24560546875,0.8212890625,0.2451171875,0.822265625,0.2783203125,0.82373046875,0.33056640625,0.8154296875,0.3310546875,0.0109634399414063,0.0732421875,0.00817108154296875,0.14453125,0.00827789306640625,0.0732421875,0.01123046875,0.14453125,0.008056640625,0.2021484375,0.0114593505859375,0.20166015625,0.319580078125,0.17724609375,0.321533203125,0.2822265625,0.314453125,0.17724609375,0.315185546875,0.23876953125,0.316650390625,0.28271484375,0.98193359375,0.22265625,0.9775390625,0.1611328125,0.982421875,0.1611328125,0.9755859375,0.26611328125,0.98046875,0.2666015625,0.351806640625,0.17724609375,0.353759765625,0.2822265625,0.3466796875,0.17724609375,0.347412109375,0.23681640625,0.348876953125,0.28271484375,0.8525390625,0.20458984375,0.8486328125,0.14501953125,0.853515625,0.14501953125,0.8466796875,0.25,0.8515625,0.25,0.00806427001953125,0.26123046875,0.058868408203125,0.265625,0.0081939697265625,0.2666015625,0.058746337890625,0.2607421875,0.11346435546875,0.26416015625,0.11334228515625,0.25927734375,0.0081939697265625,0.22705078125,0.0587158203125,0.23388671875,0.00806427001953125,0.232421875,0.058837890625,0.22900390625,0.11334228515625,0.23388671875,0.113525390625,0.22900390625,0.1693115234375,0.1630859375,0.1700439453125,0.11279296875,0.1751708984375,0.11279296875,0.1744384765625,0.1630859375,0.1697998046875,0.2177734375,0.1746826171875,0.2177734375,0.888671875,0.651611328125,0.88916015625,0.490234375,0.88916015625,0.568115234375,0.87841796875,0.65185546875,0.8798828125,0.5205078125,0.87939453125,0.4931640625,0.87890625,0.591064453125,0.87890625,0.5205078125,0.65185546875,0.65966796875,0.494140625,0.6591796875,0.59521484375,0.659423828125,
  1158. 0.65185546875,0.659912109375,0.57177734375,0.66943359375,0.65185546875,0.669189453125,0.49169921875,0.6689453125,0.51904296875,0.66943359375,0.65185546875,0.66943359375,0.60107421875,0.66943359375,0.97998046875,0.39404296875,0.9755859375,0.29443359375,0.9794921875,0.29443359375,0.9755859375,0.39404296875,0.97607421875,0.508056640625,0.97998046875,0.508056640625,0.351318359375,0.31005859375,0.350830078125,0.44677734375,0.34716796875,0.31005859375,0.346923828125,0.44677734375,0.3466796875,0.5244140625,0.350830078125,0.5244140625,0.5556640625,0.80615234375,0.5400390625,0.696533203125,0.5556640625,0.6962890625,0.5400390625,0.8060302734375,0.541015625,0.91082763671875,0.556640625,0.91143798828125,0.9912109375,0.777099609375,0.97607421875,0.88671875,0.9755859375,0.77685546875,0.99169921875,0.88653564453125,0.9912109375,0.99139404296875,0.9755859375,0.992034912109375,0.91552734375,0.26171875,0.9111328125,0.37109375,0.91162109375,0.26171875,0.91552734375,0.37109375,0.9150390625,0.47607421875,0.9111328125,0.47607421875,0.95703125,0.679931640625,0.943359375,0.7757568359375,0.943359375,0.679443359375,0.95751953125,0.77587890625,0.95751953125,0.89483642578125,0.94384765625,0.895263671875,0.27197265625,0.88037109375,0.15380859375,0.89520263671875,0.153076171875,0.8807373046875,0.2724609375,0.8948974609375,0.3681640625,0.89471435546875,0.367919921875,0.88006591796875,0.58740234375,0.697021484375,0.57275390625,0.8154296875,0.57275390625,0.696533203125,0.5869140625,0.815673828125,0.5869140625,0.911376953125,0.572265625,0.9112548828125,0.4755859375,0.504150390625,0.5751953125,0.50390625,0.4755859375,0.50830078125,0.5751953125,0.508056640625,0.689453125,0.5078125,0.689453125,0.503662109375,0.415283203125,0.4306640625,0.41162109375,0.2939453125,0.415771484375,0.2939453125,0.41162109375,0.4306640625,0.4111328125,0.50830078125,0.415283203125,0.50830078125,0.4755859375,0.536376953125,0.61376953125,0.5361328125,0.4755859375,0.54052734375,0.61376953125,0.5400390625,0.69091796875,0.5400390625,0.69091796875,0.535888671875,0.85107421875,0.27783203125,
  1159. 0.8466796875,0.41552734375,0.84716796875,0.27783203125,0.8505859375,0.41552734375,0.8505859375,0.4921875,0.8466796875,0.4921875,0.5078125,0.696044921875,0.4921875,0.7918701171875,0.49169921875,0.695556640625,0.5087890625,0.7919921875,0.5087890625,0.91094970703125,0.492431640625,0.911376953125,0.024688720703125,0.7919921875,0.00951385498046875,0.696044921875,0.025787353515625,0.695556640625,0.00806427001953125,0.7919921875,0.008056640625,0.91094970703125,0.0242919921875,0.91131591796875,0.63671875,0.8507080078125,0.755859375,0.8504638671875,0.6376953125,0.8629150390625,0.75634765625,0.86279296875,0.85205078125,0.862548828125,0.8515625,0.8502197265625,0.15380859375,0.85009765625,0.27197265625,0.8626708984375,0.153076171875,0.8624267578125,0.2724609375,0.8504638671875,0.3681640625,0.8507080078125,0.367919921875,0.863037109375,0.2086181640625,0.1328125,0.2021484375,0.16552734375,0.2025146484375,0.13232421875,0.2081298828125,0.166015625,0.207275390625,0.2177734375,0.2015380859375,0.2177734375,0.258544921875,0.26220703125,0.250244140625,0.22900390625,0.258544921875,0.22900390625,0.250244140625,0.26220703125,0.25,0.31494140625,0.2587890625,0.31494140625,0.5478515625,0.29443359375,0.5400390625,0.26123046875,0.54736328125,0.26123046875,0.54052734375,0.294921875,0.54150390625,0.34716796875,0.54931640625,0.3466796875,0.5478515625,0.181640625,0.54052734375,0.1484375,0.54736328125,0.1484375,0.54052734375,0.181640625,0.5400390625,0.23388671875,0.54833984375,0.23388671875,0.259521484375,0.34228515625,0.250732421875,0.375,0.251220703125,0.341796875,0.25927734375,0.37548828125,0.2587890625,0.427734375,0.25,0.427734375,0.482666015625,0.1328125,0.476318359375,0.16552734375,0.476806640625,0.13232421875,0.482421875,0.166015625,0.4814453125,0.2177734375,0.4755859375,0.2177734375,0.290771484375,0.22900390625,0.291015625,0.26220703125,0.28271484375,0.22900390625,0.282470703125,0.26220703125,0.2822265625,0.31494140625,0.291015625,0.31494140625,0.64404296875,0.2451171875,0.64501953125,0.2783203125,0.63671875,0.2451171875,0.63720703125,0.2783203125,
  1160. 0.63818359375,0.3310546875,0.64599609375,0.33056640625,0.38671875,0.181640625,0.379150390625,0.1484375,0.386474609375,0.1484375,0.379150390625,0.181640625,0.37890625,0.23388671875,0.386962890625,0.23388671875,0.291748046875,0.34228515625,0.282958984375,0.375,0.283447265625,0.341796875,0.29150390625,0.37548828125,0.291015625,0.427734375,0.2822265625,0.427734375,0.5087890625,0.15478515625,0.5126953125,0.2177734375,0.509765625,0.21826171875,0.51171875,0.15478515625,0.5107421875,0.09326171875,0.5078125,0.09326171875,0.54638671875,0.561767578125,0.47607421875,0.57275390625,0.4755859375,0.56201171875,0.54638671875,0.572509765625,0.603515625,0.572265625,0.603515625,0.5615234375,0.16455078125,0.4453125,0.1533203125,0.515625,0.1536865234375,0.44482421875,0.1641845703125,0.515869140625,0.1640625,0.57275390625,0.153076171875,0.57275390625,0.91748046875,0.12890625,0.9169921875,0.1904296875,0.91162109375,0.12890625,0.9111328125,0.1904296875,0.91162109375,0.23388671875,0.91748046875,0.23388671875,0.7900390625,0.35498046875,0.7841796875,0.4013671875,0.7822265625,0.35546875,0.791015625,0.4013671875,0.7890625,0.4599609375,0.78271484375,0.4599609375,0.4169921875,0.16162109375,0.417236328125,0.2080078125,0.4111328125,0.16162109375,0.412109375,0.2080078125,0.413818359375,0.2666015625,0.418212890625,0.26611328125,0.62109375,0.561767578125,0.6669921875,0.565673828125,0.62060546875,0.56982421875,0.6669921875,0.57275390625,0.7255859375,0.571044921875,0.7255859375,0.564697265625,0.1444091796875,0.25,0.138916015625,0.20947265625,0.14404296875,0.20947265625,0.1392822265625,0.25,0.1370849609375,0.314453125,0.1419677734375,0.31494140625,0.515625,0.24169921875,0.5146484375,0.30126953125,0.5087890625,0.24169921875,0.5078125,0.30126953125,0.5087890625,0.34716796875,0.51513671875,0.34716796875,0.6416015625,0.11279296875,0.63720703125,0.16357421875,0.63671875,0.11279296875,0.64208984375,0.1630859375,0.6416015625,0.2177734375,0.63720703125,0.2177734375,0.9208984375,0.65478515625,0.92138671875,0.49365234375,0.92138671875,0.521240234375,0.912109375,0.52978515625,
  1161. 0.91162109375,0.6533203125,0.91162109375,0.49365234375,0.91162109375,0.6025390625,0.9111328125,0.5205078125,0.91162109375,0.5673828125,0.95361328125,0.65478515625,0.95361328125,0.49365234375,0.95361328125,0.52392578125,0.9443359375,0.53369140625,0.94384765625,0.6533203125,0.94384765625,0.49365234375,0.94384765625,0.6025390625,0.94384765625,0.54150390625,0.44384765625,0.48974609375,0.44384765625,0.5673828125,0.443359375,0.5205078125,0.443359375,0.651611328125,0.44384765625,0.6025390625,0.45361328125,0.490234375,0.453125,0.594970703125,0.45361328125,0.6533203125,0.45361328125,0.59619140625,0.74951171875,0.66943359375,0.8291015625,0.66943359375,0.77880859375,0.66943359375,0.82958984375,0.669189453125,0.82958984375,0.659912109375,0.66943359375,0.66943359375,0.6689453125,0.668701171875,0.74853515625,0.659912109375,0.8291015625,0.65966796875,0.6689453125,0.65966796875,0.77734375,0.6591796875,0.69677734375,0.65966796875,0.37890625,0.58154296875,0.37890625,0.6533203125,0.37890625,0.6025390625,0.37890625,0.520751953125,0.379150390625,0.490234375,0.388427734375,0.573486328125,0.388427734375,0.6533203125,0.388671875,0.49169921875,0.388671875,0.653076171875,0.388916015625,0.593505859375,0.84619140625,0.615966796875,0.85595703125,0.66943359375,0.8466796875,0.66943359375,0.8466796875,0.536865234375,0.84716796875,0.505859375,0.85595703125,0.59033203125,0.8564453125,0.669189453125,0.85595703125,0.507568359375,0.85693359375,0.61572265625,0.8564453125,0.506591796875
  1162. }
  1163. UVIndex: *2178 {
  1164. a: 0,1,2,0,3,1,4,5,6,5,7,6,8,9,10,10,11,8,12,13,14,13,15,14,16,17,18,17,16,19,20,21,22,20,22,23,24,25,26,25,24,27,28,29,30,28,31,29,32,33,34,32,35,33,36,37,38,37,36,39,40,41,42,43,41,40,44,45,46,47,45,44,48,49,50,51,49,48,52,53,54,52,55,53,56,57,58,59,57,56,60,61,62,60,63,61,64,65,66,67,65,64,68,69,70,71,69,68,72,73,74,74,73,75,76,77,78,77,76,79,80,81,82,82,81,83,84,85,86,85,84,87,88,89,90,89,88,91,92,93,94,94,93,95,96,97,98,97,96,99,100,101,102,100,102,103,104,105,106,106,105,107,108,109,110,109,108,111,112,113,114,114,115,112,116,117,118,117,116,119,120,121,122,121,120,123,124,125,126,125,124,127,128,129,130,129,128,131,132,133,134,133,132,135,136,137,138,139,138,137,140,141,142,142,141,143,144,145,146,146,145,147,148,149,150,150,149,151,152,153,154,153,152,155,156,157,158,158,157,159,160,161,162,162,161,163,164,165,166,165,164,167,168,169,170,169,168,171,172,173,174,172,174,175,176,177,178,178,179,176,180,181,182,180,182,183,184,185,186,185,184,187,188,189,190,189,188,191,192,193,194,193,192,195,196,197,198,197,196,199,200,201,202,203,202,201,204,205,206,205,204,207,208,209,210,209,208,211,212,213,214,212,214,215,216,217,218,217,216,219,220,221,222,221,220,223,224,225,226,225,224,227,228,229,230,228,230,231,232,233,234,233,232,235,236,237,238,236,238,239,240,241,242,241,240,243,244,245,246,246,245,247,248,249,250,249,248,251,252,253,254,253,252,255,256,257,258,257,259,258,260,261,262,262,261,263,264,265,266,265,267,266,268,269,270,270,269,271,272,273,274,272,274,275,276,277,278,277,276,279,280,281,282,282,281,283,284,285,286,285,284,287,288,289,290,289,288,291,292,293,294,293,292,295,296,297,298,296,298,299,300,301,302,302,301,303,304,305,306,305,304,307,308,309,310,308,310,311,312,313,314,313,312,315,316,317,318,318,317,319,320,321,322,321,320,323,324,325,326,326,325,327,328,329,330,329,328,331,332,333,334,333,335,334,336,337,338,337,336,339,340,341,342,341,340,343,344,345,346,345,344,347,348,349,350,350,349,351,352,353,354,353,352,355,356,357,358,357,359,358,360,361,362,362,361,363,364,365,
  1165. 366,365,364,367,368,369,370,369,368,371,372,373,374,374,373,375,376,377,378,377,376,379,380,381,382,381,383,382,384,385,386,386,385,387,388,389,390,390,389,391,392,393,394,393,392,395,396,397,398,398,397,399,400,401,402,401,400,403,404,405,406,405,407,406,408,409,410,409,408,411,412,413,414,413,412,415,416,417,418,417,419,418,420,421,422,422,421,423,424,425,426,425,424,427,428,429,430,430,429,431,432,433,434,433,432,435,436,437,438,437,436,439,440,441,442,441,440,443,444,445,446,444,446,447,448,449,450,449,448,451,452,453,454,17,454,453,454,17,19,455,456,457,458,457,456,457,458,459,458,460,459,460,458,461,460,461,462,463,464,465,464,466,465,467,465,466,466,468,467,468,466,469,468,469,470,471,472,473,473,474,471,474,473,475,476,477,478,477,479,478,480,478,479,481,482,483,483,484,481,484,483,485,486,487,488,488,489,486,489,488,490,491,492,493,493,494,491,494,493,495,496,497,498,497,499,498,498,499,500,501,502,503,504,501,503,505,504,503,506,504,505,507,508,509,509,510,507,510,511,507,511,510,512,513,511,512,513,512,514,515,516,517,518,515,517,515,518,519,520,519,518,519,520,521,522,523,524,523,522,525,526,525,522,525,526,527,528,529,530,529,528,531,531,532,529,531,533,532,533,531,534,535,536,537,536,535,538,538,539,536,539,538,540,540,541,539,541,540,542,543,544,545,544,543,546,547,546,543,547,548,546,549,546,548,550,551,552,551,550,553,550,554,553,555,553,554,556,557,558,557,556,559,37,559,556,559,37,39,560,561,562,560,563,561,563,564,561,564,563,565,565,566,564,565,567,566,568,569,570,571,570,569,572,571,569,571,572,573,572,574,573,575,573,574,576,577,578,577,576,579,580,577,579,580,579,581,582,580,581,580,582,583,584,585,586,585,584,587,587,588,585,588,587,589,589,590,588,590,589,591,592,593,594,593,592,595,595,596,593,596,595,597,597,598,596,598,597,599,600,601,602,603,602,601,601,604,603,605,603,604,606,605,604,605,606,607,608,609,610,609,608,611,612,611,608,611,612,613,614,613,612,613,614,615,616,617,618,616,619,617,619,616,620,621,619,620,622,619,621,623,622,621,624,622,623,625,626,627,625,628,626,628,625,629,
  1166. 629,630,628,631,630,629,630,631,632,633,632,631,634,632,633,635,636,637,637,636,638,639,638,636,638,639,640,639,641,640,642,641,639,641,642,643,644,645,646,644,647,645,647,644,648,648,649,647,648,650,649,651,649,650,652,653,654,652,655,653,655,652,656,656,657,655,658,657,656,657,658,659,660,659,658,661,660,658,662,663,664,662,665,663,665,662,666,667,665,666,665,667,668,669,670,671,670,669,672,673,672,669,672,673,674,675,676,677,676,675,678,678,679,676,679,678,680,681,682,683,684,683,682,682,685,684,686,684,685,687,688,689,688,687,690,688,690,691,692,693,694,695,694,693,695,693,696,697,698,699,698,697,700,701,700,697,700,701,702,703,704,705,706,704,703,704,706,707,708,709,710,709,708,711,712,711,708,711,712,713,714,715,716,715,714,717,717,718,715,718,717,719,720,721,722,721,720,723,723,724,721,724,723,725,726,727,728,729,728,727,727,730,729,731,729,730,732,733,734,733,732,735,735,736,733,736,735,737,738,739,740,739,738,741,742,741,738,741,742,743,744,745,746,745,744,747,745,747,748,749,750,751,750,749,752,752,753,750,753,752,754,755,756,757,756,755,758,759,758,755,758,759,760,761,762,763,764,763,762,762,765,764,766,764,765,767,768,769,770,769,768,768,771,770,772,770,771,773,774,775,774,773,776,776,777,774,777,776,778,779,780,781,780,779,782,782,783,780,783,782,784,785,786,787,788,785,787,789,785,788,790,791,792,790,793,791,793,790,794,795,796,797,796,795,798,798,799,796,799,798,800,801,802,803,804,801,803,805,801,804,806,807,808,806,809,807,809,806,810,811,812,813,813,814,811,811,814,815,816,817,818,817,816,819,819,820,817,820,819,821,822,823,824,824,825,822,822,825,826,827,828,829,828,827,830,830,831,828,831,830,832,833,834,835,835,834,836,834,837,836,838,839,840,839,838,841,841,838,842,843,844,845,845,844,846,844,847,846,848,849,850,849,848,851,851,848,852,853,854,855,854,853,856,856,857,854,857,856,858,859,860,861,860,859,862,862,863,860,863,862,864,865,866,867,867,868,865,868,869,865,869,868,870,871,872,873,874,872,871,872,874,875,872,875,876,877,875,874,878,876,875,875,877,878,879,880,881,880,879,882,882,883,880,
  1167. 883,882,884,883,885,880,883,886,885,887,883,884,883,887,888,889,890,891,890,889,892,889,893,892,893,889,894,895,896,897,898,897,896,896,899,898,899,896,900,901,902,903,902,901,904,901,905,904,905,901,906,907,908,909,908,907,910,910,911,908,912,908,911,913,914,915,914,913,916,916,917,914,918,914,917,919,920,921,920,919,922,923,920,922,920,923,924,925,926,927,926,925,928,925,929,928,929,925,930,931,932,933,932,931,934,935,932,934,932,935,936,937,938,939,940,939,938,938,941,940,941,938,942,943,944,945,944,943,946,943,947,946,947,943,948,949,950,951,952,951,950,950,953,952,953,950,954,955,956,957,956,955,958,959,956,958,956,959,960,961,962,963,962,961,964,964,965,962,966,962,965,967,968,969,968,967,970,967,971,970,971,967,972,973,974,975,976,975,974,974,977,976,977,974,978,979,980,981,980,979,982,982,983,980,984,980,983,985,986,987,986,985,988,989,986,988,990,986,989,991,992,993,994,992,991,991,995,994,995,991,996,997,998,999,1000,998,997,997,1001,1000,1001,997,1002,1003,1004,1005,1004,1003,1006,1003,1007,1006,1007,1003,1008,1009,1010,1011,1010,1009,1012,1013,1010,1012,1014,1010,1013,1015,1016,1017,1016,1015,1018,1018,1019,1016,1016,1019,1020,1021,1022,1023,1023,1022,1024,1022,1025,1024,1025,1022,1026,1027,1028,1029,1029,1028,1030,1028,1031,1030,1031,1028,1032,1033,1034,1035,1034,1033,1036,1033,1037,1036,1037,1033,1038,1039,1040,1041,1040,1039,1042,1042,1043,1040,1040,1043,1044,1045,1046,1047,1048,1046,1045,1045,1049,1048,1049,1045,1050,1051,1052,1053,1054,1052,1051,1051,1055,1054,1055,1051,1056,1057,1058,1059,1058,1057,1060,1061,1058,1060,1058,1061,1062,1063,1064,1065,1065,1064,1066,1064,1067,1066,1067,1064,1068,1069,1070,1071,1070,1069,1072,1072,1073,1070,1070,1073,1074,1075,1076,1077,1077,1076,1078,1076,1079,1078,1079,1076,1080,1081,1082,1083,1082,1084,1083,1082,1085,1084,1085,1082,1086,1087,1088,1089,1088,1087,1090,1087,1091,1090,1091,1087,1092,1093,1094,1095,1095,1094,1096,1094,1097,1096,1097,1094,1098,1099,1100,1101,1100,1099,1102,1102,1103,1100,1100,1103,1104,1105,1106,1107,1108,1106,1105,1108,1105,1109,1106,1108,
  1168. 1110,1108,1109,1111,1110,1108,1112,1108,1111,1113,1108,1113,1112,1114,1115,1116,1117,1115,1114,1117,1114,1118,1115,1117,1119,1117,1118,1120,1121,1119,1117,1117,1120,1121,1122,1123,1124,1123,1122,1125,1125,1126,1123,1127,1125,1122,1125,1127,1128,1129,1125,1128,1128,1127,1130,1130,1129,1128,1131,1132,1133,1132,1131,1134,1131,1135,1134,1136,1137,1131,1135,1131,1138,1131,1137,1138,1138,1139,1135,1140,1138,1137,1141,1139,1138,1142,1138,1140,1138,1142,1141,1143,1144,1145,1143,1146,1147,1148,1144,1143,1147,1148,1143,1144,1148,1149,1150,1148,1147,1148,1151,1149,1148,1150,1152,1151,1148,1152,1153,1154,1155,1156,1157,1153,1154,1153,1158,1157,1158,1153,1154,1158,1159,1158,1157,1160,1161,1159,1158,1162,1158,1160,1158,1162,1161
  1169. }
  1170. }
  1171. LayerElementSmoothing: 0 {
  1172. Version: 102
  1173. Name: ""
  1174. MappingInformationType: "ByEdge"
  1175. ReferenceInformationType: "Direct"
  1176. Smoothing: *1089 {
  1177. 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,
  1178. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1179. }
  1180. }
  1181. LayerElementMaterial: 0 {
  1182. Version: 101
  1183. Name: ""
  1184. MappingInformationType: "AllSame"
  1185. ReferenceInformationType: "IndexToDirect"
  1186. Materials: *1 {
  1187. a: 0
  1188. }
  1189. }
  1190. Layer: 0 {
  1191. Version: 100
  1192. LayerElement: {
  1193. Type: "LayerElementNormal"
  1194. TypedIndex: 0
  1195. }
  1196. LayerElement: {
  1197. Type: "LayerElementBinormal"
  1198. TypedIndex: 0
  1199. }
  1200. LayerElement: {
  1201. Type: "LayerElementTangent"
  1202. TypedIndex: 0
  1203. }
  1204. LayerElement: {
  1205. Type: "LayerElementMaterial"
  1206. TypedIndex: 0
  1207. }
  1208. LayerElement: {
  1209. Type: "LayerElementSmoothing"
  1210. TypedIndex: 0
  1211. }
  1212. LayerElement: {
  1213. Type: "LayerElementUV"
  1214. TypedIndex: 0
  1215. }
  1216. }
  1217. Layer: 1 {
  1218. Version: 100
  1219. LayerElement: {
  1220. Type: "LayerElementBinormal"
  1221. TypedIndex: 1
  1222. }
  1223. LayerElement: {
  1224. Type: "LayerElementTangent"
  1225. TypedIndex: 1
  1226. }
  1227. LayerElement: {
  1228. Type: "LayerElementUV"
  1229. TypedIndex: 1
  1230. }
  1231. }
  1232. }
  1233. Geometry: 2267733758112, "Geometry::", "Mesh" {
  1234. Vertices: *765 {
  1235. a: 146.206115722656,181.771194458008,63.3789215087891,17.6552734375,184.963073730469,66.059326171875,18.13134765625,184.963073730469,53.5390625,143.056716918945,198.751159667969,55.1260986328125,143.958679199219,198.963729858398,67.6090393066406,1.23115968704224,91.651123046875,-56.459716796875,-2.35332131385803,96.0700836181641,60.9493560791016,2.03345775604248,99.7258377075195,-56.4648361206055,13.99609375,91.9721069335938,58.167724609375,19.0979747772217,94.8586959838867,-59.0036697387695,13.99609375,99.5937194824219,58.1677551269531,139.036193847656,95.5762786865234,60.7289276123047,131.184799194336,102.503387451172,-57.9931335449219,124.85595703125,99.7043914794922,58.1677093505859,135.057418823242,87.6233673095703,-56.3921356201172,-128.702529907227,85.1544342041016,60.0759353637695,-133.64453125,87.9364395141602,-56.4485702514648,-123.058120727539,87.1690216064453,-56.4561614990234,-123.5810546875,99.5459747314453,58.1677398681641,-127.665321350098,103.285011291504,-58.7311630249023,-133.4296875,99.5459747314453,58.1677398681641,124.448066711426,87.8908081054688,-56.3208618164063,124.85595703125,88.5976409912109,58.1677093505859,2.7971613407135,192.861968994141,57.1313781738281,6.38164281845093,197.28092956543,-60.2777252197266,1.99486100673676,200.93669128418,57.1364440917969,-15.0696563720703,196.069549560547,59.6753234863281,-9.9677734375,200.804565429688,-57.49609375,-9.9677734375,193.182952880859,-57.4960632324219,-135.007873535156,196.787124633789,-60.0572967529297,-127.156471252441,203.714248657227,58.664794921875,-120.82763671875,200.915237426758,-57.4960784912109,-131.029098510742,188.834213256836,57.0637664794922,127.086441040039,188.3798828125,57.1277923583984,132.730850219727,186.365264892578,-59.4043273925781,137.6728515625,189.14729309082,57.1202545166016,127.609375,200.756820678711,-57.4961090087891,131.693634033203,204.495864868164,59.40283203125,137.4580078125,200.756820678711,-57.4961090087891,-120.419746398926,189.101654052734,56.9925231933594,-120.82763671875,189.808486938477,-57.4960784912109,
  1236. -136.203353881836,98.1445922851563,82.9807739257813,-133.49609375,121.855224609375,78.3466796875,-138.981521606445,121.873794555664,78.3801345825195,-133.425964355469,108.949363708496,-85.8132095336914,-138.996337890625,108.977470397949,-85.7582473754883,-136.190979003906,132.230178833008,-88.8943939208984,-136.020034790039,126.053314208984,84.9028625488281,-134.045501708984,144.8134765625,79.7935180664063,-137.897430419922,144.855377197266,79.9356994628906,-138.611328125,128.032104492188,-86.9267578125,-136.728454589844,145.145309448242,-91.4384307861328,-134.94758605957,127.980865478516,-86.9737243652344,134.646514892578,120.812324523926,-85.7983322143555,136.405807495117,139.928024291992,-87.9237823486328,139.026626586914,121.16886138916,-85.8111190795898,135.205291748047,126.960578918457,85.8762817382813,137.905242919922,107.813705444336,88.9878311157227,139.270874023438,127.065498352051,85.8207397460938,124.180465698242,150.916122436523,73.4305877685547,131.988388061523,189.917984008789,22.5758209228516,135.755859375,153.207458496094,72.1379852294922,133.030853271484,199.527954101563,31.5396728515625,-133.394577026367,150.916168212891,73.4305114746094,-125.586334228516,189.917999267578,22.5757751464844,-121.819107055664,153.207458496094,72.1378784179688,-124.543899536133,199.528030395508,31.5396270751953,-129.619079589844,74.4849090576172,72.1127166748047,-132.35173034668,77.8108901977539,-70.7090682983398,-125.562858581543,78.5986022949219,-70.5467834472656,-129.669082641602,88.3944320678711,-72.2659072875977,-132.67236328125,85.2016143798828,70.4028472900391,-125.8046875,84.7225646972656,70.4028625488281,-125.98388671875,29.7196998596191,-71.5393371582031,-129.327880859375,23.9955902099609,70.7132415771484,-132.55078125,29.7196998596191,-71.5393371582031,-126.347213745117,36.9090423583984,69.1717376708984,-129.359130859375,41.6500205993652,-73.3706665039063,-133.441146850586,36.5641937255859,68.5394134521484,129.65119934082,25.7626876831055,71.6821212768555,126.913299560547,29.526481628418,-71.5202102661133,
  1237. 133.705352783203,30.3222160339355,-71.3453826904297,129.571899414063,41.8433074951172,-73.4442901611328,126.59814453125,38.2260208129883,69.5974731445313,133.46630859375,37.7469711303711,69.5975494384766,122.744331359863,79.7855072021484,72.5998382568359,128.933120727539,73.7214508056641,-76.0056610107422,135.200622558594,82.0996017456055,71.7900314331055,129.726699829102,87.6666946411133,-72.0775680541992,142.111267089844,185.586532592773,-69.7579498291016,141.445541381836,198.781555175781,-55.5007476806641,142.047988891602,185.616363525391,-57.0704650878906,141.292083740234,198.549209594727,-67.8307342529297,-143.261596679688,185.844482421875,-57.4122924804688,-144.340316772461,199.366271972656,-57.3193359375,-144.706207275391,185.825714111328,-70.0079650878906,-145.247100830078,199.301513671875,-69.9079132080078,7.3447265625,184.963073730469,-67.5068359375,6.86865234375,184.963073730469,-54.986572265625,-146.182922363281,99.5181427001953,-56.9547576904297,-146.194290161133,99.7725296020508,-69.7609176635742,-146.189926147461,85.1190948486328,-69.7344207763672,-146.09326171875,85.0095443725586,-57.1723403930664,141.506988525391,85.5189437866211,-57.3232803344727,141.592300415039,85.4081192016602,-69.9713973999023,141.480422973633,98.7169876098633,-57.428092956543,141.522369384766,98.643424987793,-69.8271560668945,-142.141952514648,185.616973876953,69.2963562011719,-141.989013671875,199.163848876953,69.2354431152344,-142.012680053711,199.190841674805,56.6496429443359,-142.060928344727,185.663604736328,56.6727600097656,145.898132324219,85.189323425293,70.3871917724609,145.722229003906,99.7208938598633,58.0763549804688,145.967651367188,100.102813720703,70.5850524902344,145.92463684082,85.0636291503906,57.7544174194336,-141.360504150391,85.7258758544922,68.7587738037109,-141.410110473633,98.5439147949219,56.3728942871094,-141.492523193359,85.57568359375,56.1421432495117,-141.459625244141,98.640510559082,68.8913040161133,-121.981010437012,-1.52806854248047,81.488655090332,-135.480453491211,-1.78302764892578,67.9045944213867,
  1238. -121.825256347656,-1.58651733398438,68.0494689941406,-135.56477355957,-1.26171875,81.2198486328125,-133.859100341797,213.082641601563,68.80517578125,-121.432807922363,212.54426574707,81.9630737304688,-121.67748260498,212.560791015625,68.4875335693359,-134.480804443359,212.557281494141,81.5827178955078,-122.236534118652,212.571044921875,-69.19580078125,-135.149368286133,212.927459716797,-82.2301330566406,-135.369537353516,212.835479736328,-69.1414489746094,-121.796203613281,212.531326293945,-82.4350433349609,-121.858070373535,-1.52536010742188,-82.0525207519531,-134.87727355957,-1.55995941162109,-68.9417953491211,-134.971099853516,-1.38941955566406,-81.6884918212891,-121.214286804199,-1.43790435791016,-69.1550674438477,122.721527099609,212.572174072266,-69.6346130371094,136.005737304688,212.866516113281,-83.1397705078125,122.579032897949,212.819122314453,-82.7482604980469,135.993515014648,212.444519042969,-69.3679351806641,135.979293823242,-1.32154846191406,-69.0554351806641,122.804298400879,-1.61003112792969,-82.2393646240234,135.531204223633,-1.17268371582031,-81.6658477783203,122.771591186523,-1.40248107910156,-68.6927642822266,135.522720336914,-1.21651458740234,68.3320693969727,121.95726776123,-1.52400207519531,81.0803680419922,122.70288848877,-1.58550262451172,68.1387405395508,135.569091796875,-1.05648803710938,81.4737854003906,123.18132019043,212.812240600586,81.1268615722656,136.161758422852,212.482177734375,68.2921600341797,122.714942932129,212.581558227539,68.8412017822266,136.257308959961,212.696441650391,81.4688873291016,143.405303955078,204.947784423828,48.8618469238281,143.675445556641,205.019256591797,68.0555572509766,143.429611206055,199.533096313477,48.8564605712891,143.688522338867,199.556732177734,68.0428771972656,-143.010711669922,205.017654418945,49.1670684814453,-142.603942871094,199.516555786133,68.3167266845703,-142.86767578125,204.967498779297,68.2874908447266,-142.992980957031,199.533843994141,49.1662750244141,142.251953125,204.967483520508,21.2876129150391,142.608779907227,204.986541748047,47.7530212402344,
  1239. 142.359329223633,199.432281494141,21.2436828613281,142.52490234375,199.54167175293,47.7565765380859,-144.616348266602,199.844421386719,23.1683959960938,-145.333633422852,199.649658203125,48.669677734375,-144.678009033203,204.848419189453,23.1617126464844,-145.31462097168,204.850784301758,48.6389312744141,142.251953125,204.967483520508,-67.9700775146484,142.618743896484,205.012512207031,-47.201416015625,142.302490234375,199.477935791016,-68.0140075683594,142.5146484375,199.548461914063,-47.1986694335938,-145.765197753906,199.514999389648,-47.4689483642578,-144.929809570313,199.582580566406,-68.2091674804688,-145.754333496094,204.922485351563,-47.4952392578125,-144.842651367188,205.039581298828,-68.2463836669922,143.125961303711,199.274337768555,0.754440307617188,142.3330078125,199.541961669922,-18.7348327636719,142.363433837891,205.006988525391,-18.7424163818359,143.09001159668,205.226303100586,0.756393432617188,145.473358154297,204.999618530273,1.65385437011719,144.981079101563,205.11018371582,20.1776275634766,145.479537963867,199.477264404297,1.64828491210938,144.9365234375,199.529815673828,20.0950012207031,144.190811157227,199.485076904297,-20.1692810058594,144.039855957031,204.967315673828,-45.9850769042969,144.290802001953,204.993728637695,-20.1930389404297,143.913879394531,199.536224365234,-45.9604187011719,-144.973419189453,204.956039428711,0.0307464599609375,-144.993759155273,199.45263671875,0.0521240234375,-144.468276977539,199.524368286133,-19.4332733154297,-143.0625,204.987579345703,21.3161926269531,-143.5107421875,204.967483520508,3.10877990722656,-143.56950378418,199.520462036133,3.02949523925781,-143.043365478516,199.527816772461,21.3288421630859,-144.583694458008,205.00407409668,-19.4723663330078,-141.238784790039,199.531295776367,-20.5232086181641,-141.897933959961,204.995269775391,-46.0337829589844,-141.898056030273,199.535736083984,-46.0334320068359,-141.285751342773,204.974029541016,-20.5268249511719,-143.718246459961,105.051170349121,-48.3579483032227,-143.988494873047,105.122634887695,-67.5517425537109,
  1240. -143.74250793457,99.6364898681641,-48.3528289794922,-144.001541137695,99.6601181030273,-67.5390396118164,142.5546875,105.07088470459,-67.7840347290039,142.697708129883,105.121063232422,-48.6632385253906,142.290985107422,99.6199569702148,-67.8132095336914,142.679992675781,99.6372375488281,-48.6625061035156,-142.6982421875,105.07088470459,-24.9046401977539,-142.784393310547,105.098136901855,-46.9497146606445,-142.733612060547,99.5958786010742,-24.8960647583008,-142.688232421875,99.6457824707031,-46.9358825683594,145.090560913086,99.7980651855469,-43.9879455566406,144.283264160156,99.860107421875,-22.8416748046875,145.117980957031,104.894859313965,-43.9670181274414,144.136260986328,104.976028442383,-22.8362884521484,-142.56494140625,105.070892333984,67.9775619506836,-142.914749145508,105.091613769531,48.9557495117188,-142.638305664063,99.5795364379883,68.066780090332,-142.824066162109,99.6470184326172,48.9452896118164,144.654830932617,98.9749450683594,67.7286605834961,145.496353149414,99.048095703125,48.6472702026367,144.584976196289,104.336059570313,67.68408203125,145.49821472168,104.604530334473,48.6640319824219,-142.674728393555,105.109375,17.8012084960938,-143.443222045898,99.3805770874023,1.35225677490234,-142.64599609375,99.6453628540039,17.7903823852539,-143.404296875,105.3291015625,1.35296630859375,-145.844635009766,105.107765197754,0.391212463378906,-145.034774780273,105.206214904785,-21.7520370483398,-145.105972290039,99.6279602050781,-21.7118301391602,-145.949844360352,99.5813598632813,0.3709716796875,-144.70719909668,99.5793151855469,23.6381530761719,-143.969421386719,99.6527328491211,48.1312484741211,-144.002334594727,105.088165283203,48.1439514160156,-144.700225830078,105.073745727539,23.6623687744141,144.680313110352,105.058624267578,1.96768188476563,144.701141357422,99.5576705932617,1.94207000732422,144.186996459961,99.6278533935547,18.3784637451172,142.820510864258,105.090789794922,-20.4034729003906,143.1259765625,105.07088470459,1.38307952880859,143.193450927734,99.6134185791016,1.45960998535156,142.80583190918,99.630989074707,-20.4179611206055,
  1241. 144.28938293457,105.105041503906,18.41748046875,141.786956787109,105.091125488281,42.827018737793,140.672821044922,99.6347427368164,18.5918960571289,140.720901489258,105.077415466309,18.5943832397461,141.789916992188,99.6357574462891,42.8122100830078,135.264526367188,155.543853759766,-81.3938293457031,135.700500488281,189.0732421875,-26.9856719970703,130.40397644043,145.764907836914,-71.7942352294922,129.316268920898,199.229156494141,-36.9971160888672,-122.310104370117,155.543884277344,-81.393798828125,-121.874610900879,189.0732421875,-26.985595703125,-127.170669555664,145.764862060547,-71.7942199707031,-128.258636474609,199.229156494141,-36.9972229003906
  1242. }
  1243. PolygonVertexIndex: *1086 {
  1244. a: 0,1,-3,0,3,-5,5,6,-8,8,9,-11,10,6,-9,7,9,-6,11,12,-14,12,11,-15,15,16,-18,18,19,-21,16,19,-18,18,20,-16,21,12,-15,11,13,-23,23,24,-26,26,27,-29,28,27,-25,25,26,-24,29,30,-32,30,29,-33,33,34,-36,36,37,-39,37,33,-36,34,36,-39,30,32,-40,40,29,-32,41,42,-44,44,41,-46,42,46,-44,45,46,-45,47,48,-50,50,51,-53,52,47,-51,48,51,-50,53,54,-56,56,57,-59,57,53,-56,58,54,-57,59,60,-62,62,61,-61,61,62,-60,60,59,-63,63,64,-66,66,65,-65,65,66,-64,64,63,-67,67,68,-70,70,71,-73,72,71,-68,68,70,-70,73,74,-76,76,77,-79,74,76,-79,75,77,-74,79,80,-82,82,83,-85,79,84,-84,82,81,-81,85,86,-88,87,86,-89,87,88,-86,86,85,-89,89,90,-92,89,92,-91,93,94,-96,94,96,-96,93,97,-99,97,93,-96,90,96,-95,96,90,-93,99,100,-102,101,102,-100,103,104,-106,104,106,-106,104,100,-107,100,104,-102,103,101,-105,101,103,-103,99,103,-106,103,99,-103,105,100,-100,100,105,-107,91,97,-90,97,91,-99,107,108,-110,107,109,-111,111,112,-114,111,114,-113,115,116,-118,115,118,-117,116,112,-118,114,117,-113,117,111,-116,111,117,-115,115,113,-119,113,115,-112,113,116,-119,116,113,-113,110,1,-108,1,110,-3,4,109,-109,109,4,-4,119,120,-122,122,120,-120,123,124,-126,126,124,-124,119,126,-123,124,126,-120,122,123,-121,122,126,-124,125,119,-122,125,124,-120,120,125,-122,125,120,-124,127,128,-130,130,128,-128,131,132,-134,131,134,-133,133,129,-129,133,132,-130,130,127,-132,127,134,-132,130,133,-129,131,133,-131,129,132,-128,132,134,-128,135,136,-138,138,136,-136,139,140,-142,139,142,-141,138,135,-140,135,142,-140,140,135,-138,140,142,-136,138,141,-137,138,139,-142,140,136,-142,136,140,-138,143,144,-146,146,144,-144,147,148,-150,150,148,-148,146,147,-145,150,147,-147,146,148,-151,148,146,-144,145,148,-144,148,145,-150,149,144,-148,144,149,-146,151,152,-154,153,152,-155,155,156,-158,156,155,-159,151,157,-153,157,151,-156,152,156,-155,156,152,-158,156,153,-155,153,156,-159,155,151,-159,153,158,-152,159,160,-162,161,160,-163,162,163,-162,163,162,-165,159,165,-161,166,160,-166,160,164,-163,164,160,-167,165,159,-164,161,163,-160,165,164,-167,164,165,-164,167,168,-170,169,
  1245. 168,-171,171,169,-171,169,171,-173,167,173,-169,173,167,-175,173,170,-169,170,173,-172,174,169,-173,169,174,-168,171,174,-173,174,171,-174,175,176,-178,175,177,-179,179,180,-182,181,180,-183,183,184,-186,184,183,-187,187,175,-179,175,187,-189,188,176,-176,176,188,-190,190,191,-193,192,193,-191,187,177,-195,177,187,-179,194,176,-190,176,194,-178,195,196,-198,196,195,-199,187,189,-189,189,187,-195,193,180,-191,180,193,-183,193,181,-183,181,193,-193,192,179,-182,179,192,-192,179,190,-181,190,179,-192,184,198,-186,198,184,-197,185,195,-184,195,185,-199,195,186,-184,186,195,-198,196,184,-198,186,197,-185,199,200,-202,201,200,-203,203,204,-206,205,204,-207,199,203,-201,203,199,-205,200,205,-203,205,200,-204,202,205,-202,206,201,-206,199,206,-205,206,199,-202,207,208,-210,209,208,-211,210,211,-210,212,209,-212,207,213,-209,213,207,-215,208,211,-211,211,208,-214,207,212,-215,212,207,-210,213,214,-212,211,214,-213,215,216,-218,217,216,-219,218,219,-218,219,218,-221,221,216,-216,216,221,-223,216,222,-219,220,218,-223,221,217,-220,217,221,-216,221,220,-223,220,221,-220,223,224,-226,224,223,-227,227,228,-230,227,229,-231,231,232,-234,233,234,-232,226,235,-225,236,224,-236,224,236,-226,237,225,-237,238,239,-241,238,240,-242,235,223,-243,223,235,-227,242,225,-238,225,242,-224,243,244,-246,244,243,-247,237,235,-243,235,237,-237,241,228,-239,228,241,-230,229,241,-231,240,230,-242,230,240,-228,239,227,-241,227,238,-229,238,227,-240,233,245,-235,245,233,-244,234,244,-232,244,234,-246,231,244,-233,246,232,-245,243,232,-247,232,243,-234,6,5,-9,8,5,-10,10,7,-7,7,10,-10,22,14,-12,14,22,-22,13,21,-23,21,13,-13,20,16,-16,16,20,-20,15,17,-19,18,17,-20,26,28,-24,23,28,-25,25,27,-27,27,25,-25,32,40,-40,40,32,-30,39,31,-31,31,39,-41,35,38,-38,38,35,-35,37,36,-34,33,36,-35,41,44,-43,42,44,-47,43,45,-42,45,43,-47,49,50,-48,50,49,-52,47,52,-49,48,52,-52,55,58,-58,58,55,-55,56,53,-58,53,56,-55,247,248,-250,248,247,-251,249,250,-248,250,249,-249,251,252,-254,252,251,-255,253,254,-252,254,253,-253,67,69,-73,72,69,-71,71,68,-68,68,71,-71,74,73,-77,
  1246. 76,73,-78,78,75,-75,75,78,-78,79,81,-85,84,81,-83,83,80,-80,80,83,-83,3,0,-3,2,109,-4,2,110,-110,0,4,-2,4,108,-2,107,1,-109,93,90,-95,90,93,-99,90,98,-92,92,95,-97,95,92,-98,97,92,-90
  1247. }
  1248. Edges: *543 {
  1249. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,16,18,19,20,22,23,24,25,26,27,28,29,30,31,34,35,36,38,40,41,42,43,44,45,46,47,49,50,51,52,54,55,56,58,59,60,61,62,63,64,65,66,68,69,71,73,74,75,77,78,79,80,81,82,83,84,85,87,88,90,91,92,93,94,95,96,97,99,100,102,103,104,105,106,107,108,110,111,112,114,115,116,117,119,121,126,127,128,129,131,133,138,139,140,141,142,143,145,146,147,148,150,151,152,153,154,155,156,158,159,160,162,163,164,165,166,167,168,170,171,173,174,175,176,178,179,181,186,187,188,189,190,192,193,194,195,196,198,199,200,203,204,206,209,210,211,212,213,214,216,217,218,219,220,222,223,226,228,232,234,236,240,246,247,250,252,253,254,256,257,258,259,260,261,262,264,265,266,267,268,270,271,273,276,277,282,283,288,294,295,298,300,302,305,306,307,308,309,311,312,313,314,315,317,318,319,323,324,325,330,332,336,342,343,344,345,347,348,349,350,351,352,354,356,358,361,362,363,366,373,378,379,380,381,383,384,385,386,387,388,391,392,393,396,398,402,403,408,414,415,416,417,419,420,421,422,423,425,426,427,431,432,437,438,442,444,450,451,452,454,455,456,457,458,460,461,462,463,466,468,469,474,479,481,486,487,488,490,491,492,493,496,497,498,499,501,503,504,509,511,512,516,522,523,524,526,527,528,530,532,533,534,535,538,539,540,544,546,548,552,558,559,560,562,563,564,565,566,568,569,570,571,572,574,575,576,578,580,581,582,586,587,588,589,590,591,592,594,595,596,600,602,606,607,608,610,611,612,618,619,622,624,629,630,635,636,642,643,646,648,649,654,659,661,666,667,668,670,671,672,673,674,676,677,678,679,682,684,685,691,693,696,702,703,704,706,707,708,709,711,713,714,715,718,719,720,725,726,727,733,738,739,740,742,743,744,745,748,749,750,752,754,755,757,761,762,764,768,774,775,776,778,779,780,781,782,784,785,786,787,788,789,790,792,793,795,797,799,801,803,804,805,806,808,809,810,811,812,816,818,822,823,824,826,827,828,834,835,838,841,843,847,849,852,858,859,862,864,865,871,873,876,883,888,894,898,900,906,913,919,924,930,931,936,942,949,955,960,966,973,978,984,990,991,992,994,995,996,1002,1003,1004,1006,1007,1008,1015,
  1250. 1020,1027,1032,1039,1044,1052,1053,1060,1063,1068,1073,1077,1081
  1251. }
  1252. GeometryVersion: 124
  1253. LayerElementNormal: 0 {
  1254. Version: 102
  1255. Name: ""
  1256. MappingInformationType: "ByPolygonVertex"
  1257. ReferenceInformationType: "Direct"
  1258. Normals: *3258 {
  1259. a: 0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.760720074176788,-0.635240435600281,-0.133322075009346,0.767380177974701,0.102844767272472,-0.63289088010788,0.652734398841858,0.566227436065674,0.503313302993774,-0.996883630752563,0.0784947723150253,-0.00784947723150253,-1,0,0,-0.996883630752563,0.0784947723150253,-0.00784947723150253,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.996883630752563,-0.0784947723150253,0.00784947723150253,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.0550328753888607,0.998453617095947,0.00786183960735798,0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0550328753888607,0.998453617095947,0.00786183960735798,0.999473392963409,-0.0314794778823853,0.00786986947059631,0.998453617095947,-0.0550328753888607,0.00786183960735798,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0,-1,-2.22044604925031e-016,-0.0393347330391407,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0.0157338920980692,0,0.999969005584717,0.00787377171218395,0.0393347330391407,0.999102234840393,-0.0157338920980692,0,0.999969005584717,0.00787377171218395,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.996883630752563,0.0784947723150253,0.00784947723150253,1,0,0,0.996883630752563,0.0784947723150253,0.00784947723150253,-0.996883630752563,-0.0784947723150253,-0.00784947723150253,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0,2.22044604925031e-016,-1,
  1260. 0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,-0.0550328753888607,0.998453617095947,-0.00786183960735798,-0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0550328753888607,0.998453617095947,-0.00786183960735798,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0,-1,-2.22044604925031e-016,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0,0.999969005584717,-0.00787377171218395,-0.0393347330391407,0.999102234840393,0.0157338920980692,0,0.999969005584717,-0.00787377171218395,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.0628074258565903,-0.219825997948647,0.973515152931213,0.668587028980255,0.291032016277313,0.684318482875824,-0.456198185682297,0.125847786664963,0.880934476852417,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,0,0.999504387378693,0.0314804539084435,0,0.999504387378693,0.0314804539084435,0,0.999504387378693,0.0314804539084435,-0.385707229375839,-0.0551010333001614,-0.920974373817444,-0.086394838988781,0.243476361036301,-0.966051340103149,0.503251075744629,-0.110086180269718,-0.857099533081055,-0.0943595692515373,-0.235898926854134,0.967185616493225,0.685975670814514,0.362699806690216,0.630782246589661,-0.519106030464172,0.220226794481277,0.825850546360016,-0.772252261638641,-0.315205007791519,-0.551608741283417,0.0549819208681583,0.219927683472633,-0.973965525627136,0.566314995288849,-0.188771679997444,-0.802279591560364,0,-0.999876022338867,0.0157460793852806,0,-0.999876022338867,0.0157460793852806,
  1261. 0,-0.999876022338867,0.0157460793852806,0,0.999876022338867,-0.0157460793852806,0,0.999721229076386,-0.023615462705493,0,0.999876022338867,-0.0157460793852806,-0.583310425281525,-0.0236477199941874,-0.811905026435852,-0.361622273921967,0.385206311941147,-0.849026143550873,0.259056687355042,-0.0235506091266871,-0.965574979782104,-0.385707229375839,0.0551010333001614,0.920974373817444,-0.0471462719142437,-0.220015943050385,0.974356293678284,0.504061996936798,0.0945116281509399,0.858480632305145,0.0235971882939339,-0.99894767999649,-0.0393286496400833,0.0235687755048275,-0.997744739055634,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.0628500655293465,-0.0235971882939339,0.99894767999649,0.0393286496400833,-0.0235687755048275,0.997744739055634,0.0628500655293465,-0.0235971882939339,0.99894767999649,0.0393286496400833,0.0315823368728161,-0.718498170375824,-0.694811463356018,0.0787011310458183,-0.731920540332794,-0.676829695701599,0.0315823368728161,-0.718498170375824,-0.694811463356018,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0315823368728161,0.718498170375824,0.694811463356018,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.0315823368728161,0.718498170375824,0.694811463356018,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0315823368728161,-0.718498170375824,-0.694811463356018,0.0787011310458183,-0.731920540332794,-0.676829695701599,0.0315823368728161,-0.718498170375824,-0.694811463356018,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0315823368728161,0.718498170375824,0.694811463356018,-0.0786621645092964,0.739424347877502,0.668628394603729,-0.0315823368728161,0.718498170375824,0.694811463356018,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,
  1262. -0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.0550345741212368,0.998484432697296,2.21708081382065e-016,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.023614726960659,0.999690115451813,0.00787157565355301,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.0550073832273483,-0.99799108505249,-0.0314327888190746,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.0550073832273483,-0.99799108505249,-0.0314327888190746,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.055019274353981,0.998206853866577,0.0235796887427568,-0.0236088801175356,0.999442577362061,-0.0236088801175356,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.0550345741212368,0.998484432697296,2.21708081382065e-016,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.023614726960659,0.999690115451813,0.00787157565355301,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.15798556804657,-0.987409830093384,0.00789927877485752,0.047178328037262,-0.998607933521271,-0.023589164018631,0.15798556804657,-0.987409830093384,0.00789927877485752,0.987440645694733,0.157990500330925,3.50809382278883e-017,0.998021900653839,0.0628675222396851,1.39593941383265e-017,0.998021900653839,0.0628675222396851,1.39593941383265e-017,-0.149103343486786,0.988790571689606,-0.00784754473716021,
  1263. -0.0471856184303761,0.998762309551239,0.0157285407185555,-0.15798556804657,0.987409830093384,-0.00789927877485752,-0.99799108505249,-0.0628655776381493,-0.00785819720476866,-0.987440645694733,-0.157990500330925,-3.50809382278883e-017,-0.99799108505249,-0.0628655776381493,-0.00785819720476866,0.848501980304718,-0.345685988664627,-0.400681465864182,0.809569299221039,0.259376585483551,0.526613056659698,0.836801648139954,-0.371034681797028,0.402612090110779,0.848501980304718,-0.345685988664627,-0.400681465864182,0.738602161407471,0.510735511779785,-0.44001829624176,0.809569299221039,0.259376585483551,0.526613056659698,-0.891839742660522,-0.307803094387054,0.331480234861374,-0.955932021141052,0.118503972887993,0.26860898733139,-0.962931215763092,-0.252572119235992,-0.0947145447134972,-0.955932021141052,0.118503972887993,0.26860898733139,-0.96048104763031,0.196819886565208,-0.196819886565208,-0.962931215763092,-0.252572119235992,-0.0947145447134972,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.0157460793852806,0.999876022338867,2.22017076354246e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.818466424942017,0.464322298765183,0.338404387235641,-0.858640551567078,0.354484617710114,-0.370239496231079,-0.834438860416412,-0.385731160640717,-0.39360323548317,-0.834438860416412,-0.385731160640717,-0.39360323548317,-0.605605006217957,-0.542684972286224,0.582009971141815,-0.818466424942017,0.464322298765183,0.338404387235641,0.791846394538879,-0.407683283090591,0.454723685979843,0.793972134590149,-0.393055528402328,-0.46380552649498,0.802627265453339,0.306886911392212,0.511478185653687,
  1264. 0.793972134590149,-0.393055528402328,-0.46380552649498,0.578885138034821,0.531948506832123,-0.617999017238617,0.802627265453339,0.306886911392212,0.511478185653687,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,1,2.22044604925031e-016,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,1,2.22044604925031e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.950343310832977,-0.212060078978539,0.227768227458,-0.885742247104645,0.324244946241379,0.332153350114822,-0.936514437198639,0.243965968489647,-0.251835823059082,-0.950343310832977,-0.212060078978539,0.227768227458,-0.936514437198639,0.243965968489647,-0.251835823059082,-0.920746207237244,-0.291176170110703,-0.259697645902634,0.81524133682251,-0.368426382541656,0.446814954280853,0.840853095054626,0.487223267555237,-0.235753208398819,0.833406507968903,0.353804647922516,0.424565553665161,0.81524133682251,-0.368426382541656,0.446814954280853,0.645989775657654,-0.551454663276672,-0.527820944786072,0.840853095054626,0.487223267555237,-0.235753208398819,-0.824220538139343,-0.392485946416855,0.408185362815857,-0.785771250724792,0.282877624034882,-0.550039827823639,
  1265. -0.772996604442596,-0.394386023283005,-0.496926426887512,-0.824220538139343,-0.392485946416855,0.408185362815857,-0.605380356311798,0.534621596336365,0.589656174182892,-0.785771250724792,0.282877624034882,-0.550039827823639,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,-1,-2.22044604925031e-016,-0.0078735277056694,-0.999938011169434,0.0078735277056694,0,-1,-2.22044604925031e-016,-0.0078735277056694,-0.999938011169434,0.0078735277056694,0,-1,-2.22044604925031e-016,-0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.0078735277056694,0.999938011169434,-0.0078735277056694,0,1,2.22044604925031e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,1,2.22044604925031e-016,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,
  1266. 0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.110428102314472,0.00788772199302912,0.993852913379669,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,-0.197636172175407,-2.17664875487465e-016,0.980275452136993,0.141416981816292,-0.00785649940371513,0.989918947219849,-0.0784971937537193,-2.21359447914931e-016,0.996914327144623,0.110428102314472,0.00788772199302912,0.993852913379669,-0.999194979667664,0.00786767713725567,0.0393383838236332,-0.999194979667664,0.00786767713725567,-0.0393383838236332,-0.998453617095947,-0.00786183960735798,-0.0550328753888607,-0.999194979667664,0.00786767713725567,0.0393383838236332,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.999194979667664,0.00786767713725567,-0.0393383838236332,0.998453617095947,0.00786183960735798,-0.0550328753888607,0.997898638248444,-0.0157149396836758,0.0628597587347031,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.998453617095947,0.00786183960735798,-0.0550328753888607,0.999102234840393,0.0157338920980692,0.0393347330391407,0.997898638248444,-0.0157149396836758,0.0628597587347031,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.0862884521484375,0.00784440524876118,-0.996239423751831,0.0862884521484375,-0.00784440524876118,-0.996239423751831,0.0862884521484375,0.00784440524876118,-0.996239423751831,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.118209235370159,0.00788061507046223,-0.992957532405853,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,
  1267. 0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.993852913379669,-0.00788772199302912,-0.110428102314472,-0.996883630752563,0.00784947723150253,0.0784947723150253,-0.998854994773865,0.00786499958485365,-0.047189999371767,-0.993852913379669,-0.00788772199302912,-0.110428102314472,-0.988820910453796,-3.31086087753168e-017,0.149107918143272,-0.996883630752563,0.00784947723150253,0.0784947723150253,0.986149191856384,-0.00788919348269701,-0.165673062205315,0.992033720016479,-2.79715226950645e-017,0.125972539186478,0.996239423751831,-0.00784440524876118,-0.0862884521484375,0.992033720016479,-2.79715226950645e-017,0.125972539186478,0.993852913379669,-0.00788772199302912,0.110428102314472,0.996239423751831,-0.00784440524876118,-0.0862884521484375,0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0,-2.22044604925031e-016,1,-0.0550328753888607,-0.00786183960735798,0.998453617095947,0.0628655776381493,0.00785819720476866,0.99799108505249,-0.0550328753888607,-0.00786183960735798,0.998453617095947,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0628655776381493,0.00785819720476866,0.99799108505249,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.18855020403862,-0.00785625819116831,0.982032239437103,-0.118209235370159,-0.00788061507046223,0.992957532405853,0.0948090925812721,-2.21044404598112e-016,0.995495498180389,-0.118209235370159,-0.00788061507046223,0.992957532405853,
  1268. -0.149103343486786,0.00784754473716021,0.988790571689606,0.0948090925812721,-2.21044404598112e-016,0.995495498180389,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.99799108505249,0.00785819720476866,0.0628655776381493,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.998361051082611,-0.0157222207635641,-0.0550277717411518,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.99799108505249,0.00785819720476866,0.0628655776381493,0.999194979667664,-0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999194979667664,0.00786767713725567,-0.0393383838236332,0.999194979667664,-0.00786767713725567,0.0393383838236332,0.999102234840393,0.0157338920980692,0.0393347330391407,0.999194979667664,0.00786767713725567,-0.0393383838236332,-0.133704990148544,-0.00786499958485365,-0.990989983081818,0.0706801414489746,0.0157066993415356,-0.99737536907196,0.275727331638336,-0.0157558489590883,-0.961106777191162,0.0706801414489746,0.0157066993415356,-0.99737536907196,-0.133704990148544,-0.00786499958485365,-0.990989983081818,-0.0784947723150253,0.00784947723150253,-0.996883630752563,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0393383838236332,0.00786767713725567,0.999194979667664,-0.047189999371767,0.00786499958485365,0.998854994773865,-0.047189999371767,-0.00786499958485365,0.998854994773865,0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.047189999371767,0.00786499958485365,0.998854994773865,0.0393383838236332,0.00786767713725567,0.999194979667664,0.993760168552399,0.0157739706337452,0.110417798161507,0.995464503765106,-0.00790051184594631,-0.0948061496019363,0.986179888248444,-3.6787954462067e-017,0.165678218007088,0.995464503765106,-0.00790051184594631,-0.0948061496019363,
  1269. 0.993760168552399,0.0157739706337452,0.110417798161507,0.991910755634308,0.0157446153461933,-0.125956922769547,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0314794778823853,0.00786986947059631,-0.999473392963409,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.047189999371767,0.00786499958485365,-0.998854994773865,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.986057102680206,0.015776913613081,0.165657594799995,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.993760168552399,-0.0157739706337452,-0.110417798161507,0.623809516429901,0.742254376411438,-0.244786009192467,0.905905067920685,0.417504072189331,0.0708969160914421,0.888168394565582,-0.448014140129089,-0.102178663015366,0.888168394565582,-0.448014140129089,-0.102178663015366,0.905905067920685,0.417504072189331,0.0708969160914421,0.901801288127899,-0.42345455288887,0.0862592607736588,-0.904782950878143,0.41698694229126,-0.0865444615483284,-0.900911450386047,-0.426747560501099,0.0790273174643517,-0.52695494890213,0.833689987659454,0.165164992213249,-0.900911450386047,-0.426747560501099,0.0790273174643517,-0.904782950878143,0.41698694229126,-0.0865444615483284,-0.828313767910004,-0.552209138870239,-0.0946644246578217,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,
  1270. 0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.457302898168564,0.859414100646973,-0.228651449084282,0.814617455005646,0.577350318431854,0.0553623549640179,0.799293518066406,-0.587715864181519,-0.125379368662834,0.799293518066406,-0.587715864181519,-0.125379368662834,0.814617455005646,0.577350318431854,0.0553623549640179,0.834930539131165,-0.543492496013641,0.0866437330842018,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.913612544536591,0.40167447924614,-0.063007764518261,-0.917605519294739,-0.395519614219666,0.0395519621670246,-0.541747450828552,0.832249760627747,0.117771193385124,-0.917605519294739,-0.395519614219666,0.0395519621670246,-0.913612544536591,0.40167447924614,-0.063007764518261,-0.868947744369507,-0.48977056145668,-0.0710957199335098,0.473440021276474,0.836410701274872,-0.276173323392868,0.813321232795715,0.576431572437286,0.0789632275700569,0.80305004119873,-0.574731886386871,-0.157460793852806,0.80305004119873,-0.574731886386871,-0.157460793852806,0.813321232795715,0.576431572437286,0.0789632275700569,
  1271. 0.836540937423706,-0.536648869514465,0.110486537218094,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.914719521999359,-0.402161180973053,0.0394275672733784,-0.901884615421295,0.415651202201843,-0.117637127637863,-0.829010546207428,-0.544778347015381,-0.126325413584709,-0.901884615421295,0.415651202201843,-0.117637127637863,-0.914719521999359,-0.402161180973053,0.0394275672733784,-0.841867506504059,0.535018563270569,0.0708112791180611,0.899284183979034,-0.433865189552307,0.0552192069590092,0.668587028980255,-0.684318482875824,-0.291032016277313,0.887976288795471,0.440059065818787,-0.13358935713768,0.899284183979034,-0.433865189552307,0.0552192069590092,0.887976288795471,0.440059065818787,-0.13358935713768,0.905905067920685,0.417504072189331,0.0708969160914421,0.449684023857117,0.844143688678741,-0.291900157928467,0.875074446201324,0.47301322221756,0.102486193180084,0.810094952583313,-0.58201003074646,-0.0707849934697151,0.810094952583313,-0.58201003074646,-0.0707849934697151,0.875074446201324,0.47301322221756,0.102486193180084,
  1272. 0.874341070652008,-0.472616791725159,0.110277250409126,0.707871913909912,-0.700006663799286,0.0943829268217087,0.686188995838165,0.717737972736359,-0.118308454751968,0.588801503181458,0.800770044326782,0.109909616410732,0.686188995838165,0.717737972736359,-0.118308454751968,0.707871913909912,-0.700006663799286,0.0943829268217087,0.629843175411224,-0.763684809207916,-0.141714707016945,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.858880341053009,0.496417075395584,0.126074180006981,-0.480538457632065,0.850789427757263,-0.212697356939316,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.786524295806885,-0.613488972187042,-0.0707871839404106,-0.837637186050415,-0.529449880123138,0.134338036179543,-0.858880341053009,0.496417075395584,0.126074180006981,0,1,2.22044604925031e-016,0,0.999969005584717,-0.00787377171218395,0,1,2.22044604925031e-016,0,0.999969005584717,-0.00787377171218395,0,1,2.22044604925031e-016,0,0.999969005584717,-0.00787377171218395,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.900321245193481,-0.42646798491478,0.0868731066584587,-0.914719521999359,0.402161180973053,-0.0394275672733784,-0.835968494415283,-0.54416811466217,-0.0709784477949142,-0.914719521999359,0.402161180973053,-0.0394275672733784,
  1273. -0.900321245193481,-0.42646798491478,0.0868731066584587,-0.855672121047974,0.510263204574585,0.0863522365689278,-0.910230994224548,0.408034563064575,0.0706213638186455,-0.914719521999359,-0.386390149593353,-0.118282705545425,-0.871802449226379,-0.47909864783287,0.102102980017662,-0.914719521999359,-0.386390149593353,-0.118282705545425,-0.910230994224548,0.408034563064575,0.0706213638186455,-0.849972248077393,0.511557340621948,-0.125921815633774,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.623809516429901,0.742254376411438,0.244786009192467,-0.905905067920685,0.417504072189331,-0.0708969160914421,
  1274. -0.888168394565582,-0.448014140129089,0.102178663015366,-0.888168394565582,-0.448014140129089,0.102178663015366,-0.905905067920685,0.417504072189331,-0.0708969160914421,-0.901801288127899,-0.42345455288887,-0.0862592607736588,0.52695494890213,0.833689987659454,-0.165164992213249,0.904782950878143,0.41698694229126,0.0865444615483284,0.900911450386047,-0.426747560501099,-0.0790273174643517,0.900911450386047,-0.426747560501099,-0.0790273174643517,0.904782950878143,0.41698694229126,0.0865444615483284,0.828313767910004,-0.552209138870239,0.0946644246578217,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,2.22044604925031e-016,-1,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.455606669187546,0.856226325035095,0.243513911962509,-0.813321232795715,0.576431572437286,-0.0789632275700569,-0.795620977878571,-0.590807676315308,0.133916392922401,-0.795620977878571,-0.590807676315308,0.133916392922401,-0.813321232795715,0.576431572437286,-0.0789632275700569,-0.833689987659454,-0.542684972286224,-0.10224499553442,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,
  1275. 0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,-2.22044604925031e-016,1,-0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.023615462705493,-2.21982705345433e-016,0.999721229076386,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.550294697284698,0.825442135334015,-0.125781655311584,0.912001550197601,0.400966197252274,0.0864829123020172,0.918841898441315,-0.392667472362518,-0.0392667464911938,0.918841898441315,-0.392667472362518,-0.0392667464911938,0.912001550197601,0.400966197252274,0.0864829123020172,0.858480632305145,-0.504061996936798,0.0945116281509399,-0.465187430381775,0.835760474205017,0.291727721691132,-0.815441846847534,0.572377502918243,-0.0862486585974693,-0.800967633724213,-0.573241531848907,0.172757729887962,-0.800967633724213,-0.573241531848907,0.172757729887962,-0.815441846847534,0.572377502918243,-0.0862486585974693,-0.835786461830139,-0.536164879798889,-0.118271671235561,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,0.00787377171218395,-0.999969005584717,-2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,-0.00787377171218395,0.999969005584717,2.22037722782335e-016,0,2.22044604925031e-016,-1,
  1276. 0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0.944764852523804,0.299175530672073,0.133841678500175,0.8757004737854,-0.481240808963776,-0.0394459664821625,0.869792699813843,0.485830157995224,-0.0861956775188446,0.8757004737854,-0.481240808963776,-0.0394459664821625,0.944764852523804,0.299175530672073,0.133841678500175,0.76853883266449,-0.627378642559052,0.125475719571114,-0.880145311355591,0.447931081056595,0.157168805599213,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.646893739700317,-0.694227457046509,0.315557897090912,-0.898864686489105,-0.433662801980972,-0.0630782246589661,-0.880145311355591,0.447931081056595,0.157168805599213,-0.902384161949158,0.423728227615356,-0.0784681886434555,-0.906383275985718,0.417724460363388,0.0630527511239052,-0.347828835248947,0.909098029136658,-0.229250803589821,-0.833689987659454,-0.542684972286224,-0.10224499553442,-0.906383275985718,0.417724460363388,0.0630527511239052,-0.833689987659454,-0.542684972286224,-0.10224499553442,-0.887428462505341,-0.455494254827499,0.0706801414489746,-0.716158151626587,-0.69254857301712,-0.08656857162714,-0.622781336307526,-0.764680862426758,0.165549457073212,-0.676745891571045,0.723960757255554,0.133775353431702,-0.676745891571045,0.723960757255554,0.133775353431702,-0.58412766456604,0.805148959159851,-0.102617025375366,-0.716158151626587,-0.69254857301712,-0.08656857162714,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,
  1277. 0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0.861209571361542,0.497763335704803,-0.102713063359261,0.488128453493118,0.850288271903992,0.196825981140137,0.786938190460205,-0.613811790943146,0.0629550591111183,0.861209571361542,0.497763335704803,-0.102713063359261,0.786938190460205,-0.613811790943146,0.0629550591111183,0.838886797428131,-0.533124268054962,-0.109760887920856,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0,0.999969005584717,0.00787377171218395,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.915175020694733,0.402361452579498,0.0236683208495378,0.898222744464874,-0.425473928451538,-0.110308058559895,0.852271616458893,0.512941241264343,-0.10258824378252,0.898222744464874,-0.425473928451538,-0.110308058559895,0.915175020694733,0.402361452579498,0.0236683208495378,0.836801648139954,-0.544710457324982,0.0552604869008064,0.915659487247467,-0.378893584012985,0.13419146835804,0.908332049846649,0.41072404384613,-0.0789853930473328,0.844985604286194,0.513309001922607,0.150044173002243,0.908332049846649,0.41072404384613,-0.0789853930473328,0.915659487247467,-0.378893584012985,0.13419146835804,0.868379056453705,-0.481555670499802,-0.118415325880051,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0.00787377171218395,2.22037722782335e-016,-0.999969005584717,
  1278. -0.00787377171218395,2.22037722782335e-016,-0.999969005584717,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,-2.22044604925031e-016,1,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0,-1,-2.22044604925031e-016,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0,1,2.22044604925031e-016,0.0236125327646732,0.999597251415253,-0.0157416891306639,0,1,2.22044604925031e-016,
  1279. 0.0236125327646732,0.999597251415253,-0.0157416891306639,0,1,2.22044604925031e-016,0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.031476553529501,-0.999380588531494,0.0157382767647505,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.031476553529501,-0.999380588531494,0.0157382767647505,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999721229076386,0.023615462705493,5.243686086563e-018,-1,0,0,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-1,0,0,-0.999225914478302,0.0393396019935608,8.73514638256818e-018,-1,0,0,-0.998885869979858,0.047191459685564,1.04786090217166e-017,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.998854994773865,-0.047189999371767,0.00786499958485365,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0,-1,-2.22044604925031e-016,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.0236125327646732,0.999597251415253,0.0157416891306639,0,1,2.22044604925031e-016,-0.0236125327646732,0.999597251415253,0.0157416891306639,0,1,2.22044604925031e-016,-0.0236125327646732,0.999597251415253,0.0157416891306639,0,1,2.22044604925031e-016,0.031476553529501,-0.999380588531494,-0.0157382767647505,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0236125327646732,-0.999597251415253,-0.0157416891306639,
  1280. 0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.031476553529501,-0.999380588531494,-0.0157382767647505,0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999721229076386,0.023615462705493,5.243686086563e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999225914478302,0.0393396019935608,8.73514638256818e-018,1,0,0,0.998885869979858,0.047191459685564,1.04786090217166e-017,1,0,0,0.999225914478302,0.0393396019935608,8.73514638256818e-018,1,0,0,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,
  1281. -0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999380588531494,0.031476553529501,0.0157382767647505,0.999690115451813,0.023614726960659,-0.00787157565355301,0.999690115451813,0.023614726960659,-0.00787157565355301,0.999690115451813,0.023614726960659,-0.00787157565355301,0.999380588531494,0.031476553529501,0.0157382767647505,0.999380588531494,0.031476553529501,0.0157382767647505,-0.999690115451813,-0.023614726960659,0.00787157565355301,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,-0.999690115451813,-0.023614726960659,0.00787157565355301,-0.999752104282379,-0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999845147132874,-0.0157455932348967,0.00787279661744833,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999752104282379,0.0157441273331642,-0.0157441273331642,
  1282. 0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.999845147132874,-0.0157455932348967,0.00787279661744833,0.999721229076386,0.023615462705493,5.243686086563e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.998484432697296,0.0550345741212368,1.22201302679674e-017,0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,0.999721229076386,0.023615462705493,5.243686086563e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.998885869979858,0.047191459685564,1.04786090217166e-017,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,
  1283. 0.998885869979858,0.047191459685564,1.04786090217166e-017,0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.998854994773865,-0.047189999371767,-0.00786499958485365,0.0236147306859493,-0.00787157658487558,-0.999690234661102,0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0236147306859493,-0.00787157658487558,-0.999690234661102,-0.00787377171218395,2.22037722782335e-016,-0.999969005584717,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0314794778823853,0.00786986947059631,0.999473392963409,-0.0157455932348967,0.00787279661744833,0.999845147132874,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,-0.0157455932348967,0.00787279661744833,0.999845147132874,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0157455932348967,-0.00787279661744833,0.999845147132874,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,-0.0157455932348967,-0.00787279661744833,0.999845147132874,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,0.00787377171218395,-2.22037722782335e-016,0.999969005584717,0.0157460793852806,-2.22017076354246e-016,0.999876022338867,
  1284. -0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867,-0.0157460793852806,2.22017076354246e-016,-0.999876022338867
  1285. }
  1286. NormalsW: *1086 {
  1287. 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,
  1288. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1289. }
  1290. }
  1291. LayerElementBinormal: 0 {
  1292. Version: 102
  1293. Name: "UVmap_0"
  1294. MappingInformationType: "ByPolygonVertex"
  1295. ReferenceInformationType: "Direct"
  1296. Binormals: *3258 {
  1297. a: 0.0510069653391838,0.00080325931776315,-0.998698055744171,0.0509870275855064,2.21755793159797e-016,-0.998699307441711,0.0509870275855064,2.21755793159797e-016,-0.998699307441711,-0.256450057029724,-0.105460211634636,-0.960786998271942,-0.617338180541992,-0.148221537470818,-0.772608518600464,0.590579152107239,0.0358024537563324,-0.806185126304626,0.0784362256526947,0.996890842914581,0.00750808138400316,0,0.999988496303558,0.00479765748605132,0.0784362256526947,0.996890842914581,0.00750808138400316,-0.000166777346748859,-0.999775648117065,0.0211807247251272,-0.0786234065890312,-0.996747255325317,0.0177003834396601,-0.000166777346748859,-0.999775648117065,0.0211807247251272,0.000509554985910654,0.99999988079071,2.22044578455252e-016,0.000509554985910654,0.99999988079071,2.22044578455252e-016,0.000509554985910654,0.99999988079071,2.22044578455252e-016,-0.000627070548944175,0.999999821186066,2.22044565220362e-016,-0.000627070548944175,0.999999821186066,2.22044565220362e-016,-0.000627070548944175,0.999999821186066,2.22044565220362e-016,0.998461365699768,-0.055083516985178,0.00637686904519796,0.999695301055908,-0.0234957709908485,0.00756144756451249,0.998461365699768,-0.055083516985178,0.00637686904519796,-0.0316360965371132,-0.999286353588104,0.0206389110535383,-0.0551920421421528,-0.998239755630493,0.021711403504014,-0.0236106067895889,-0.9995157122612,0.020271074026823,-0.999675154685974,5.65944774194746e-018,-0.0254878867417574,-0.998935520648956,0.0389387048780918,-0.0247310977429152,-0.998935520648956,0.0389387048780918,-0.0247310977429152,0.999991714954376,-3.20057115459349e-005,0.00406472524628043,0.999223709106445,-0.0392953343689442,0.00280575733631849,0.999991714954376,-3.20057115459349e-005,0.00406472524628043,-1,8.30964345368557e-005,1.84511149774148e-020,-1,8.30964345368557e-005,1.84511149774148e-020,-1,8.30964345368557e-005,1.84511149774148e-020,-0.999996483325958,0.00266196392476559,5.91074727999261e-019,-0.999996483325958,0.00266196392476559,5.91074727999261e-019,-0.999996483325958,0.00266196392476559,5.91074727999261e-019,
  1298. -0.999993503093719,-0.00360210053622723,-7.99826990466818e-019,-0.999993503093719,-0.00360210053622723,-7.99826990466818e-019,-0.999993503093719,-0.00360210053622723,-7.99826990466818e-019,-1,0,0,-1,0,0,-1,0,0,-0.0784410461783409,0.996894657611847,-0.00693305348977447,0,0.999991059303284,-0.0042251436971128,-0.0784410461783409,0.996894657611847,-0.00693305348977447,0.0786234065890312,-0.996747255325317,-0.017700320109725,0.000166776851983741,-0.999775648117065,-0.0211806613951921,0.000166776851983741,-0.999775648117065,-0.0211806613951921,0.00574385467916727,0.999983489513397,2.22040938860556e-016,0.00574385467916727,0.999983489513397,2.22040938860556e-016,0.00574385467916727,0.999983489513397,2.22040938860556e-016,0.000729320978280157,0.999999761581421,2.22044551985472e-016,0.000729320978280157,0.999999761581421,2.22044551985472e-016,0.000729320978280157,0.999999761581421,2.22044551985472e-016,-0.998465359210968,-0.0550789348781109,-0.00576771004125476,-0.999699532985687,-0.0235053971409798,-0.00695641059428453,-0.998465359210968,-0.0550789348781109,-0.00576771004125476,0.0316350944340229,-0.999289333820343,-0.0204992368817329,0.0551911145448685,-0.998242795467377,-0.0215727258473635,0.0236106738448143,-0.999518513679504,-0.0201311260461807,0.998912990093231,0.0389233455061913,0.0256500132381916,0.999651312828064,-5.86299455682023e-018,0.0264045801013708,0.998912990093231,0.0389233455061913,0.0256500132381916,-0.999991714954376,-3.20062172249891e-005,-0.00406478950753808,-0.999223709106445,-0.0392953306436539,-0.00280581903643906,-0.999991714954376,-3.20062172249891e-005,-0.00406478950753808,1,8.35798782645725e-005,1.85584610489392e-020,1,8.35798782645725e-005,1.85584610489392e-020,1,8.35798782645725e-005,1.85584610489392e-020,0.999996483325958,0.00266196113079786,5.91074107613801e-019,0.999996483325958,0.00266196113079786,5.91074107613801e-019,0.999996483325958,0.00266196113079786,5.91074107613801e-019,0.999999105930328,-0.00131770176813006,-2.92588568513455e-019,0.999999105930328,-0.00131770176813006,-2.92588568513455e-019,
  1299. 0.999999105930328,-0.00131770176813006,-2.92588568513455e-019,1,0,0,1,0,0,1,0,0,-0.99791407585144,0.0284245815128088,-0.0579630956053734,-0.738971412181854,0.157133236527443,0.655156791210175,-0.889817297458649,-0.052933432161808,-0.453236311674118,0.999996244907379,-8.73025783221237e-005,0.0027718567289412,0.999996244907379,-8.73025783221237e-005,0.0027718567289412,0.999996244907379,-8.73025783221237e-005,0.0027718567289412,-0.99983137845993,-0.000578165811020881,0.0183567628264427,-0.99983137845993,-0.000578165811020881,0.0183567628264427,-0.99983137845993,-0.000578165811020881,0.0183567628264427,-0.922047972679138,0.0582036897540092,0.38267457485199,-0.995357692241669,0.0201875045895576,0.0941036343574524,-0.864133596420288,-0.0601891800761223,-0.499650448560715,-0.995324552059174,0.00222690030932426,-0.0965616852045059,-0.71837592124939,0.199812904000282,0.666341364383698,-0.854500532150269,-0.112336106598377,-0.507158279418945,-0.618996024131775,0.177771613001823,0.765010714530945,-0.996236979961395,-0.0533709079027176,-0.0682906806468964,-0.823452949523926,-0.170720979571342,-0.54109126329422,0.999985456466675,-8.48664785735309e-005,-0.00538902124390006,0.999985456466675,-8.48664785735309e-005,-0.00538902124390006,0.999985456466675,-8.48664785735309e-005,-0.00538902124390006,-0.999826967716217,0.000292946177069098,0.0186020825058222,-0.999826848506927,0.000439426046796143,0.0186023693531752,-0.999826967716217,0.000292946177069098,0.0186020825058222,0.812247812747955,-0.0188850630074739,-0.583006680011749,0.921482026576996,0.00919255707412958,-0.388312429189682,0.962952673435211,0.0838344022631645,0.256308406591415,0.920569002628326,0.0895263254642487,0.380181193351746,0.997609496116638,0.0389668419957161,0.0570703968405724,0.863667011260986,-0.0562750212848186,-0.500911772251129,-0.99971479177475,-0.0237237717956305,0.00275499210692942,-0.999713242053986,-0.023788508027792,0.00275009707547724,-0.999713242053986,-0.023788508027792,0.00275009707547724,0.999708473682404,0.023780157789588,-0.00419093621894717,0.999706208705902,0.0238786432892084,-0.00418360577896237,
  1300. 0.999708473682404,0.023780157789588,-0.00419093621894717,0.998974680900574,0.000129135340102948,0.0452743992209435,0.9964998960495,0.0385670736432076,0.0741658285260201,0.998974680900574,0.000129135340102948,0.0452743992209435,-0.0444444641470909,0.740243375301361,0.670868456363678,-0.0222373884171247,0.741595089435577,0.670479118824005,-0.0444444641470909,0.740243375301361,0.670868456363678,-0.999282717704773,-0.00816625729203224,-0.0369772911071777,-0.996521472930908,-0.0398090705275536,-0.0732136741280556,-0.999282717704773,-0.00816625729203224,-0.0369772911071777,0.0444470122456551,-0.739449262619019,-0.671743512153625,0.0222429670393467,-0.738058567047119,-0.674369990825653,0.0444470122456551,-0.739449262619019,-0.671743512153625,0.999038696289063,0.00154808349907398,0.0438099876046181,0.996555328369141,0.0399542339146137,0.0726722031831741,0.999038696289063,0.00154808349907398,0.0438099876046181,-0.0444521531462669,0.737780928611755,0.673574984073639,-0.0222413465380669,0.739130079746246,0.673195481300354,-0.0444521531462669,0.737780928611755,0.673574984073639,-0.999392867088318,-0.0124673964455724,-0.0325345247983933,-0.996672928333282,-0.043976191431284,-0.0686231479048729,-0.999392867088318,-0.0124673964455724,-0.0325345247983933,0.0444470122456551,-0.739449203014374,-0.67174357175827,0.0222429670393467,-0.73805844783783,-0.674370110034943,0.0444470122456551,-0.739449203014374,-0.67174357175827,0.999422669410706,0.0234145671129227,0.0246181041002274,0.998160183429718,0.0550167039036751,0.0254826620221138,0.998160183429718,0.0550167039036751,0.0254826620221138,-0.998396575450897,-0.0550297312438488,-0.0132718859240413,-0.999644637107849,-0.0235147401690483,-0.0125617710873485,-0.999644637107849,-0.0235147401690483,-0.0125617710873485,0.999911725521088,0.0132888481020927,2.95071702673794e-018,0.999911725521088,0.0132888481020927,2.95071702673794e-018,0.999911725521088,0.0132888481020927,2.95071702673794e-018,0.999606072902679,0.028066486120224,6.23201182219901e-018,0.999606072902679,0.028066486120224,6.23201182219901e-018,
  1301. 0.999606072902679,0.028066486120224,6.23201182219901e-018,0.998238086700439,0.0542649738490582,0.0240038000047207,0.99944794178009,0.0241480227559805,0.0228183679282665,0.998238086700439,0.0542649738490582,0.0240038000047207,-0.99888014793396,-0.0322779342532158,-0.0345923975110054,-0.997905969619751,-0.0541676618158817,-0.0353496111929417,-0.999112844467163,-0.0244117137044668,-0.0343163646757603,0.999997437000275,0.00226206984370947,5.02280404759296e-019,0.999997437000275,0.00226206984370947,5.02280404759296e-019,0.999997437000275,0.00226206984370947,5.02280404759296e-019,0.999970376491547,0.0076941903680563,1.70845346049304e-018,0.999970376491547,0.0076941903680563,1.70845346049304e-018,0.999970376491547,0.0076941903680563,1.70845346049304e-018,0.99942284822464,0.0234146267175674,0.0246108993887901,0.998157918453217,0.0550165772438049,0.0255715120583773,0.998157918453217,0.0550165772438049,0.0255715120583773,-0.998394012451172,-0.0550295934081078,-0.0134651465341449,-0.999643325805664,-0.0235139038413763,-0.0126640414819121,-0.999643325805664,-0.0235139038413763,-0.0126640414819121,1,4.38718307123054e-005,9.7415033178517e-021,1,4.38718307123054e-005,9.7415033178517e-021,1,4.38718307123054e-005,9.7415033178517e-021,0.999998986721039,-0.00143626786302775,-3.18915530212516e-019,0.999998986721039,-0.00143626786302775,-3.18915530212516e-019,0.999998986721039,-0.00143626786302775,-3.18915530212516e-019,0.986804783344269,0.158165886998177,0.0346420556306839,0.998142838478088,0.0462189763784409,0.0396823920309544,0.986804783344269,0.158165886998177,0.0346420556306839,-0.157990217208862,0.987438857555389,0.00195677415467799,-0.0628674104809761,0.998020112514496,-0.00189667276572436,-0.0628674104809761,0.998020112514496,-0.00189667276572436,-0.988744616508484,-0.149186044931412,-0.0112947486341,-0.998869061470032,-0.0470867864787579,-0.0065960674546659,-0.987358450889587,-0.158070951700211,-0.0117014087736607,0.0630594864487648,-0.997630536556244,-0.0275113359093666,0.157949537038803,-0.987184643745422,-0.0227707717567682,
  1302. 0.0630594864487648,-0.997630536556244,-0.0275113359093666,0.380155026912689,0.924895644187927,0.00708502531051636,-0.307503342628479,0.951538324356079,0.00406084908172488,0.402457565069199,0.915410816669464,0.00713343732059002,0.353304028511047,0.933745324611664,-0.0574110075831413,-0.584680557250977,0.810227751731873,-0.0409851223230362,-0.27340891957283,0.960450828075409,-0.052742712199688,0.337563097476959,0.0349445641040802,0.940654098987579,0.273829489946365,0.0299153830856085,0.961312890052795,-0.0978623554110527,-9.97520837699994e-005,0.995199918746948,0.270941585302353,0.00372829427942634,0.962588548660278,-0.203759357333183,-0.0154464207589626,0.97889918088913,-0.0949715003371239,-0.0112025132402778,0.99541699886322,-0.0337147153913975,0.000530940422322601,0.999431431293488,-0.0337178371846676,-2.21918370546111e-016,0.999431490898132,-0.0337178371846676,-2.21918370546111e-016,0.999431490898132,-0.0272692162543535,-2.21962032447564e-016,0.999628126621246,-0.0272667948156595,0.000429398351116106,0.999628186225891,-0.0272667948156595,0.000429398351116106,0.999628186225891,-0.00832818914204836,-6.55762923997827e-005,-0.999965310096741,-0.00832777097821236,0.000131146007333882,-0.999965310096741,-0.00832777097821236,0.000131146007333882,-0.999965310096741,-0.00811982899904251,0.000127871331642382,-0.999967038631439,-0.00812038872390985,-6.39400677755475e-005,-0.999967038631439,-0.00812038872390985,-6.39400677755475e-005,-0.999967038631439,0.377408027648926,-0.00961771607398987,0.925997138023376,-0.399322241544724,-0.00974357780069113,0.916758894920349,-0.422950804233551,-0.00963841285556555,0.90610134601593,-0.424766659736633,-0.00488202227279544,0.905289709568024,0.691719651222229,0.00257304310798645,0.722161531448364,0.382156044244766,0.000135928392410278,0.924097836017609,0.500661492347717,0.00694461073726416,-0.86561530828476,-0.502617239952087,0.00481805205345154,-0.864495635032654,0.535526990890503,0.00687457527965307,-0.844490170478821,-0.487814962863922,0.0434165447950363,-0.871866703033447,-0.742770969867706,0.0313058644533157,-0.668813288211823,
  1303. 0.523741185665131,0.0477765500545502,-0.850536704063416,0.00201133219525218,-0.999997973442078,-2.22044154938778e-016,0.00201133219525218,-0.999997973442078,-2.22044154938778e-016,0.00201133219525218,-0.999997973442078,-2.22044154938778e-016,0.00409025466069579,-0.999991655349731,-2.22042752040459e-016,0.00409025466069579,-0.999991655349731,-2.22042752040459e-016,0.00409025466069579,-0.999991655349731,-2.22042752040459e-016,-0.0491237342357636,-2.21776532232115e-016,0.998792707920074,-0.0491108968853951,-0.00786427035927773,0.998762369155884,-0.0491237342357636,-2.21776532232115e-016,0.998792707920074,-0.0495001673698425,-0.00786411948502064,0.998743176460266,-0.0495121590793133,-2.21772270597599e-016,0.998773515224457,-0.0495001673698425,-0.00786411948502064,0.998743176460266,0.00870463252067566,0.999962091445923,2.22036187535118e-016,0.00870463252067566,0.999962091445923,2.22036187535118e-016,0.00870463252067566,0.999962091445923,2.22036187535118e-016,0.00611074082553387,0.999981343746185,2.22040462404524e-016,0.00611074082553387,0.999981343746185,2.22040462404524e-016,0.00611074082553387,0.999981343746185,2.22040462404524e-016,0.00565243605524302,2.22041057974565e-016,-0.9999840259552,0.0056753302924335,0.0078736450523138,-0.999952912330627,0.0056753302924335,0.0078736450523138,-0.999952912330627,0.0056436019949615,0.00787364598363638,-0.999953091144562,0.0056131505407393,2.22041110914124e-016,-0.999984264373779,0.00561332236975431,4.41993906861171e-005,-0.999984264373779,0.00534160668030381,4.20598953496665e-005,0.999985754489899,0.00534160668030381,4.20598953496665e-005,0.999985754489899,0.00534160668030381,4.20598953496665e-005,0.999985754489899,0.00566812185570598,4.46308804384898e-005,0.999983906745911,0.00566812185570598,4.46308804384898e-005,0.999983906745911,0.00566812185570598,4.46308804384898e-005,0.999983906745911,0.231190517544746,0.0088564557954669,0.972868204116821,0.35337245464325,0.0070379376411438,0.935456275939941,-0.256185859441757,0.0142772030085325,0.966522216796875,0.232137635350227,0.00440232781693339,0.972672998905182,
  1304. -0.258188754320145,0.00612721964716911,0.966075122356415,-0.273258715867996,0.00615896936506033,0.961920857429504,0.479707539081573,-0.00263009965419769,-0.877424538135529,-0.270292669534683,0.000612489879131317,-0.962778031826019,0.45477631688118,-0.00252847350202501,-0.890602111816406,0.462768286466599,-0.0494219809770584,-0.885100603103638,-0.66004478931427,-0.0561776757240295,-0.749122798442841,-0.234699636697769,-0.0642798244953156,-0.969940304756165,0.427717626094818,0.0408991314470768,0.902986764907837,-0.562548816204071,0.0428051650524139,0.825655281543732,-0.555684804916382,0.0429881811141968,0.830280900001526,0.441268652677536,0.00658068060874939,0.897350907325745,0.701292276382446,0.00790069997310638,0.712830066680908,-0.573808789253235,-0.00143635272979736,0.818988144397736,-0.00896190665662289,0.999959945678711,-7.0566195063293e-005,-0.00896275509148836,0.999959826469421,7.05728743923828e-005,-0.00896190665662289,0.999959945678711,-7.0566195063293e-005,-0.00150865782052279,0.999998867511749,1.18791958811926e-005,-0.00150852277874947,0.999998867511749,-1.18781326818862e-005,-0.00150865782052279,0.999998867511749,1.18791958811926e-005,0.0423980019986629,2.21844943377496e-016,-0.999100804328918,0.0423848778009415,-0.00820041447877884,-0.999067723751068,0.0423980019986629,2.21844943377496e-016,-0.999100804328918,0.0419971123337746,-0.00819749012589455,-0.999084115028381,0.042010135948658,2.21848582972191e-016,-0.999117195606232,0.0419971123337746,-0.00819749012589455,-0.999084115028381,-0.000710032880306244,-0.999999761581421,-5.59080990569782e-006,-0.000710098072886467,-0.999999761581421,5.59132331545698e-006,-0.000710032880306244,-0.999999761581421,-5.59080990569782e-006,-0.00673531554639339,-0.999977290630341,5.30339784745593e-005,-0.00673472229391336,-0.99997740983963,-5.3029307309771e-005,-0.00673531554639339,-0.999977290630341,5.30339784745593e-005,-0.0152639746665955,0.00775267323479056,0.999853432178497,-0.0152244390919805,-2.22018876299258e-016,0.999884128570557,-0.01522505749017,0.000119882344733924,0.999884068965912,
  1305. -0.0170021653175354,-2.22012510317264e-016,0.99985545873642,-0.0170359760522842,0.00773849571123719,0.999824941158295,-0.0170359760522842,0.00773849571123719,0.999824941158295,-0.0107226092368364,8.4429993876256e-005,-0.999942481517792,-0.0107226092368364,8.4429993876256e-005,-0.999942481517792,-0.0107226092368364,8.4429993876256e-005,-0.999942481517792,-0.0113374004140496,8.92708703759126e-005,-0.999935746192932,-0.0113374004140496,8.92708703759126e-005,-0.999935746192932,-0.0113374004140496,8.92708703759126e-005,-0.999935746192932,0.00644654547795653,5.07602017023601e-005,0.999979197978973,0.00644647469744086,-5.07596414536238e-005,0.999979197978973,0.00644647469744086,-5.07596414536238e-005,0.999979197978973,0.00609959755092859,-4.80283270007931e-005,0.99998140335083,0.00609974702820182,4.80295057059266e-005,0.99998140335083,0.00609982199966908,9.60601901169866e-005,0.99998140335083,-0.182676389813423,2.18308302890023e-016,-0.983173191547394,-0.182676389813423,2.18308302890023e-016,-0.983173191547394,-0.182676389813423,2.18308302890023e-016,-0.983173191547394,0.185709148645401,2.18182081745993e-016,-0.982604742050171,0.185709148645401,2.18182081745993e-016,-0.982604742050171,0.185709148645401,2.18182081745993e-016,-0.982604742050171,-0.303285747766495,2.11586222950833e-016,-0.952899634838104,-0.303285747766495,2.11586222950833e-016,-0.952899634838104,-0.303285747766495,2.11586222950833e-016,-0.952899634838104,-0.0466043427586555,2.21803332883962e-016,-0.998913407325745,-0.0466043427586555,2.21803332883962e-016,-0.998913407325745,-0.0466043427586555,2.21803332883962e-016,-0.998913407325745,0.99386465549469,-0.0071386257186532,-0.110372751951218,0.996886432170868,-0.00749007612466812,0.0784949958324432,0.980247318744659,-0.00757497129961848,0.197630509734154,0.989940941333771,-0.00319388601928949,-0.141445472836494,0.996907532215118,-0.00371234863996506,0.0784966573119164,0.993881344795227,-0.00327754579484463,-0.110405243933201,0.0393329598009586,-0.000843475107103586,0.999225795269012,-0.0393415540456772,-0.000247904623392969,0.999225854873657,
  1306. -0.0550335645675659,-0.000128710351418704,0.998484492301941,0.0393388979136944,-8.91955714905635e-005,0.999225914478302,0.0314808376133442,-4.86375938635319e-005,0.999504387378693,-0.0393371172249317,0.000316559453494847,0.999226033687592,-0.0550306960940361,-0.000492999330163002,-0.998484551906586,0.0628584548830986,-0.000577627622988075,-0.998022258281708,-0.00788208190351725,-0.000527736032381654,-0.999968886375427,-0.0550670959055424,0.00420425832271576,-0.998473823070526,0.0392769873142242,0.00396252470090985,-0.999220490455627,0.0629281625151634,0.00389624037779868,-0.998010456562042,-0.999500095844269,-0.00270621827803552,0.0315016284584999,-0.996265292167664,-0.00246082269586623,-0.0863100737333298,-0.996268570423126,-0.00246090861037374,-0.0862716063857079,-0.996269285678864,0.00208892486989498,-0.0862745866179466,-0.999503552913666,0.00158323207870126,0.0314679630100727,-0.992986440658569,0.00119531655218452,0.118222162127495,-0.985679566860199,3.74432039299397e-017,-0.168629199266434,-0.985679566860199,3.74432039299397e-017,-0.168629199266434,-0.985679566860199,3.74432039299397e-017,-0.168629199266434,-0.981792688369751,-4.21786144134587e-017,0.189955592155457,-0.981792688369751,-4.21786144134587e-017,0.189955592155457,-0.981792688369751,-4.21786144134587e-017,0.189955592155457,-0.955159485340118,-6.57455790176906e-017,0.296091765165329,-0.955159485340118,-6.57455790176906e-017,0.296091765165329,-0.955159485340118,-6.57455790176906e-017,0.296091765165329,-0.999977648258209,1.48440435375269e-018,-0.00668516289442778,-0.999977648258209,1.48440435375269e-018,-0.00668516289442778,-0.999977648258209,1.48440435375269e-018,-0.00668516289442778,0.1104501709342,-0.0024199488107115,-0.993878722190857,-0.0785171538591385,-0.00258479127660394,-0.996909439563751,0.0471717864274979,-0.00248523312620819,-0.998883724212646,0.110412091016769,0.00243555149063468,-0.993882894515991,-0.149107679724693,0.00183450267650187,-0.988819360733032,-0.0784812793135643,0.00201283604837954,-0.996913552284241,0.165706038475037,0.0037228015717119,0.986168205738068,
  1307. -0.125971615314484,0.00384943699464202,0.992026388645172,0.0863201022148132,0.00378985749557614,0.996260285377502,-0.125972390174866,0.00155422615353018,0.992032527923584,-0.110418565571308,0.00163411838002503,0.993883788585663,0.0863111168146133,0.00259864260442555,0.996264815330505,0.999223351478577,-0.00262516760267317,0.0393188335001469,0.999222874641418,-0.00282822013832629,-0.039317212998867,0.998879730701447,-0.00284773157909513,-0.0472360104322433,0.998882412910461,-0.0020017244387418,0.0472228154540062,0.999224245548248,-0.00216142903082073,-0.039322517812252,0.999224603176117,-0.00201695133000612,0.0393236689269543,-0.999999821186066,-0.00059452053392306,-1.32010077074764e-019,-0.998484015464783,-0.000645263819023967,-0.0550396293401718,-0.99802154302597,-0.000534351042006165,0.0628717020153999,-0.998478651046753,-0.00301062501966953,-0.0550579577684402,-0.999500691890717,-0.00299483351409435,0.0314567573368549,-0.998016059398651,-0.00298352190293372,0.0628906488418579,0.168375790119171,2.18874451771034e-016,-0.985722899436951,0.168375790119171,2.18874451771034e-016,-0.985722899436951,0.168375790119171,2.18874451771034e-016,-0.985722899436951,-0.187533542513847,2.1810513409669e-016,-0.982258200645447,-0.187533542513847,2.1810513409669e-016,-0.982258200645447,-0.187533542513847,2.1810513409669e-016,-0.982258200645447,-0.290237814188004,2.12486592503985e-016,-0.956954538822174,-0.290237814188004,2.12486592503985e-016,-0.956954538822174,-0.290237814188004,2.12486592503985e-016,-0.956954538822174,0.00459310878068209,2.22042262349537e-016,-0.999989449977875,0.00459310878068209,2.22042262349537e-016,-0.999989449977875,0.00459310878068209,2.22042262349537e-016,-0.999989449977875,-0.982054710388184,0.00275446893647313,0.188576564192772,-0.99298769235611,0.00234890333376825,-0.118194185197353,-0.995491981506348,0.00265608122572303,0.0948087573051453,-0.992988646030426,0.000437456415966153,-0.118209466338158,-0.988820552825928,0.000296385114779696,-0.149110227823257,-0.995494544506073,0.0013845496578142,0.094809003174305,
  1308. 0.0550442449748516,-0.00061666575493291,-0.998483717441559,-0.0628732889890671,-0.000738057598937303,-0.998021245002747,0.0078737698495388,-0.000666352570988238,-0.999968767166138,0.0550890564918518,-0.0034915953874588,-0.99847537279129,-0.0392564237117767,-0.00351649662479758,-0.999223053455353,-0.0628947168588638,-0.00351783446967602,-0.998013973236084,-0.0392983295023441,0.00518227461725473,0.999214112758636,0.039299737662077,0.00500813871622086,0.999214947223663,0.039299737662077,0.00500813871622086,0.999214947223663,-0.0393142886459827,0.00319456541910768,0.999221861362457,-0.0393896326422691,0.00319455610588193,0.999218881130219,0.039314292371273,0.00319418217986822,0.999221861362457,0.991003513336182,0.00490619800984859,-0.133745744824409,0.997470676898956,0.00642850482836366,0.0707881301641464,0.961231052875519,0.0076998476870358,0.2756367623806,0.997484028339386,0.00437177997082472,0.0707566887140274,0.991009116172791,0.003878029063344,-0.133738353848457,0.996908843517303,0.00402900157496333,-0.0784650295972824,-0.980150103569031,-4.40218706032474e-017,0.198256880044937,-0.980150103569031,-4.40218706032474e-017,0.198256880044937,-0.980150103569031,-4.40218706032474e-017,0.198256880044937,-0.984869301319122,3.8480031814383e-017,-0.17329865694046,-0.984869301319122,3.8480031814383e-017,-0.17329865694046,-0.984869301319122,3.8480031814383e-017,-0.17329865694046,-0.956792175769806,-6.45645173041976e-017,0.29077273607254,-0.956792175769806,-6.45645173041976e-017,0.29077273607254,-0.956792175769806,-6.45645173041976e-017,0.29077273607254,-0.998343288898468,-1.27761420505714e-017,0.057538628578186,-0.998343288898468,-1.27761420505714e-017,0.057538628578186,-0.998343288898468,-1.27761420505714e-017,0.057538628578186,0.999224305152893,-0.00217678933404386,-0.0393223986029625,0.998882710933685,-0.00218599103391171,0.047208521515131,0.998884320259094,-0.00218599056825042,0.0471741706132889,0.999219715595245,-0.00321807502768934,-0.0393646992743015,0.998879551887512,-0.00321499560959637,0.0472164712846279,0.999221801757813,-0.00321808084845543,-0.0393141023814678,
  1309. 0.110417753458023,0.000875314814038575,-0.993884861469269,-0.0947968810796738,0.00153990276157856,-0.995495498180389,0.165678173303604,0.000687341671437025,-0.986179649829865,-0.0948162227869034,-0.000909626018255949,-0.995494425296783,0.110455252230167,-0.0015208040131256,-0.993879973888397,-0.125959813594818,-0.000812459969893098,-0.992035031318665,-0.999968826770782,-0.00053661415586248,0.00787799619138241,-0.999504148960114,-0.000545810791663826,-0.0314847454428673,-0.998484551906586,-0.000550912518519908,-0.0550302416086197,-0.999504446983337,0.000159508141223341,-0.0314792022109032,-0.999969005584717,3.04585555568337e-005,0.00787353236228228,-0.998885929584503,-9.85614606179297e-005,0.047190684825182,-0.0628725960850716,-0.000650050467811525,0.998021364212036,0.0393590405583382,-0.0012381843989715,0.999224364757538,0.165647551417351,-0.0019500000635162,0.986183106899261,0.0393909588456154,-0.00327962264418602,0.99921852350235,-0.0628928244113922,-0.00326991779729724,0.9980149269104,-0.110379926860332,-0.00325369602069259,0.993884146213531,-0.771545708179474,0.634838163852692,-0.0412041507661343,-0.413155406713486,0.908087015151978,-0.0684154257178307,0.441707402467728,0.893676698207855,-0.078971803188324,0.443472564220428,0.893942713737488,-0.0647952258586884,-0.41443082690239,0.908458948135376,-0.0543088465929031,0.429230451583862,0.900848805904388,-0.0650601387023926,0.415493994951248,0.908904314041138,0.0354659110307693,-0.424588561058044,0.904354870319366,0.0432068407535553,0.846548438072205,0.532098531723022,0.0150619968771935,-0.426314324140549,0.904279410839081,0.0231263060122728,0.418076574802399,0.908392012119293,0.00599716324359179,-0.556477010250092,0.83049875497818,0.0245983153581619,-0.00226312223821878,-2.2204403582477e-016,0.999997437000275,-0.00226312223821878,-2.2204403582477e-016,0.999997437000275,-0.00226312223821878,-2.2204403582477e-016,0.999997437000275,-0.00264301034621894,-2.22043824066533e-016,0.999996483325958,-0.00264301034621894,-2.22043824066533e-016,0.999996483325958,-0.00264301034621894,-2.22043824066533e-016,0.999996483325958,
  1310. 0.00237410399131477,-0.999997198581696,-1.86937322723679e-005,0.00237412168644369,-0.999997198581696,-2.22043982885211e-016,0.00237410399131477,-0.999997198581696,-1.86937322723679e-005,0.00248952931724489,-0.999996900558472,-2.22043916710762e-016,0.00248951325193048,-0.999996900558472,-1.96024666365702e-005,0.00248952931724489,-0.999996900558472,-2.22043916710762e-016,0.00148038822226226,2.22044366697015e-016,-0.999998927116394,0.00148038822226226,2.22044366697015e-016,-0.999998927116394,0.00148038822226226,2.22044366697015e-016,-0.999998927116394,0.00134956592228264,2.22044406401684e-016,-0.999999105930328,0.00134956592228264,2.22044406401684e-016,-0.999999105930328,0.00134956592228264,2.22044406401684e-016,-0.999999105930328,-0.00235847872681916,0.999997198581696,2.22043982885211e-016,-0.00235845893621445,0.999997198581696,1.85705430340022e-005,-0.00235847872681916,0.999997198581696,2.22043982885211e-016,-0.00224347179755569,0.999997496604919,1.76651337824296e-005,-0.00224349088966846,0.999997496604919,2.2204404905966e-016,-0.00224347179755569,0.999997496604919,1.76651337824296e-005,-0.885192930698395,0.464597642421722,-0.0241395272314548,-0.574931204319,0.816403388977051,-0.0542205795645714,0.5841304063797,0.808839559555054,-0.0676046013832092,0.585884034633636,0.808528661727905,-0.0549678951501846,-0.57545804977417,0.816470205783844,-0.0471640154719353,0.548776149749756,0.834070980548859,-0.0563067719340324,-0.000746390200220048,2.22044538750582e-016,-0.999999701976776,-0.000746390200220048,2.22044538750582e-016,-0.999999701976776,-0.000746390200220048,2.22044538750582e-016,-0.999999701976776,0.00118496315553784,2.22044446106354e-016,-0.999999284744263,0.00118496315553784,2.22044446106354e-016,-0.999999284744263,0.00118496315553784,2.22044446106354e-016,-0.999999284744263,-0.00204833783209324,-2.22044141703888e-016,0.999997913837433,-0.00204833783209324,-2.22044141703888e-016,0.999997913837433,-0.00204833783209324,-2.22044141703888e-016,0.999997913837433,0.00158979056868702,-2.22044326992345e-016,0.99999874830246,
  1311. 0.00158979056868702,-2.22044326992345e-016,0.99999874830246,0.00158979056868702,-2.22044326992345e-016,0.99999874830246,0.00326217990368605,-0.999994695186615,-2.22043427019839e-016,0.00326217990368605,-0.999994695186615,-2.22043427019839e-016,0.00326217990368605,-0.999994695186615,-2.22043427019839e-016,0.00272950646467507,-0.999996304512024,-2.22043784361864e-016,0.00272950646467507,-0.999996304512024,-2.22043784361864e-016,0.00272950646467507,-0.999996304512024,-2.22043784361864e-016,-0.00269005703739822,0.999996364116669,-4.23631063313223e-005,-0.00268950359895825,0.999996364116669,4.23543860961217e-005,-0.00268991873599589,0.999996364116669,-2.1180461772019e-005,-0.00301486975513399,0.999995470046997,4.74782646051608e-005,-0.00301534496247768,0.999995470046997,-2.37428721447941e-005,-0.00301486975513399,0.999995470046997,4.74782646051608e-005,0.401423752307892,0.915731906890869,0.0171464830636978,-0.395928829908371,0.918276965618134,-0.00277957855723798,0.839443206787109,0.542862474918365,0.0252105928957462,-0.395724147558212,0.918365120887756,0.00285100587643683,0.400893181562424,0.915779650211334,0.0251442268490791,-0.490979731082916,0.871170818805695,-0.00053601898252964,-0.873083472251892,0.487096190452576,-0.0215088427066803,-0.574164509773254,0.817137181758881,-0.0512064509093761,0.571331262588501,0.817668616771698,-0.0707008838653564,0.574058651924133,0.817006826400757,-0.0543756633996964,-0.575057744979858,0.817061722278595,-0.0414564684033394,0.544287383556366,0.837079584598541,-0.0552182048559189,0.00386960851028562,2.22042937328916e-016,-0.999992489814758,0.00386960851028562,2.22042937328916e-016,-0.999992489814758,0.00386960851028562,2.22042937328916e-016,-0.999992489814758,0.00361212179996073,2.22043162322043e-016,-0.999993503093719,0.00361212179996073,2.22043162322043e-016,-0.999993503093719,0.00361212179996073,2.22043162322043e-016,-0.999993503093719,0.000443449011072516,-2.22044578455252e-016,0.99999988079071,0.000443449011072516,-2.22044578455252e-016,0.99999988079071,0.000443449011072516,-2.22044578455252e-016,0.99999988079071,
  1312. 0.000505155825521797,-2.22044578455252e-016,0.99999988079071,0.000505155825521797,-2.22044578455252e-016,0.99999988079071,0.000505155825521797,-2.22044578455252e-016,0.99999988079071,0.00213403580710292,-0.999997735023499,-1.68034312082455e-005,0.0021340015809983,-0.999997735023499,1.68031619978137e-005,0.0021340015809983,-0.999997735023499,1.68031619978137e-005,0.00232283910736442,-0.999997317790985,1.829007123888e-005,0.00232287310063839,-0.999997317790985,-1.82903386303224e-005,0.00232287310063839,-0.999997317790985,-1.82903386303224e-005,-0.00182776327710599,0.999998331069946,1.43918368848972e-005,-0.00182774406857789,0.999998331069946,-1.43916859087767e-005,-0.00182776327710599,0.999998331069946,1.43918368848972e-005,-0.00195516599342227,0.999998092651367,-1.53950077219633e-005,-0.0019551960285753,0.999998092651367,1.53952441905858e-005,-0.00195516599342227,0.999998092651367,-1.53950077219633e-005,-0.402508795261383,0.915415585041046,-0.000964689999818802,0.414893686771393,0.909305930137634,0.0320299565792084,-0.548287212848663,0.836250007152557,-0.00819333270192146,0.417204439640045,0.908729672431946,0.012277782894671,-0.403219401836395,0.914794206619263,-0.0237889885902405,0.537355601787567,0.843163907527924,0.0179898329079151,0.435835719108582,0.899517416954041,-0.0302587933838367,0.706482291221619,0.706675112247467,-0.0386415831744671,-0.443344205617905,0.896333396434784,0.00569258257746696,0.436496198177338,0.898269891738892,-0.0508174411952496,-0.446133106946945,0.894786834716797,-0.0179398767650127,-0.417215347290039,0.908597528934479,-0.0195450000464916,-0.887208342552185,0.459899067878723,-0.0368020720779896,-0.471743583679199,0.880923569202423,-0.037836629897356,0.583005428314209,0.812430739402771,-0.00781374797224998,0.584486365318298,0.811168968677521,0.0195093397051096,-0.474441111087799,0.88021183013916,-0.0115189226344228,0.473847150802612,0.880453646183014,0.0164415948092937,0.702590525150299,0.711550533771515,0.00790431629866362,-0.720941483974457,0.692683219909668,0.0208179913461208,-0.806775510311127,0.590534925460815,0.019542895257473,
  1313. -0.722032606601715,0.69179892539978,0.00912475120276213,0.703546345233917,0.710622847080231,-0.00614504795521498,0.770812809467316,0.637023270130157,-0.00701327715069056,-0.000111766981717665,-1,8.80054983554146e-007,-0.000111762550659478,-1,-8.80020081694965e-007,-0.000111762550659478,-1,-8.80020081694965e-007,-0.00318948249332607,-0.999994933605194,-2.5114035452134e-005,-0.00318960542790592,-0.999994933605194,2.51150049734861e-005,-0.00318960542790592,-0.999994933605194,2.51150049734861e-005,0.00611331686377525,2.22040449169634e-016,-0.999981284141541,0.00611839676275849,0.00787362456321716,-0.999950289726257,0.00611839676275849,0.00787362456321716,-0.999950289726257,0.00418520485982299,0.00787370279431343,-0.999960243701935,0.00418576691299677,2.22042659396231e-016,-0.999991238117218,0.00418576691299677,2.22042659396231e-016,-0.999991238117218,0.492475301027298,0.868046998977661,-0.0629471689462662,0.874930858612061,0.481649428606033,-0.0500979796051979,-0.613037705421448,0.789464712142944,-0.0304981246590614,-0.614442408084869,0.788898646831512,-0.00998384598642588,-0.535861790180206,0.844186961650848,-0.0141665246337652,0.495008885860443,0.86774730682373,-0.0445069819688797,-0.00490428833290935,-2.22041931477292e-016,0.999987959861755,-0.00490417098626494,0.00787367671728134,0.999956965446472,-0.00490428833290935,-2.22041931477292e-016,0.999987959861755,-0.00626846915110946,0.00787361711263657,0.999949336051941,-0.00626094546169043,-2.22040250646287e-016,0.999980390071869,-0.00626846915110946,0.00787361711263657,0.999949336051941,0.00226456555537879,0.999997437000275,-1.7831223885878e-005,0.00226447824388742,0.999997437000275,1.78305363078834e-005,0.00226456555537879,0.999997437000275,-1.7831223885878e-005,-0.00121299165766686,0.999999284744263,-9.55111590883462e-006,-0.00121304020285606,0.999999284744263,9.55149789660936e-006,-0.00121299165766686,0.999999284744263,-9.55111590883462e-006,-0.42661041021347,0.904259204864502,0.0178556181490421,0.40259775519371,0.915370404720306,-0.00348987337201834,-0.546648979187012,0.837112128734589,0.0204505827277899,
  1314. 0.40300390124321,0.91505640745163,-0.0161146894097328,-0.427779972553253,0.903874695301056,0.00384714221581817,0.51072758436203,0.859547913074493,-0.0183003284037113,0.409876972436905,0.91204434633255,0.0132694374769926,-0.388205736875534,0.921536028385162,-0.00822659581899643,-0.482565701007843,0.87579220533371,-0.0108821019530296,-0.388512969017029,0.921426832675934,-0.00549413589760661,0.409707576036453,0.912157297134399,0.0104336328804493,0.514274477958679,0.857536315917969,0.0123886372894049,0.0024304729886353,-0.999997019767761,-2.22043943180541e-016,0.00243039708584547,-0.999997019767761,-1.91369854292134e-005,0.0024304729886353,-0.999997019767761,-2.22043943180541e-016,0.00222140830010176,-0.999997556209564,-1.74914039234864e-005,0.00222148280590773,-0.999997556209564,-2.22044062294549e-016,0.00222133402712643,-0.999997556209564,-3.49816400557756e-005,-0.00221828976646066,2.22044062294549e-016,-0.999997556209564,-0.00221828976646066,2.22044062294549e-016,-0.999997556209564,-0.00221828976646066,2.22044062294549e-016,-0.999997556209564,-0.00238282466307282,2.22043969650321e-016,-0.999997138977051,-0.00238282466307282,2.22043969650321e-016,-0.999997138977051,-0.00238282466307282,2.22043969650321e-016,-0.999997138977051,-0.000585370289627463,0.999999821186066,2.22044565220362e-016,-0.000585348228923976,0.999999821186066,4.60904129795381e-006,-0.000585348228923976,0.999999821186066,4.60904129795381e-006,-0.000836116261780262,0.999999642372131,6.58359249428031e-006,-0.000836149323731661,0.999999642372131,2.22044525515693e-016,-0.000836149323731661,0.999999642372131,2.22044525515693e-016,0.000495329091791064,-2.22044578455252e-016,0.99999988079071,0.000495329091791064,-2.22044578455252e-016,0.99999988079071,0.000495329091791064,-2.22044578455252e-016,0.99999988079071,0.00092551251873374,-2.22044512280803e-016,0.999999582767487,0.00092551251873374,-2.22044512280803e-016,0.999999582767487,0.00092551251873374,-2.22044512280803e-016,0.999999582767487,-0.00372824911028147,-2.22043056442925e-016,0.999993026256561,-0.00372824911028147,-2.22043056442925e-016,0.999993026256561,
  1315. -0.00372824911028147,-2.22043056442925e-016,0.999993026256561,-0.00517697166651487,-2.22041627074826e-016,0.999986588954926,-0.00517697166651487,-2.22041627074826e-016,0.999986588954926,-0.00517697166651487,-2.22041627074826e-016,0.999986588954926,0.0024359617382288,-0.999997019767761,-2.22043943180541e-016,0.0024359617382288,-0.999997019767761,-2.22043943180541e-016,0.0024359617382288,-0.999997019767761,-2.22043943180541e-016,0.00263463100418448,-0.999996542930603,-2.22043837301423e-016,0.00263463100418448,-0.999996542930603,-2.22043837301423e-016,0.00263463100418448,-0.999996542930603,-2.22043837301423e-016,0.0012399812694639,2.22044432871464e-016,-0.999999225139618,0.0012399812694639,2.22044432871464e-016,-0.999999225139618,0.0012399812694639,2.22044432871464e-016,-0.999999225139618,0.00136648025363684,2.22044393166794e-016,-0.999999046325684,0.00136648025363684,2.22044393166794e-016,-0.999999046325684,0.00136648025363684,2.22044393166794e-016,-0.999999046325684,-0.00219344347715378,0.999997615814209,2.22044075529439e-016,-0.00219344347715378,0.999997615814209,2.22044075529439e-016,-0.00219344347715378,0.999997615814209,2.22044075529439e-016,-0.00292493216693401,0.999995708465576,2.22043652012966e-016,-0.00292493216693401,0.999995708465576,2.22043652012966e-016,-0.00292493216693401,0.999995708465576,2.22043652012966e-016,0.771647751331329,0.63466215133667,0.0419976860284805,0.413047075271606,0.908048331737518,0.0695720091462135,-0.441561967134476,0.893647432327271,0.0801077038049698,-0.44343826174736,0.893939197063446,0.0650778636336327,0.41440612077713,0.908453285694122,0.0545914471149445,-0.429244697093964,0.900821387767792,0.0653439164161682,-0.846548557281494,0.532098352909088,-0.0150631442666054,-0.415493875741959,0.908904314041138,-0.0354666411876678,0.424588590860367,0.904354870319366,-0.0432065576314926,0.426314413547516,0.904279410839081,-0.0231249872595072,-0.418076545000076,0.908392012119293,-0.00599744822829962,0.556476950645447,0.830498933792114,-0.024596780538559,0.00226188381202519,2.2204403582477e-016,-0.999997437000275,
  1316. 0.00226188381202519,2.2204403582477e-016,-0.999997437000275,0.00226188381202519,2.2204403582477e-016,-0.999997437000275,0.00136166997253895,2.22044393166794e-016,-0.999999046325684,0.00136166997253895,2.22044393166794e-016,-0.999999046325684,0.00136166997253895,2.22044393166794e-016,-0.999999046325684,-0.00236320332624018,-0.999997198581696,1.86079014383722e-005,-0.00236322125419974,-0.999997198581696,-2.22043982885211e-016,-0.00236320332624018,-0.999997198581696,1.86079014383722e-005,-0.00239713047631085,-0.999997138977051,-2.22043969650321e-016,-0.00239711510948837,-0.999997138977051,1.88749218068551e-005,-0.00239713047631085,-0.999997138977051,-2.22043969650321e-016,-0.00147924246266484,-2.22044366697015e-016,0.999998927116394,-0.00147924246266484,-2.22044366697015e-016,0.999998927116394,-0.00147924246266484,-2.22044366697015e-016,0.999998927116394,-0.00135007768403739,-2.22044406401684e-016,0.999999105930328,-0.00135007768403739,-2.22044406401684e-016,0.999999105930328,-0.00135007768403739,-2.22044406401684e-016,0.999999105930328,0.00233336351811886,0.99999725818634,-1.83729425771162e-005,0.00233338307589293,0.99999725818634,2.220439961201e-016,0.00233338307589293,0.99999725818634,2.220439961201e-016,0.00222146767191589,0.999997556209564,2.22044062294549e-016,0.00222144881263375,0.999997556209564,-1.74917240656214e-005,0.00222144881263375,0.999997556209564,-1.74917240656214e-005,0.886644601821899,0.460847616195679,0.0384838245809078,0.572120547294617,0.817041575908661,0.0715622529387474,-0.586410284042358,0.80658233165741,0.0744848325848579,-0.588171005249023,0.806297242641449,0.0627666041254997,0.572862684726715,0.817113876342773,0.0644460096955299,-0.549970328807831,0.832661926746368,0.0648601204156876,-0.0136016299948096,-2.2202406437606e-016,0.999907493591309,-0.0136016299948096,-2.2202406437606e-016,0.999907493591309,-0.0136016299948096,-2.2202406437606e-016,0.999907493591309,-0.0124692767858505,-2.22027346628731e-016,0.999922275543213,-0.0124692767858505,-2.22027346628731e-016,0.999922275543213,-0.0124692767858505,-2.22027346628731e-016,0.999922275543213,
  1317. 0.0123058008030057,2.22027796614984e-016,-0.999924302101135,0.0123058008030057,2.22027796614984e-016,-0.999924302101135,0.0123058008030057,2.22027796614984e-016,-0.999924302101135,0.0153252510353923,2.22018532192124e-016,-0.999882578849792,0.0153252510353923,2.22018532192124e-016,-0.999882578849792,0.0153252510353923,2.22018532192124e-016,-0.999882578849792,-0.00311389402486384,-0.999995172023773,-2.45188512053574e-005,-0.00311364280059934,-0.999995172023773,-4.90337442897726e-005,-0.00311389402486384,-0.999995172023773,-2.45188512053574e-005,-0.00291851116344333,-0.999995768070221,-4.59608054370619e-005,-0.00291874911636114,-0.999995827674866,-2.2982278096606e-005,-0.00291851116344333,-0.999995768070221,-4.59608054370619e-005,0.00188155169598758,0.999998211860657,2.22044207878337e-016,0.00188123155385256,0.999998271465302,4.44385441369377e-005,0.00188123155385256,0.999998271465302,4.44385441369377e-005,0.0021311619784683,0.999997794628143,5.03424053022172e-005,0.00213152216747403,0.999997735023499,2.22044101999219e-016,0.00213152216747403,0.999997735023499,2.22044101999219e-016,-0.834401488304138,0.549205005168915,-0.0463479533791542,-0.399790287017822,0.916072845458984,-0.0312766283750534,0.393162429332733,0.919452846050262,0.00547209475189447,0.392928719520569,0.919568240642548,-0.00115065276622772,-0.399752378463745,0.916075348854065,-0.0316875874996185,0.505977988243103,0.862536013126373,0.00422532856464386,0.877058506011963,0.479781657457352,0.024043146520853,0.56952166557312,0.819986462593079,0.0571604296565056,-0.569279193878174,0.818555772304535,0.0767317190766335,-0.572295606136322,0.817825675010681,0.0603238455951214,0.570433437824249,0.8199303150177,0.0481671765446663,-0.545066595077515,0.836152791976929,0.061244685202837,-0.00337678915821016,2.65888920694124e-005,0.999994277954102,-0.00337690184824169,-2.65897797362413e-005,0.999994277954102,-0.00337678915821016,2.65888920694124e-005,0.999994277954102,-0.00316896475851536,-2.49524782702792e-005,0.999994993209839,-0.00316886021755636,2.49516560870688e-005,0.999994993209839,
  1318. -0.00316896475851536,-2.49524782702792e-005,0.999994993209839,-0.000321057246765122,-2.52800987254886e-006,-0.999999940395355,-0.000321044324664399,2.52790800914227e-006,-0.999999940395355,-0.000321044324664399,2.52790800914227e-006,-0.999999940395355,-0.000660676509141922,5.20217736266204e-006,-0.999999761581421,-0.000660694146063179,-5.20231606060406e-006,-0.999999761581421,-0.000660694146063179,-5.20231606060406e-006,-0.999999761581421,-0.00495581701397896,-0.999987721443176,-2.22041878537732e-016,-0.00495581701397896,-0.999987721443176,-2.22041878537732e-016,-0.00495581701397896,-0.999987721443176,-2.22041878537732e-016,-0.0037979471962899,-0.999992787837982,-2.22043003503365e-016,-0.0037979471962899,-0.999992787837982,-2.22043003503365e-016,-0.0037979471962899,-0.999992787837982,-2.22043003503365e-016,0.0034866367932409,0.999993920326233,2.22043254966272e-016,0.0034866367932409,0.999993920326233,2.22043254966272e-016,0.0034866367932409,0.999993920326233,2.22043254966272e-016,0.00561898201704025,0.999984204769135,2.22041097679234e-016,0.00561898201704025,0.999984204769135,2.22041097679234e-016,0.00561898201704025,0.999984204769135,2.22041097679234e-016,-0.300982475280762,0.953603982925415,-0.00700305309146643,0.482436388731003,0.875417113304138,0.0299994181841612,-0.488835155963898,0.872217178344727,-0.0166577696800232,0.481742918491364,0.876304447650909,0.00377885578200221,-0.297557950019836,0.954153656959534,-0.0324050672352314,0.631108045578003,0.775595247745514,0.0124391578137875,0.45290219783783,0.891548037528992,-0.00465962290763855,-0.436407685279846,0.898912787437439,0.0387839265167713,-0.719642996788025,0.692644894123077,0.0485506951808929,-0.437150180339813,0.897401213645935,0.0597564876079559,0.456306546926498,0.889598786830902,0.0199604295194149,0.423356533050537,0.90569269657135,0.0221406575292349,0.418811857700348,0.908061981201172,0.00450996914878488,0.931052505970001,0.363685220479965,0.0295684449374676,-0.542747437953949,0.839372396469116,-0.029651340097189,0.418540924787521,0.908197999000549,-0.000286009191768244,
  1319. -0.542147696018219,0.839536666870117,-0.0354131087660789,-0.458471834659576,0.888091921806335,-0.0331092551350594,-0.696209788322449,0.71759170293808,0.0188201665878296,-0.772931158542633,0.634129583835602,0.0213813334703445,0.728102028369904,0.685049116611481,-0.023985218256712,0.726662874221802,0.686022281646729,-0.0365324504673481,0.811090528964996,0.583775222301483,-0.0365866459906101,-0.695359885692596,0.718654096126556,0.00328983296640217,6.10460701864213e-005,-1,4.80677726955037e-007,6.10481220064685e-005,-1,-4.80693870485993e-007,6.10460701864213e-005,-1,4.80677726955037e-007,0.00316153094172478,-0.999994993209839,-2.48939450102625e-005,0.00316142849624157,-0.999994993209839,2.48931373789674e-005,0.00316153094172478,-0.999994993209839,-2.48939450102625e-005,-0.00552957877516747,0.00787365157157183,0.999953746795654,-0.00552957877516747,0.00787365157157183,0.999953746795654,-0.00552957877516747,0.00787365157157183,0.999953746795654,-0.00339814624749124,0.0078737260773778,0.999963223934174,-0.00339814624749124,0.0078737260773778,0.999963223934174,-0.00339814624749124,0.0078737260773778,0.999963223934174,-0.495060950517654,0.867292523384094,0.052137553691864,-0.870409190654755,0.490848779678345,0.0381481386721134,0.613132357597351,0.789336860179901,0.0318792723119259,-0.496908962726593,0.867073059082031,0.0355788394808769,0.614300429821014,0.788955807685852,0.0135634578764439,0.537835597991943,0.842886805534363,0.016579968854785,0.00418282300233841,0.00787370279431343,-0.999960243701935,0.00418282300233841,0.00787370279431343,-0.999960243701935,0.00418282300233841,0.00787370279431343,-0.999960243701935,0.00523608876392245,0.0078736636787653,-0.999955296516418,0.00523608876392245,0.0078736636787653,-0.999955296516418,0.00523608876392245,0.0078736636787653,-0.999955296516418,-0.00257270969450474,0.999996662139893,2.02575556613738e-005,-0.00257262587547302,0.999996662139893,-2.02568953682203e-005,-0.00257270969450474,0.999996662139893,2.02575556613738e-005,0.00123043858911842,0.999999225139618,9.68849326454801e-006,
  1320. 0.00123048014938831,0.999999225139618,-9.68882068264065e-006,0.00123043858911842,0.999999225139618,9.68849326454801e-006,-0.402891010046005,0.914904296398163,0.0250793285667896,0.426909595727921,0.904221832752228,-0.0114487670361996,-0.512833774089813,0.857982695102692,0.0294481106102467,0.424842059612274,0.904758453369141,-0.0303545203059912,-0.402628690004349,0.915331125259399,0.0076779848895967,0.546836733818054,0.836500287055969,-0.0351682119071484,0.381535559892654,0.924331724643707,0.00645896885544062,-0.412873417139053,0.910704374313354,-0.0123817380517721,-0.517221629619598,0.855725169181824,-0.0147064402699471,-0.412974655628204,0.910636425018311,-0.0138992164283991,0.380963325500488,0.924525856971741,0.0109116109088063,0.486405342817307,0.873616814613342,0.0142638180404902,-0.00254812301136553,-0.999996840953827,-2.00639606191544e-005,-0.00254831067286432,-0.999996840953827,2.00654376385501e-005,-0.00254812301136553,-0.999996840953827,-2.00639606191544e-005,-0.00218299520201981,-0.999997615814209,1.71889387274859e-005,-0.00218284013681114,-0.999997615814209,-1.71877181855962e-005,-0.00218299520201981,-0.999997615814209,1.71889387274859e-005,-0.00637420453131199,-2.22040091827609e-016,0.999979674816132,-0.00637420453131199,-2.22040091827609e-016,0.999979674816132,-0.00637420453131199,-2.22040091827609e-016,0.999979674816132,-0.00638662045821548,-2.22040078592719e-016,0.999979615211487,-0.00638662045821548,-2.22040078592719e-016,0.999979615211487,-0.00638662045821548,-2.22040078592719e-016,0.999979615211487,0.000624250445980579,0.999999821186066,2.22044565220362e-016,0.000624231935944408,0.999999821186066,4.91521177536924e-006,0.000624250445980579,0.999999821186066,2.22044565220362e-016,0.000853976234793663,0.999999642372131,6.7242226577946e-006,0.000853999401442707,0.999999642372131,2.22044525515693e-016,0.000853976234793663,0.999999642372131,6.7242226577946e-006,0.00881353579461575,2.22035975776881e-016,-0.999961137771606,0.00881353579461575,2.22035975776881e-016,-0.999961137771606,0.00881353579461575,2.22035975776881e-016,-0.999961137771606,
  1321. 0.00905772112309933,2.22035499320848e-016,-0.999958992004395,0.00905772112309933,2.22035499320848e-016,-0.999958992004395,0.00905772112309933,2.22035499320848e-016,-0.999958992004395,-0.0153484418988228,2.22018452782785e-016,-0.999882221221924,-0.0153484418988228,2.22018452782785e-016,-0.999882221221924,-0.0153484418988228,2.22018452782785e-016,-0.999882221221924,-0.0139948595315218,2.22022860001089e-016,-0.999902069568634,-0.0139948595315218,2.22022860001089e-016,-0.999902069568634,-0.0139948595315218,2.22022860001089e-016,-0.999902069568634,-0.00239686388522387,-0.999997138977051,3.77458854927681e-005,-0.00239686388522387,-0.999997138977051,3.77458854927681e-005,-0.00239686388522387,-0.999997138977051,3.77458854927681e-005,-0.00255344831384718,-0.999996721744537,4.02117875637487e-005,-0.00255344831384718,-0.999996721744537,4.02117875637487e-005,-0.00255344831384718,-0.999996721744537,4.02117875637487e-005,0.0175445843487978,-2.22010432439566e-016,0.99984610080719,0.0175445843487978,-2.22010432439566e-016,0.99984610080719,0.0175445843487978,-2.22010432439566e-016,0.99984610080719,0.0176209434866905,-2.220101280371e-016,0.99984472990036,0.0176209434866905,-2.220101280371e-016,0.99984472990036,0.0176209434866905,-2.220101280371e-016,0.99984472990036,0.00226151500828564,0.999997437000275,-3.56144082616083e-005,0.00226118392311037,0.999997496604919,-5.34137907379773e-005,0.00226151500828564,0.999997437000275,-3.56144082616083e-005,0.00218315073288977,0.999997675418854,-5.15704923600424e-005,0.00218347017653286,0.999997615814209,-3.43853571393993e-005,0.00218315073288977,0.999997675418854,-5.15704923600424e-005,-0.99983823299408,3.99410734857099e-018,-0.0179878603667021,-0.999551713466644,0.0233155749738216,-0.0187884606420994,-0.99983823299408,3.99410734857099e-018,-0.0179878603667021,-0.999802649021149,4.41095674646096e-018,-0.019865183159709,-0.999540448188782,0.0233059376478195,-0.0193835366517305,-0.999540448188782,0.0233059376478195,-0.0193835366517305,0.999970376491547,-1.70852170289358e-018,0.00769449770450592,
  1322. 0.999698460102081,-0.0235029831528664,0.00710814539343119,0.999970376491547,-1.70852170289358e-018,0.00769449770450592,0.999716639518738,-0.0235619675368071,0.00339005095884204,0.999996304512024,-6.01523931990972e-019,0.00270902295596898,0.999716639518738,-0.0235619675368071,0.00339005095884204,-0.99815034866333,0.0550161562860012,-0.0258664451539516,-0.999205887317657,0.0310784112662077,-0.0249326601624489,-0.99815034866333,0.0550161562860012,-0.0258664451539516,-0.999431908130646,0.0312805771827698,-0.0125471688807011,-0.998404026031494,0.0550301410257816,-0.0126906130462885,-0.999647676944733,0.0234169028699398,-0.0124981366097927,0.0550334602594376,0.998464286327362,-0.00636041583493352,0.0314798317849636,0.999484658241272,-0.00628280127421021,0.0550334602594376,0.998464286327362,-0.00636041583493352,0.0314799025654793,0.999486923217773,0.00590936467051506,0.0550332367420197,0.998460173606873,0.00697731180116534,0.0236150976270437,0.999705791473389,0.00555220618844032,0,0.999980866909027,-0.00618501007556915,0.039338506758213,0.999198019504547,-0.00746560003608465,0,0.999980866909027,-0.00618501007556915,0.0393387228250504,0.999203562736511,0.0066816327162087,0,0.999986708164215,0.00515125971287489,0.0471903085708618,0.998861491680145,0.00698612164705992,-0.000172512125573121,-0.99975997209549,0.0219090394675732,-0.039492703974247,-0.999009072780609,0.0205280147492886,-0.000172512125573121,-0.99975997209549,0.0219090394675732,-7.49779137549922e-005,-0.999954640865326,0.00952219497412443,-0.039419449865818,-0.999168336391449,0.0104284686967731,-0.0472721420228481,-0.998825788497925,0.0106075815856457,0.99953305721283,0.0232996996492147,0.0197685658931732,0.999794900417328,-4.49679741452866e-018,0.0202517751604319,0.99953305721283,0.0232996996492147,0.0197685658931732,0.999551713466644,0.0233155749738216,0.0187884587794542,0.99983823299408,-3.99410693498069e-018,0.0179878585040569,0.99983823299408,-3.99410693498069e-018,0.0179878585040569,-0.999716639518738,-0.0235619675368071,-0.00339006539434195,-0.999996304512024,6.01527499207363e-019,-0.00270903902128339,
  1323. -0.999716639518738,-0.0235619675368071,-0.00339006539434195,-0.999970376491547,1.70852687277241e-018,-0.00769452098757029,-0.999698460102081,-0.0235029831528664,-0.0071081668138504,-0.999970376491547,1.70852687277241e-018,-0.00769452098757029,0.999422371387482,0.0312681943178177,0.0133145255967975,0.998394012451172,0.0550295896828175,0.0134577108547091,0.999638080596924,0.0234045926481485,0.0132655054330826,0.99815034866333,0.0550161562860012,0.0258664451539516,0.999205887317657,0.0310784112662077,0.0249326601624489,0.99815034866333,0.0550161562860012,0.0258664451539516,-0.0314799733459949,0.99948912858963,-0.00552846072241664,-0.0550333745777607,0.998462736606598,-0.00659275986254215,-0.0236151441931725,0.999707758426666,-0.00517256604507566,-0.0550337396562099,0.998469233512878,0.00553957046940923,-0.0314799845218658,0.999489486217499,0.00546111539006233,-0.0550337396562099,0.998469233512878,0.00553957046940923,-0.0393387414515018,0.999204039573669,-0.00661360006779432,0,0.999987065792084,-0.00508418632671237,-0.0471903309226036,0.998861968517303,-0.00691791018471122,-0,0.999981164932251,0.00613707583397627,-0.0393385179340839,0.999198377132416,0.00741831213235855,-0,0.999981164932251,0.00613707583397627,0.0472738109529018,-0.998823225498199,-0.0108348308131099,7.6793585321866e-005,-0.999952435493469,-0.00975278485566378,0.0394211523234844,-0.999165952205658,-0.0106563093140721,0.0394941419363022,-0.999004721641541,-0.0207323618233204,0.000174100379808806,-0.999755501747131,-0.0221107471734285,0.000174100379808806,-0.999755501747131,-0.0221107471734285,-0.00786987971514463,0.999474704265594,0.0314383991062641,-0.00786987971514463,0.999474704265594,0.0314383991062641,-0.00786987971514463,0.999474704265594,0.0314383991062641,-0.00786965992301703,0.999446749687195,0.0323181673884392,-0.00786965992301703,0.999446749687195,0.0323181673884392,-0.00786965992301703,0.999446749687195,0.0323181673884392,-0.00786677934229374,-0.999080955982208,-0.0421367399394512,-0.00786677934229374,-0.999080955982208,-0.0421367399394512,
  1324. -0.00786677934229374,-0.999080955982208,-0.0421367399394512,-0.00786647014319897,-0.999041736125946,-0.0430569164454937,-0.00786647014319897,-0.999041736125946,-0.0430569164454937,-0.00786647014319897,-0.999041736125946,-0.0430569164454937,-0.00793680362403393,-0.99993622303009,-0.00803783256560564,-6.42067825538106e-005,-0.999966740608215,-0.00815426185727119,-0.00793680362403393,-0.99993622303009,-0.00803783256560564,9.91832202998921e-005,-0.999920666217804,0.0125962691381574,-0.00777430413290858,-0.999890983104706,0.012554369866848,9.91832202998921e-005,-0.999920666217804,0.0125962691381574,-0.000180710529093631,0.999736607074738,-0.0229502376168966,0.00769117474555969,0.999707639217377,-0.0229283943772316,-0.000180710529093631,0.999736607074738,-0.0229502376168966,2.53666130447527e-005,0.999994814395905,0.00322155980393291,0.00789811834692955,0.999963998794556,0.00309709808789194,0.00789811834692955,0.999963998794556,0.00309709808789194,0.0321617349982262,-0.998452603816986,-0.0453649535775185,0.023233700543642,-0.998698055744171,-0.0454139299690723,0.023233700543642,-0.998698055744171,-0.0454139299690723,0.0232284963130951,-0.998671531677246,-0.0459955632686615,0.0321721881628037,-0.998418807983398,-0.0460963398218155,0.0321721881628037,-0.998418807983398,-0.0460963398218155,-0.0232397131621838,0.998728334903717,0.0447412729263306,-0.0164333321154118,0.998867571353912,0.0446489937603474,-0.0228876899927855,0.998736619949341,0.0447365455329418,-0.0164600592106581,0.998785972595215,0.0464278236031532,-0.0232249405235052,0.998653292655945,0.0463923811912537,-0.0164600592106581,0.998785972595215,0.0464278236031532,-0.0444936528801918,0.716258764266968,-0.696414887905121,-0.0222639311105013,0.715432822704315,-0.698326826095581,-0.0444936528801918,0.716258764266968,-0.696414887905121,-0.0222655404359102,0.706028461456299,-0.707833349704742,-0.0444977656006813,0.703947484493256,-0.708856761455536,-0.0166969317942858,0.706494212150574,-0.707521736621857,0.044612992554903,-0.713835477828979,0.69889098405838,0.0222637448459864,-0.715901672840118,0.697846114635468,
  1325. 0.044612992554903,-0.713835477828979,0.69889098405838,0.0222579576075077,-0.725165486335754,0.688214778900146,0.0447927191853523,-0.725984692573547,0.686250567436218,0.0168382730334997,-0.724913120269775,0.6886345744133,-0.0444968603551388,0.711532235145569,-0.701243162155151,-0.0222652480006218,0.710655331611633,-0.703188002109528,-0.0444968603551388,0.711532235145569,-0.701243162155151,-0.0222647525370121,0.70089465379715,-0.71291720867157,-0.0444954596459866,0.69875568151474,-0.713975250720978,-0.0166563149541616,0.70137882232666,-0.712594091892242,0.0446129813790321,-0.713834583759308,0.698891997337341,0.0222637429833412,-0.715900778770447,0.697847008705139,0.0446129813790321,-0.713834583759308,0.698891997337341,0.0222579576075077,-0.725165486335754,0.688214778900146,0.0447927191853523,-0.725984632968903,0.686250627040863,0.0168382748961449,-0.72491317987442,0.688634514808655,-0.0236152745783329,0.999713242053986,0.00399460829794407,-0.055034264922142,0.998478829860687,0.00337891536764801,-0.0236152745783329,0.999713242053986,0.00399460829794407,-0.0236151963472366,0.999709963798523,0.00472413841634989,-0.0550338104367256,0.998470544815063,0.00528939487412572,-0.0550338104367256,0.998470544815063,0.00528939487412572,0.0236088149249554,-0.999439775943756,-0.0237263012677431,0.0552090965211391,-0.998179078102112,-0.0243015587329865,0.0236088149249554,-0.999439775943756,-0.0237263012677431,0.0552035309374332,-0.998199760913849,-0.0234504714608192,0.0236085653305054,-0.999429285526276,-0.0241642575711012,0.0552035309374332,-0.998199760913849,-0.0234504714608192,-0.0236154198646545,0.999719440937042,-0.0018841220298782,-0.0471913442015648,0.998883426189423,-0.00221127551048994,-0.0236154198646545,0.999719440937042,-0.0018841220298782,-0.0236152093857527,0.999710559844971,0.00461290962994099,-0.0471908859908581,0.998873770236969,0.00491558248177171,-0.0471908859908581,0.998873770236969,0.00491558248177171,0.0236134342849255,-0.999635338783264,-0.0130989458411932,0.0472925938665867,-0.998791038990021,-0.0134129170328379,
  1326. 0.0236134342849255,-0.999635338783264,-0.0130989458411932,0.0473289713263512,-0.998707413673401,-0.018535016104579,0.0236111357808113,-0.999538123607636,-0.0191324949264526,0.0473289713263512,-0.998707413673401,-0.018535016104579,-0.0157459881156683,0.999870240688324,0.00339880771934986,-0.0471912771463394,0.998881995677948,0.00278302212245762,-0.0157459881156683,0.999870240688324,0.00339880771934986,-0.0157459229230881,0.99986606836319,0.00446819700300694,-0.0471908636391163,0.998873233795166,0.00504659581929445,-0.0471908636391163,0.998873233795166,0.00504659581929445,0.0157401748001575,-0.99950110912323,-0.0273832734674215,0.0473927184939384,-0.99848473072052,-0.0279671307653189,0.0157401748001575,-0.99950110912323,-0.0273832734674215,0.0473843179643154,-0.998520195484161,-0.0266869384795427,0.0157401729375124,-0.999500930309296,-0.0273885503411293,0.0473843179643154,-0.998520195484161,-0.0266869384795427,-0.00533236935734749,0.999953806400299,-0.00799961294978857,-0.00532975839450955,0.999953508377075,-0.00804151594638824,-0.00583339994773269,0.999983072280884,4.59322836832143e-005,6.79818094795337e-006,1,-5.3528982135731e-008,6.79790764479549e-006,1,-1.07053665487911e-007,-3.3336993510602e-005,0.999969065189362,-0.00787455961108208,0.000287027098238468,1,-2.26005590775458e-006,0.000286982918623835,1,-4.51941650680965e-006,0.000286982918623835,1,-4.51941650680965e-006,-0.00985791441053152,-0.999922811985016,0.00756292231380939,-0.00985523033887148,-0.99992173910141,0.00771819893270731,-0.00998712982982397,-0.999950230121613,7.86388118285686e-005,-0.000655097595881671,-0.999968886375427,0.00786345358937979,-0.000699781987350434,-0.999999761581421,1.10201890493045e-005,-0.000699813303072006,-0.999999761581421,5.51034099771641e-006,0.00155903247650713,-0.999998807907104,-2.45516930590384e-005,0.00155928148888052,-0.999998807907104,-1.22778064906015e-005,0.00155903247650713,-0.999998807907104,-2.45516930590384e-005,-0.000293655728455633,0.999969065189362,0.00786914769560099,-0.000243479633354582,1,3.83432507078396e-006,
  1327. -0.000243442947976291,1,-1.91687377082417e-006,-0.000613005191553384,0.999999821186066,9.65362505667144e-006,-0.000730493862647563,0.999968826770782,0.00786226708441973,-0.000612933014053851,0.999999821186066,4.82624409414711e-006,-3.47798663824506e-006,1,5.47714442689085e-008,-3.47842455994396e-006,1,2.73891700430795e-008,-3.47798663824506e-006,1,5.47714442689085e-008,0.000408774852985516,-0.999999940395355,-6.43739940642263e-006,0.000408681225962937,-0.999999940395355,6.4359246607637e-006,0.000408681225962937,-0.999999940395355,6.4359246607637e-006,8.63831373862922e-005,-1,1.36036442199838e-006,8.64251414895989e-005,-1,-1.36102585202025e-006,8.64041357999668e-005,-1,-2.22044604925031e-016,0.00141971942503005,-0.999998986721039,-2.22044379931905e-016,0.00141933537088335,-0.999998986721039,-2.23517381527927e-005,0.00141933537088335,-0.999998986721039,-2.23517381527927e-005
  1328. }
  1329. BinormalsW: *1086 {
  1330. 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,
  1331. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1332. }
  1333. }
  1334. LayerElementBinormal: 1 {
  1335. Version: 102
  1336. Name: "LightMapUV"
  1337. MappingInformationType: "ByPolygonVertex"
  1338. ReferenceInformationType: "Direct"
  1339. Binormals: *3258 {
  1340. a: 0.0504148006439209,0.000793933868408203,-0.998728156089783,0.0503950901329517,2.21762463544257e-016,-0.998729348182678,0.0503950901329517,2.21762463544257e-016,-0.998729348182678,-0.241606071591377,-0.0864823460578918,-0.96651291847229,-0.619707643985748,-0.134411692619324,-0.773237347602844,0.583639740943909,0.0477339625358582,-0.810608506202698,-0.00776311568915844,0.00140531244687736,0.999968886375427,0,0.00063399423379451,0.999999821186066,-0.00776311568915844,0.00140531244687736,0.999968886375427,-0.00787377171218395,-4.00395992983249e-006,0.999969005584717,-0.00787408743053675,-4.0039885789156e-006,0.999969065189362,-0.00787377171218395,-4.00395992983249e-006,0.999969005584717,-0.0212781429290771,0.999773621559143,2.21994338813568e-016,-0.0212781429290771,0.999773621559143,2.21994338813568e-016,-0.0212781429290771,0.999773621559143,2.21994338813568e-016,-0.00580421183258295,0.999983131885529,2.22040859451218e-016,-0.00580421183258295,0.999983131885529,2.22040859451218e-016,-0.00580421183258295,0.999983131885529,2.22040859451218e-016,0.00219131074845791,-0.0079945269972086,0.999965667724609,0.00886858347803354,0.0155360195785761,0.999840080738068,0.00219131074845791,-0.0079945269972086,0.999965667724609,-0.0316532514989376,-0.999233603477478,0.0230287853628397,-0.0552076771855354,-0.998184382915497,0.0240841582417488,-0.0236093923449516,-0.999464273452759,0.0226656217128038,-0.0611927174031734,-2.21628486754803e-016,0.998125970363617,-0.0598541684448719,0.0180736817419529,0.998043537139893,-0.0598541684448719,0.0180736817419529,0.998043537139893,-0,-0.00787377171218395,0.999969005584717,0,0.0157460793852806,0.999876081943512,-0,-0.00787377171218395,0.999969005584717,-0.999998807907104,0.00154331908561289,3.42685676638175e-019,-0.999998807907104,0.00154331908561289,3.42685676638175e-019,-0.999998807907104,0.00154331908561289,3.42685676638175e-019,-0.999958515167236,-0.00911115109920502,-2.02308194623524e-018,-0.999958515167236,-0.00911115109920502,-2.02308194623524e-018,-0.999958515167236,-0.00911115109920502,-2.02308194623524e-018,
  1341. -0.999974310398102,0.00716418353840709,1.59076830339601e-018,-0.999974310398102,0.00716418353840709,1.59076830339601e-018,-0.999974310398102,0.00716418353840709,1.59076830339601e-018,-1,0,0,-1,0,0,-1,0,0,0.00776363257318735,0.00139875104650855,-0.999968886375427,0,0.000627379689831287,-0.999999821186066,0.00776363257318735,0.00139875104650855,-0.999968886375427,0.00787408743053675,-4.0039885789156e-006,-0.999969065189362,0.00787377171218395,-4.00395992983249e-006,-0.999969005584717,0.00787377171218395,-4.00395992983249e-006,-0.999969005584717,0.021278141066432,0.999773621559143,2.21994338813568e-016,0.021278141066432,0.999773621559143,2.21994338813568e-016,0.021278141066432,0.999773621559143,2.21994338813568e-016,0.00580447865650058,0.999983131885529,2.22040859451218e-016,0.00580447865650058,0.999983131885529,2.22040859451218e-016,0.00580447865650058,0.999983131885529,2.22040859451218e-016,-0.00219135847873986,-0.00799452885985374,-0.999965667724609,-0.00886863097548485,0.0155360177159309,-0.999840080738068,-0.00219135847873986,-0.00799452885985374,-0.999965667724609,0.0316532514989376,-0.999233603477478,-0.0230287369340658,0.0552076734602451,-0.998184382915497,-0.0240841098129749,0.0236093923449516,-0.999464273452759,-0.0226655714213848,0.0598592087626457,0.0180738773196936,-0.998043239116669,0.0611977614462376,2.21628420580354e-016,-0.998125672340393,0.0598592087626457,0.0180738773196936,-0.998043239116669,0,-0.00787377171218395,-0.999969005584717,0,0.0157460793852806,-0.999876081943512,0,-0.00787377171218395,-0.999969005584717,0.999998807907104,0.00154380290769041,3.42793106720231e-019,0.999998807907104,0.00154380290769041,3.42793106720231e-019,0.999998807907104,0.00154380290769041,3.42793106720231e-019,0.999958515167236,-0.00911114178597927,-2.02307987828371e-018,0.999958515167236,-0.00911114178597927,-2.02307987828371e-018,0.999958515167236,-0.00911114178597927,-2.02307987828371e-018,0.999974370002747,0.00716365966945887,1.59065198112237e-018,0.999974370002747,0.00716365966945887,1.59065198112237e-018,0.999974370002747,0.00716365966945887,1.59065198112237e-018,
  1342. 1,0,0,1,0,0,1,0,0,-0.997820794582367,0.0335938595235348,-0.0567898228764534,-0.739272058010101,0.160601407289505,0.653975546360016,-0.889764070510864,-0.0486540123820305,-0.453820109367371,-0.371038287878037,0.0292333029210567,-0.928157389163971,-0.371038287878037,0.0292333029210567,-0.928157389163971,-0.371038287878037,0.0292333029210567,-0.928157389163971,-0.120975069701672,0.0312492474913597,-0.992163598537445,-0.120975069701672,0.0312492474913597,-0.992163598537445,-0.120975069701672,0.0312492474913597,-0.992163598537445,-0.922491490840912,0.0397780612111092,0.383962720632553,-0.996036291122437,-0.000511864258442074,0.0889474079012871,-0.864065647125244,-0.0771351456642151,-0.497434049844742,-0.995000660419464,-0.00957309734076262,-0.0994081348180771,-0.717408061027527,0.192376405000687,0.669564843177795,-0.854635715484619,-0.121015131473541,-0.504928886890411,-0.618360638618469,0.173669517040253,0.766465246677399,-0.995690166950226,-0.060886837542057,-0.0699569508433342,-0.823244094848633,-0.176154792308807,-0.539665281772614,-0.0130368052050471,-0.0157447420060635,-0.999791145324707,-0.0130368052050471,-0.0157447420060635,-0.999791145324707,-0.0130368052050471,-0.0157447420060635,-0.999791145324707,-0.361562997102737,-0.014680820517242,-0.932232081890106,-0.361579805612564,-0.0220176689326763,-0.93208122253418,-0.361562997102737,-0.014680820517242,-0.932232081890106,0.81223326921463,-0.0232686027884483,-0.58286851644516,0.920657336711884,0.00392229156568646,-0.390352308750153,0.963330566883087,0.0786333903670311,0.25653663277626,0.921093821525574,0.0804118365049362,0.380946308374405,0.998092830181122,0.0285368282347918,0.0547386109828949,0.86362624168396,-0.0648767799139023,-0.499940872192383,-0.289828091859818,-0.0444858744740486,0.956044316291809,-0.288267254829407,-0.0669798329472542,0.955204486846924,-0.288267254829407,-0.0669798329472542,0.955204486846924,0.178745329380035,-0.0344898998737335,0.983290672302246,0.179412022233009,-0.0576255321502686,0.982084810733795,0.178745329380035,-0.0344898998737335,0.983290672302246,
  1343. 0.998903155326843,-0.00135462358593941,0.0468054860830307,0.99643748998642,0.0371163412928581,0.0757273882627487,0.998903155326843,-0.00135462358593941,0.0468054860830307,-0.0444437116384506,0.7404745221138,0.670613408088684,-0.0222370009869337,0.74182653427124,0.67022305727005,-0.0444437116384506,0.7404745221138,0.670613408088684,0.00769241433590651,0.69531238079071,-0.71866649389267,0.00919101759791374,0.671216130256653,-0.741204738616943,0.00769241433590651,0.69531238079071,-0.71866649389267,0.0444415062665939,-0.741139888763428,-0.669878125190735,0.0222403667867184,-0.739758968353271,-0.672504305839539,0.0444415062665939,-0.741139888763428,-0.669878125190735,0.998902976512909,-0.00135781243443489,0.0468087792396545,0.996437430381775,0.0371132269501686,0.0757307410240173,0.998902976512909,-0.00135781243443489,0.0468087792396545,0.00373126193881035,0.645382702350616,-0.763850271701813,0.00186246167868376,0.645495533943176,-0.763761818408966,0.00373126193881035,0.645382702350616,-0.763850271701813,-0.999370813369751,-0.0114731257781386,-0.0335616879165173,-0.996641397476196,-0.0430129766464233,-0.0696846395730972,-0.999370813369751,-0.0114731257781386,-0.0335616879165173,0.0444415062665939,-0.741139829158783,-0.66987818479538,0.0222403649240732,-0.739758849143982,-0.672504425048828,0.0444415062665939,-0.741139829158783,-0.66987818479538,0.0229212418198586,0.00841311551630497,-0.999701976776123,0.0237459130585194,0.00130882998928428,-0.999717175960541,0.0237459130585194,0.00130882998928428,-0.999717175960541,2.2304025151243e-006,1.22935560398219e-007,-1,0.000552360957954079,0.00788681861013174,-0.999968826770782,0.000552360957954079,0.00788681861013174,-0.999968826770782,0.999577045440674,0.029081366956234,6.45736063647683e-018,0.999577045440674,0.029081366956234,6.45736063647683e-018,0.999577045440674,0.029081366956234,6.45736063647683e-018,0.999784171581268,-0.0207748655229807,-4.6129468074209e-018,0.999784171581268,-0.0207748655229807,-4.6129468074209e-018,0.999784171581268,-0.0207748655229807,-4.6129468074209e-018,
  1344. 0.104416318237782,0.0370573736727238,-0.993843078613281,0.104222387075424,-0.0210262071341276,-0.994331777095795,0.104416318237782,0.0370573736727238,-0.993843078613281,-0.00181574269663543,-0.0236725769937038,-0.999718129634857,-0.00425209477543831,0.0233810096979141,-0.999717652797699,-0.00181648251600564,-0.0236583035439253,-0.999718487262726,0.999937295913696,-0.0111999334767461,-2.48688480403072e-018,0.999937295913696,-0.0111999334767461,-2.48688480403072e-018,0.999937295913696,-0.0111999334767461,-2.48688480403072e-018,0.999970376491547,0.0076941903680563,1.70845346049304e-018,0.999970376491547,0.0076941903680563,1.70845346049304e-018,0.999970376491547,0.0076941903680563,1.70845346049304e-018,0.0247405711561441,0.00845574680715799,-0.999658167362213,0.0255664847791195,0.0014091762714088,-0.999672114849091,0.0255664847791195,0.0014091762714088,-0.999672114849091,1.11512172225048e-005,6.14633961504296e-007,-1,0.000561222725082189,0.00788702815771103,-0.999968826770782,0.000561222725082189,0.00788702815771103,-0.999968826770782,0.999689698219299,0.024910481646657,5.53123805572419e-018,0.999689698219299,0.024910481646657,5.53123805572419e-018,0.999689698219299,0.024910481646657,5.53123805572419e-018,0.999876856803894,-0.0156923364847898,-3.48439865511582e-018,0.999876856803894,-0.0156923364847898,-3.48439865511582e-018,0.999876856803894,-0.0156923364847898,-3.48439865511582e-018,0.986804783344269,0.158165886998177,0.0346420556306839,0.998142838478088,0.0462189763784409,0.0396823920309544,0.986804783344269,0.158165886998177,0.0346420556306839,0.00763970939442515,-0.0477481819689274,-0.998830199241638,0.00299504725262523,-0.0475463718175888,-0.998864591121674,0.00299504725262523,-0.0475463718175888,-0.998864591121674,-0.010965152643621,-0.00958914216607809,-0.9998939037323,-0.015475383028388,0.0150132505223155,-0.999767541885376,-0.0109358439221978,-0.00974887609481812,-0.999892711639404,0.0630643218755722,-0.997608065605164,-0.0283049494028091,0.157946676015854,-0.98716676235199,-0.0235512610524893,0.0630643218755722,-0.997608065605164,-0.0283049494028091,
  1345. 0.377176851034164,0.926141262054443,-0.000296398997306824,-0.302895128726959,0.953016519546509,-0.00375142693519592,0.405389428138733,0.914144158363342,-0.000127479434013367,0.349976718425751,0.934493482112885,-0.0651024878025055,-0.587272226810455,0.807967364788055,-0.0479592531919479,-0.268279731273651,0.961401700973511,-0.0610961988568306,0.341996371746063,0.0208247900009155,0.939470529556274,0.272219061851501,0.0151025243103504,0.962116837501526,-0.0941485539078712,-0.0143541628494859,0.995454728603363,0.270941585302353,0.00372829427942634,0.962588548660278,-0.203759357333183,-0.0154464207589626,0.97889918088913,-0.0949715003371239,-0.0112025132402778,0.99541699886322,-0.0332644656300545,0.000523849856108427,0.999446511268616,-0.0332675389945507,-2.21921705738341e-016,0.999446511268616,-0.0332675389945507,-2.21921705738341e-016,0.999446511268616,-0.0285207163542509,-2.21954276802141e-016,0.999593198299408,-0.0285181794315577,0.00044910519500263,0.999593138694763,-0.0285181794315577,0.00044910519500263,0.999593138694763,-0.00851917918771505,-6.70801528031006e-005,-0.999963700771332,-0.00851875171065331,0.000134153568069451,-0.999963700771332,-0.00851875171065331,0.000134153568069451,-0.999963700771332,-0.00803893245756626,0.000126597355119884,-0.999967694282532,-0.00803948566317558,-6.33030431345105e-005,-0.999967694282532,-0.00803948566317558,-6.33030431345105e-005,-0.999967694282532,0.38295391201973,0.00178444385528564,0.92376571893692,-0.395414084196091,0.00154311186634004,0.918501675128937,-0.427188217639923,0.00150771415792406,0.90416145324707,-0.420426040887833,-0.0162030048668385,0.907182097434998,0.695914387702942,-0.00646852049976587,0.718095719814301,0.376453995704651,-0.0115660727024078,0.926363110542297,0.495692729949951,-0.00589929614216089,-0.868478059768677,-0.507286846637726,-0.00786463916301727,-0.861741364002228,0.538925111293793,-0.00560465455055237,-0.842335045337677,-0.488236993551254,0.0423472821712494,-0.871683061122894,-0.742457330226898,0.0305176973342896,-0.669197916984558,0.524053454399109,0.0467356070876122,-0.850402176380157,
  1346. 0.00280760577879846,-0.999996066093445,-2.22043731422304e-016,0.00280760577879846,-0.999996066093445,-2.22043731422304e-016,0.00280760577879846,-0.999996066093445,-2.22043731422304e-016,0.0044759907759726,-0.999989986419678,-2.22042381463545e-016,0.0044759907759726,-0.999989986419678,-2.22042381463545e-016,0.0044759907759726,-0.999989986419678,-2.22042381463545e-016,-0.0489632301032543,-2.21778279237569e-016,0.998800575733185,-0.0489504113793373,-0.00786433275789022,0.998770296573639,-0.0489632301032543,-2.21778279237569e-016,0.998800575733185,-0.0493241511285305,-0.00786418747156858,0.998751878738403,-0.0493361502885818,-2.2177420289151e-016,0.998782217502594,-0.0493241511285305,-0.00786418747156858,0.998751878738403,0.00770047213882208,0.999970376491547,2.220380271848e-016,0.00770047213882208,0.999970376491547,2.220380271848e-016,0.00770047213882208,0.999970376491547,2.220380271848e-016,0.00468109175562859,0.999989032745361,2.22042169705308e-016,0.00468109175562859,0.999989032745361,2.22042169705308e-016,0.00468109175562859,0.999989032745361,2.22042169705308e-016,0.99965512752533,5.83122751257574e-018,-0.0262615140527487,0.999655187129974,0.000206751137739047,-0.0262573938816786,0.999655187129974,0.000206751137739047,-0.0262573938816786,0.98208874464035,0.0014835704350844,-0.188413441181183,0.982091188430786,4.1834583379253e-017,-0.188406214118004,0.982054531574249,0.0077327131293714,-0.188439160585403,0.00704789767041802,5.5495256674476e-005,0.999975144863129,0.00704789767041802,5.5495256674476e-005,0.999975144863129,0.00704789767041802,5.5495256674476e-005,0.999975144863129,0.00591812143102288,4.65993834950496e-005,0.999982476234436,0.00591812143102288,4.65993834950496e-005,0.999982476234436,0.00591812143102288,4.65993834950496e-005,0.999982476234436,0.232700169086456,0.00174593506380916,0.972546935081482,0.351202130317688,0.000245116651058197,0.936299681663513,-0.257912427186966,0.00725594907999039,0.966141104698181,0.232893466949463,0.000831257435493171,0.972501933574677,-0.259056091308594,0.00257457070983946,0.965858936309814,
  1347. -0.272225260734558,0.00261534750461578,0.962230026721954,0.483850181102753,0.00935469474643469,-0.87510085105896,-0.277470350265503,0.0140383392572403,-0.960631608963013,0.45061731338501,0.00974263157695532,-0.892664015293121,0.464960426092148,-0.0435513556003571,-0.884259700775146,-0.657827138900757,-0.0513869673013687,-0.751413881778717,-0.238230168819427,-0.0579629093408585,-0.969477534294128,0.42197248339653,0.0549943447113037,0.9049391746521,-0.559097468852997,0.0554805919528008,0.827243566513062,-0.55979186296463,0.0554547607898712,0.826775550842285,0.431292831897736,0.0319952443242073,0.90164452791214,0.709952533245087,0.0277752764523029,0.703701674938202,-0.568002879619598,0.0219729971140623,0.822733163833618,-0.00877027399837971,0.99996155500412,-6.90572778694332e-005,-0.00877110473811626,0.99996155500412,6.90638189553283e-005,-0.00877027399837971,0.99996155500412,-6.90572778694332e-005,-0.00241837999783456,0.999997079372406,1.90423616004409e-005,-0.00241816276684403,0.999997079372406,-1.90406517504016e-005,-0.00241837999783456,0.999997079372406,1.90423616004409e-005,0.0423532724380493,2.21845366893969e-016,-0.999102711677551,0.0423401445150375,-0.00820007734000683,-0.999069631099701,0.0423532724380493,2.21845366893969e-016,-0.999102711677551,0.0419723652303219,-0.0081973047927022,-0.999085247516632,0.041985385119915,2.21848807965318e-016,-0.999118208885193,0.0419723652303219,-0.0081973047927022,-0.999085247516632,-0.000137061302666552,-1,-1.07922289771523e-006,-0.00013707390462514,-1,1.07932214632456e-006,-0.000137061302666552,-1,-1.07922289771523e-006,-0.00790497381240129,-0.999968767166138,6.22438892605715e-005,-0.00790427811443806,-0.999968767166138,-6.2238410464488e-005,-0.00790497381240129,-0.999968767166138,6.22438892605715e-005,-0.0153480330482125,0.00775200081989169,0.999852180480957,-0.0153084984049201,-2.22018585131683e-016,0.999882817268372,-0.0153091195970774,0.000120544253150001,0.999882817268372,-0.017096733674407,-2.2201215297524e-016,0.999853849411011,-0.0171305611729622,0.00773773808032274,0.999823331832886,
  1348. -0.0171305611729622,0.00773773808032274,0.999823331832886,-0.0121541321277618,9.57018346525729e-005,-0.999926149845123,-0.0121541321277618,9.57018346525729e-005,-0.999926149845123,-0.0121541321277618,9.57018346525729e-005,-0.999926149845123,-0.0115482769906521,9.09313093870878e-005,-0.999933302402496,-0.0115482769906521,9.09313093870878e-005,-0.999933302402496,-0.0115482769906521,9.09313093870878e-005,-0.999933302402496,0.00683089019730687,5.37865380465519e-005,0.999976754188538,0.00683081429451704,-5.37859414180275e-005,0.999976694583893,0.00683081429451704,-5.37859414180275e-005,0.999976694583893,0.00590593181550503,-4.65033990622032e-005,0.999982535839081,0.00590607617050409,4.65045377495699e-005,0.999982535839081,0.00590614788234234,9.30102105485275e-005,0.999982535839081,-0.195925772190094,2.17741095217828e-016,-0.980618715286255,-0.195925772190094,2.17741095217828e-016,-0.980618715286255,-0.195925772190094,2.17741095217828e-016,-0.980618715286255,0.202462643384933,2.17446063054388e-016,-0.979290008544922,0.202462643384933,2.17446063054388e-016,-0.979290008544922,0.202462643384933,2.17446063054388e-016,-0.979290008544922,-0.317844957113266,2.10529972865607e-016,-0.94814270734787,-0.317844957113266,2.10529972865607e-016,-0.94814270734787,-0.317844957113266,2.10529972865607e-016,-0.94814270734787,-0.0636942982673645,2.21593731934186e-016,-0.997969448566437,-0.0636942982673645,2.21593731934186e-016,-0.997969448566437,-0.0636942982673645,2.21593731934186e-016,-0.997969448566437,-0.0901970490813255,-0.995762646198273,0.0179247725754976,-0.0897215381264687,-0.995941877365112,-0.00706468801945448,-0.0894948616623878,-0.995823800563812,-0.0180433187633753,0.0487863719463348,-0.998698234558105,-0.0148956580087543,0.0482457391917706,-0.99882835149765,0.00379887712188065,0.0482820086181164,-0.998830437660217,0.00256255851127207,0.0393399558961391,4.47885286121164e-005,0.999225974082947,-0.0393345579504967,0.000640822807326913,0.999225974082947,-0.0550405234098434,0.0007595558417961,0.998483896255493,0.0393246300518513,-0.00189512909855694,0.999224722385406,
  1349. 0.0314949974417686,-0.00185590703040361,0.999502182006836,-0.0393513180315495,-0.00149627577047795,0.999224305152893,-0.0550394617021084,0.000624190317466855,-0.998484015464783,0.0628759935498238,0.000540555687621236,-0.998021185398102,-0.00786445196717978,0.000591709103900939,-0.999968886375427,-0.0550646856427193,0.00388832413591444,-0.998475253582001,0.0392819978296757,0.00364688760600984,-0.999221563339233,0.062923289835453,0.00358114927075803,-0.998012006282806,-0.00942021328955889,-0.999922335147858,0.00817010458558798,-0.00924229715019464,-0.999919652938843,-0.0086738970130682,-0.00940855406224728,-0.999930918216705,0.00705855805426836,0.0628607645630836,-0.998019456863403,-0.00241378811188042,0.0630712285637856,-0.997991859912872,0.00587170943617821,0.062523178756237,-0.997925341129303,-0.0153632778674364,-0.974207878112793,5.01048939622358e-017,-0.225652381777763,-0.974207878112793,5.01048939622358e-017,-0.225652381777763,-0.974207878112793,5.01048939622358e-017,-0.225652381777763,-0.987544357776642,-3.49367043988386e-017,0.157340928912163,-0.987544357776642,-3.49367043988386e-017,0.157340928912163,-0.987544357776642,-3.49367043988386e-017,0.157340928912163,-0.959014773368835,-6.29176668790535e-017,0.283355981111526,-0.959014773368835,-6.29176668790535e-017,0.283355981111526,-0.959014773368835,-6.29176668790535e-017,0.283355981111526,-0.999983370304108,-1.28156953459219e-018,0.00577167607843876,-0.999983370304108,-1.28156953459219e-018,0.00577167607843876,-0.999983370304108,-1.28156953459219e-018,0.00577167607843876,-0.0252375304698944,0.987337529659271,0.156613647937775,0.020165678113699,0.987333714962006,0.157370746135712,0.000355152413249016,0.987585783004761,0.157080233097076,0.013008501380682,0.982228875160217,-0.187235742807388,-0.0281838141381741,0.981974005699158,-0.186903178691864,-0.00699862698093057,0.982313334941864,-0.187113896012306,0.165712773799896,0.00467309728264809,0.986163020133972,-0.125971078872681,0.00481481803581119,0.992022275924683,0.0863272622227669,0.00475249253213406,0.99625551700592,
  1350. -0.125972166657448,0.00248503079637885,0.992030739784241,-0.110411033034325,0.00256744283251464,0.993882715702057,0.0863182619214058,0.00354348472319543,0.996261358261108,0.176562160253525,0.984179735183716,0.0147007126361132,0.176136091351509,0.984256327152252,-0.0146845411509275,0.176467388868332,0.984280407428741,0.00716343801468611,-0.275167942047119,0.960984468460083,-0.0281336717307568,-0.274454832077026,0.961594581604004,0.00323369679972529,-0.274624168872833,0.961546182632446,-0.00324074504896998,-0.999999701976776,-0.000802030845079571,-1.78086622133382e-019,-0.998483717441559,-0.00085241359192878,-0.0550412461161613,-0.998021245002747,-0.000741503434255719,0.0628733187913895,-0.998482227325439,-0.00174691784195602,-0.0550482049584389,-0.999503374099731,-0.00172811921220273,0.0314668156206608,-0.998019576072693,-0.00171807280275971,0.0628809034824371,0.176887631416321,2.18543195714209e-016,-0.984231054782867,0.176887631416321,2.18543195714209e-016,-0.984231054782867,0.176887631416321,2.18543195714209e-016,-0.984231054782867,-0.174792498350143,2.18626297587268e-016,-0.984605312347412,-0.174792498350143,2.18626297587268e-016,-0.984605312347412,-0.174792498350143,2.18626297587268e-016,-0.984605312347412,-0.2947738468647,2.12178510739201e-016,-0.955567061901093,-0.2947738468647,2.12178510739201e-016,-0.955567061901093,-0.2947738468647,2.12178510739201e-016,-0.955567061901093,0.015276544727385,2.22018691010801e-016,-0.99988329410553,0.015276544727385,2.22018691010801e-016,-0.99988329410553,0.015276544727385,2.22018691010801e-016,-0.99988329410553,-0.982052206993103,0.00330388802103698,0.188580468297005,-0.992986857891083,0.00290792854502797,-0.11818964779377,-0.995490431785584,0.00321410200558603,0.0948086157441139,-0.992988705635071,0.000701931945513934,-0.11820737272501,-0.988820135593414,0.000559501640964299,-0.149112239480019,-0.99549412727356,0.00165124633349478,0.0948089584708214,0.055048044770956,-0.000858835177496076,-0.998483419418335,-0.0628751739859581,-0.000980431213974953,-0.998020946979523,0.00787376798689365,-0.00090901053044945,-0.999968588352203,
  1351. 0.0551028437912464,-0.00438206130638719,-0.998471081256866,-0.0392352752387524,-0.00440743239596486,-0.999220371246338,-0.0629014894366264,-0.00440764194354415,-0.998010098934174,-0.00617633853107691,0.938720881938934,0.344623208045959,0.00617708964273334,0.938714265823364,0.34464094042778,0.00617708964273334,0.938714265823364,0.34464094042778,0.0151587259024382,0.981928169727325,-0.188646018505096,-0.00807086285203695,0.9821617603302,-0.187864750623703,-0.0151194157078862,0.982127666473389,-0.187607616186142,0.0168307740241289,0.99980628490448,-0.0102057894691825,0.0156008414924145,0.999736428260803,0.0168494526296854,0.0168913044035435,0.999790668487549,-0.0115441465750337,0.117289513349533,0.992808997631073,0.0239466428756714,0.11593896150589,0.992977738380432,-0.0235233344137669,0.11660223454237,0.993177771568298,-0.00136098125949502,-0.971037924289703,-5.30520756190357e-017,0.23892530798912,-0.971037924289703,-5.30520756190357e-017,0.23892530798912,-0.971037924289703,-5.30520756190357e-017,0.23892530798912,-0.981536567211151,4.24714826724168e-017,-0.191274553537369,-0.981536567211151,4.24714826724168e-017,-0.191274553537369,-0.981536567211151,4.24714826724168e-017,-0.191274553537369,-0.944945931434631,-7.26588898796128e-017,0.327226549386978,-0.944945931434631,-7.26588898796128e-017,0.327226549386978,-0.944945931434631,-7.26588898796128e-017,0.327226549386978,-0.998635411262512,-1.15963765290983e-017,0.052225437015295,-0.998635411262512,-1.15963765290983e-017,0.052225437015295,-0.998635411262512,-1.15963765290983e-017,0.052225437015295,0.999225556850433,-0.00127589411567897,-0.0393295437097549,0.998884618282318,-0.00128314783796668,0.0472015030682087,0.998885571956635,-0.00128314713947475,0.0471813417971134,0.999219715595245,-0.00321807502768934,-0.0393646992743015,0.998879551887512,-0.00321499560959637,0.0472164712846279,0.999221801757813,-0.00321808084845543,-0.0393141023814678,-0.00238947826437652,-0.98671156167984,0.16246409714222,0.00763424346223474,-0.986698031425476,0.162384390830994,-0.0273153744637966,-0.986315369606018,0.162591516971588,
  1352. -0.0114292977377772,-0.99925971031189,-0.0367359779775143,0.0199520867317915,-0.999122083187103,-0.0368370451033115,0.0111866649240255,-0.9992595911026,-0.0368124581873417,-0.999967694282532,-0.00162240408826619,0.00788653641939163,-0.999502718448639,-0.00163174502085894,-0.0314932502806187,-0.998483836650848,-0.00163612200412899,-0.055021658539772,-0.999504446983337,0.000159508141223341,-0.0314792022109032,-0.999969005584717,3.04585555568337e-005,0.00787353236228228,-0.998885929584503,-9.85614606179297e-005,0.047190684825182,-0.00907646678388119,-0.999776124954224,0.0191169045865536,0.0164577215909958,-0.999699890613556,0.0181461684405804,-0.0127607313916087,-0.999733209609985,0.0192559566348791,0.0139830689877272,-0.998916208744049,-0.0443964935839176,-0.005000124219805,-0.998952209949493,-0.045492060482502,0.0207433775067329,-0.998816013336182,-0.044002391397953,-0.770280718803406,0.636917948722839,-0.0316739305853844,-0.414404094219208,0.908452868461609,-0.0546149238944054,0.44338920712471,0.89393413066864,-0.0654815882444382,0.44362074136734,0.893957197666168,-0.0635704472661018,-0.414539813995361,0.908483147621155,-0.0530584454536438,0.429167985916138,0.900966465473175,-0.06382966786623,0.416235834360123,0.908843338489532,0.0274162888526917,-0.425328224897385,0.904368162155151,0.0348468646407127,0.846202611923218,0.532755136489868,0.0106441453099251,-0.427386432886124,0.904019176959991,0.00949839409440756,0.419151961803436,0.90788346529007,-0.00769540201872587,-0.555612027645111,0.83135449886322,0.0120376739650965,-0.999798715114594,4.45507731956362e-018,-0.0200638845562935,-0.999798715114594,4.45507731956362e-018,-0.0200638845562935,-0.999798715114594,4.45507731956362e-018,-0.0200638845562935,-0.99998551607132,1.19558431671245e-018,-0.00538443308323622,-0.99998551607132,1.19558431671245e-018,-0.00538443308323622,-0.99998551607132,1.19558431671245e-018,-0.00538443308323622,-0.999966084957123,-0.00241210428066552,0.00787374842911959,-0.999997138977051,-0.00239390134811401,-5.31552879071476e-019,-0.999966084957123,-0.00241210428066552,0.00787374842911959,
  1353. -0.998831570148468,-0.0483264587819576,-1.07306294476656e-017,-0.998802781105042,-0.0482828803360462,0.00786458887159824,-0.998831570148468,-0.0483264587819576,-1.07306294476656e-017,0.0018830836052075,2.22044207878337e-016,-0.999998211860657,0.0018830836052075,2.22044207878337e-016,-0.999998211860657,0.0018830836052075,2.22044207878337e-016,-0.999998211860657,0.00175131345167756,2.22044260817896e-016,-0.999998450279236,0.00175131345167756,2.22044260817896e-016,-0.999998450279236,0.00175131345167756,2.22044260817896e-016,-0.999998450279236,-0.00214935489930213,0.999997675418854,2.22044088764329e-016,-0.00214933673851192,0.999997675418854,1.69239119713893e-005,-0.00214935489930213,0.999997675418854,2.22044088764329e-016,-0.00236045592464507,0.999997198581696,1.85862663784064e-005,-0.00236047594808042,0.999997198581696,2.22043982885211e-016,-0.00236045592464507,0.999997198581696,1.85862663784064e-005,-0.884701371192932,0.46578323841095,-0.0187000874429941,-0.575632810592651,0.816483795642853,-0.0447351336479187,0.585407614707947,0.808628022670746,-0.0584705770015717,0.585558235645294,0.808597803115845,-0.0573688521981239,-0.575284361839294,0.816452264785767,-0.0495336391031742,0.548877418041229,0.833834767341614,-0.0587639957666397,-0.000136003262014128,2.22044604925031e-016,-1,-0.000136003262014128,2.22044604925031e-016,-1,-0.000136003262014128,2.22044604925031e-016,-1,0.00119767407886684,2.22044446106354e-016,-0.999999284744263,0.00119767407886684,2.22044446106354e-016,-0.999999284744263,0.00119767407886684,2.22044446106354e-016,-0.999999284744263,-0.00204996019601822,-2.22044141703888e-016,0.999997913837433,-0.00204996019601822,-2.22044141703888e-016,0.999997913837433,-0.00204996019601822,-2.22044141703888e-016,0.999997913837433,0.00112823396921158,-2.22044459341244e-016,0.999999344348907,0.00112823396921158,-2.22044459341244e-016,0.999999344348907,0.00112823396921158,-2.22044459341244e-016,0.999999344348907,-0.999881386756897,0.0154030518606305,3.42016456503347e-018,-0.999881386756897,0.0154030518606305,3.42016456503347e-018,
  1354. -0.999881386756897,0.0154030518606305,3.42016456503347e-018,-0.999993324279785,0.00365542457439005,8.1166730545369e-019,-0.999993324279785,0.00365542457439005,8.1166730545369e-019,-0.999993324279785,0.00365542457439005,8.1166730545369e-019,-0.992889940738678,0.118004813790321,-0.0156360622495413,-0.992881894111633,0.118072420358658,0.0156359355896711,-0.992978990077972,0.118032537400723,-0.00781873241066933,-0.999685645103455,-0.0195176135748625,0.0157430823892355,-0.999782145023346,-0.0193320605903864,-0.00787230022251606,-0.999685645103455,-0.0195176135748625,0.0157430823892355,-0.0661137849092484,0.00614013196900487,0.997793197631836,0.0405852496623993,0.00575817376375198,0.999159514904022,0.21970272064209,0.00496387528255582,0.975554347038269,0.0422651991248131,0.0018552104011178,0.999104738235474,-0.0685888603329659,0.00048728461842984,0.997644901275635,-0.0817271247506142,0.000324070453643799,0.996654689311981,-0.87347823381424,0.486231058835983,-0.0248058028519154,-0.573625147342682,0.817144989967346,-0.0568197220563889,0.570370733737946,0.817842125892639,-0.0762329325079918,0.573644042015076,0.817124664783478,-0.0569203458726406,-0.574835896492004,0.817088305950165,-0.0439356490969658,0.544449388980865,0.836799502372742,-0.057804748415947,-0.999984741210938,1.22739261658999e-018,-0.00552768493071198,-0.999984741210938,1.22739261658999e-018,-0.00552768493071198,-0.999984741210938,1.22739261658999e-018,-0.00552768493071198,-0.999999642372131,1.82666475615844e-019,-0.000822656671516597,-0.999999642372131,1.82666475615844e-019,-0.000822656671516597,-0.999999642372131,1.82666475615844e-019,-0.000822656671516597,-0.999998211860657,-4.22322955400813e-019,0.00190197350457311,-0.999998211860657,-4.22322955400813e-019,0.00190197350457311,-0.999998211860657,-4.22322955400813e-019,0.00190197350457311,-0.999999582767487,-2.03107413946434e-019,0.000914714473765343,-0.999999582767487,-2.03107413946434e-019,0.000914714473765343,-0.999999582767487,-2.03107413946434e-019,0.000914714473765343,-0.994593381881714,-0.103550717234612,0.00783144403249025,
  1355. -0.994592368602753,-0.103560447692871,-0.00783143565058708,-0.994592368602753,-0.103560447692871,-0.00783143565058708,-0.828734576702118,-0.559603810310364,-0.00652546901255846,-0.828767836093903,-0.559554517269135,0.00652573117986321,-0.828767836093903,-0.559554517269135,0.00652573117986321,-0.994618475437164,-0.103309109807014,0.00783164147287607,-0.994607388973236,-0.103416055440903,-0.00783155392855406,-0.994618475437164,-0.103309109807014,0.00783164147287607,-0.999927222728729,-0.00914238393306732,-0.00787344295531511,-0.999926030635834,-0.00926838722079992,0.00787343364208937,-0.999927222728729,-0.00914238393306732,-0.00787344295531511,-0.402064323425293,0.915548920631409,0.0107069769874215,0.413448959589005,0.909477472305298,0.0437120124697685,-0.549425959587097,0.835539162158966,0.00234515964984894,0.419201582670212,0.907872974872589,-0.00606068503111601,-0.403641760349274,0.913937449455261,-0.0423267558217049,0.536412954330444,0.843955397605896,0.000803645816631615,0.435850888490677,0.899496018886566,-0.0306737553328276,0.706403493881226,0.706736028194427,-0.0389659330248833,-0.443394631147385,0.896311044692993,0.00528404908254743,0.436574041843414,0.898064196109772,-0.053701139986515,-0.446455061435699,0.894563972949982,-0.0208140350878239,-0.416998893022537,0.908628642559052,-0.0224937163293362,-0.887552499771118,0.458963513374329,-0.0400377847254276,-0.471057444810867,0.881001770496368,-0.0440561883151531,0.582637369632721,0.812618911266327,-0.0135726388543844,0.584266602993011,0.811425268650055,0.014887411147356,-0.473960101604462,0.880392551422119,-0.0164600033313036,0.474367320537567,0.880252599716187,0.0114562371745706,0.125782757997513,-0.00656165182590485,-0.992036163806915,-0.16869905591011,-0.00118886679410934,-0.985666871070862,0.193662077188492,-0.00774633884429932,-0.981037735939026,-0.169351831078529,-0.000546418072190136,-0.985555529594421,0.124963685870171,-0.00740305986255407,-0.992133677005768,-0.218768626451492,0.000644221960101277,-0.975776672363281,-0.999950766563416,-0.00604225881397724,0.00787362828850746,
  1356. -0.999950766563416,-0.00603709137067199,-0.00787362828850746,-0.999950766563416,-0.00603709137067199,-0.00787362828850746,-0.993262827396393,-0.115619845688343,-0.0078209675848484,-0.993270337581635,-0.115555383265018,0.0078210262581706,-0.993270337581635,-0.115555383265018,0.0078210262581706,0.00614691479131579,2.22040409464964e-016,-0.999981105327606,0.00615199701860547,0.00787362270057201,-0.999950110912323,0.00615199701860547,0.00787362270057201,-0.999950110912323,0.00439203530550003,0.00787369534373283,-0.999959349632263,0.0043925978243351,2.22042460872884e-016,-0.999990344047546,0.0043925978243351,2.22042460872884e-016,-0.999990344047546,0.492143362760544,0.868063509464264,-0.065273679792881,0.875009596347809,0.481369704008102,-0.0513946898281574,-0.612879276275635,0.789503931999207,-0.0325975269079208,-0.614511072635651,0.788858413696289,-0.00887224264442921,-0.535735428333282,0.84428608417511,-0.0129880961030722,0.495169043540955,0.867717146873474,-0.04329714179039,-0.995821177959442,2.0278145773919e-017,-0.0913246497511864,-0.995820760726929,-0.000719105417374521,-0.0913263857364655,-0.995821177959442,2.0278145773919e-017,-0.0913246497511864,-0.999994575977325,2.59140015259618e-005,0.00329107814468443,-0.999994575977325,-7.30830666501639e-019,0.00329136871732771,-0.999994575977325,2.59140015259618e-005,0.00329107814468443,-0.999748468399048,-0.0210012570023537,0.00787203479558229,-0.999746084213257,-0.0211135279387236,-0.0078720161691308,-0.999748468399048,-0.0210012570023537,0.00787203479558229,-0.99995356798172,0.00555622205138206,-0.00787364970892668,-0.99995344877243,0.00557807367295027,0.0078736487776041,-0.99995356798172,0.00555622205138206,-0.00787364970892668,-0.425282776355743,0.904471218585968,0.032655593007803,0.402030438184738,0.915553629398346,0.0115409288555384,-0.547261774539948,0.836263477802277,0.0341740734875202,0.402779877185822,0.915253698825836,-0.00890481192618608,-0.427192896604538,0.904093503952026,0.0110057508572936,0.511281669139862,0.859335541725159,-0.0115554835647345,0.409944325685501,0.911996722221375,0.0144127085804939,
  1357. -0.388334959745407,0.921491086483002,-0.00708033517003059,-0.482472717761993,0.875856399536133,-0.00978703424334526,-0.388512969017029,0.921426832675934,-0.00549413589760661,0.409707576036453,0.912157297134399,0.0104336328804493,0.514274477958679,0.857536315917969,0.0123886372894049,-0.999993860721588,-0.00350462202914059,-7.78182413872084e-019,-0.99996292591095,-0.00348627124913037,0.00787372421473265,-0.999993860721588,-0.00350462202914059,-7.78182413872084e-019,-0.992162704467773,0.124708227813244,0.00781230488792062,-0.992179155349731,0.124822027981281,2.77160578890448e-017,-0.992085695266724,0.124586828052998,0.0156233971938491,-0.999932944774628,2.57129279527746e-018,-0.011580073274672,-0.999932944774628,2.57129279527746e-018,-0.011580073274672,-0.999932944774628,2.57129279527746e-018,-0.011580073274672,-0.999996185302734,6.14389072058009e-019,-0.00276696239598095,-0.999996185302734,6.14389072058009e-019,-0.00276696239598095,-0.999996185302734,6.14389072058009e-019,-0.00276696239598095,-0.993128180503845,0.117031522095203,2.59862180874045e-017,-0.993098258972168,0.117024548351765,0.00781967118382454,-0.993098258972168,0.117024548351765,0.00781967118382454,-0.999912083148956,0.01067228987813,0.00787332374602556,-0.999941825866699,0.0107872122898698,2.39524229114658e-018,-0.999941825866699,0.0107872122898698,2.39524229114658e-018,-0.999961376190186,1.95159430936142e-018,-0.00878919940441847,-0.999961376190186,1.95159430936142e-018,-0.00878919940441847,-0.999961376190186,1.95159430936142e-018,-0.00878919940441847,-0.999996781349182,5.6298124455391e-019,-0.00253544212318957,-0.999996781349182,5.6298124455391e-019,-0.00253544212318957,-0.999996781349182,5.6298124455391e-019,-0.00253544212318957,-0.00373286264948547,-2.22043056442925e-016,0.999993026256561,-0.00373286264948547,-2.22043056442925e-016,0.999993026256561,-0.00373286264948547,-2.22043056442925e-016,0.999993026256561,-0.00515355216339231,-2.22041653544606e-016,0.999986708164215,-0.00515355216339231,-2.22041653544606e-016,0.999986708164215,-0.00515355216339231,-2.22041653544606e-016,0.999986708164215,
  1358. -0.999835312366486,0.018148610368371,4.02980101918327e-018,-0.999835312366486,0.018148610368371,4.02980101918327e-018,-0.999835312366486,0.018148610368371,4.02980101918327e-018,-0.999962747097015,-0.00862890016287565,-1.91600072760326e-018,-0.999962747097015,-0.00862890016287565,-1.91600072760326e-018,-0.999962747097015,-0.00862890016287565,-1.91600072760326e-018,0.00138363370206207,2.22044393166794e-016,-0.999999046325684,0.00138363370206207,2.22044393166794e-016,-0.999999046325684,0.00138363370206207,2.22044393166794e-016,-0.999999046325684,0.00129452534019947,2.22044419636574e-016,-0.999999165534973,0.00129452534019947,2.22044419636574e-016,-0.999999165534973,0.00129452534019947,2.22044419636574e-016,-0.999999165534973,-1,2.23591105168452e-005,4.96471986118802e-021,-1,2.23591105168452e-005,4.96471986118802e-021,-1,2.23591105168452e-005,4.96471986118802e-021,-0.999731123447418,0.0231892038136721,5.14903759933284e-018,-0.999731123447418,0.0231892038136721,5.14903759933284e-018,-0.999731123447418,0.0231892038136721,5.14903759933284e-018,0.770280003547668,0.636918962001801,0.0316689722239971,0.414404302835464,0.908452868461609,0.0546118840575218,-0.443389028310776,0.89393413066864,0.0654837712645531,-0.443620383739471,0.893957197666168,0.0635736584663391,0.41454005241394,0.9084832072258,0.0530557744204998,-0.429168164730072,0.900966167449951,0.0638327598571777,-0.846202731132507,0.532754957675934,-0.0106453532353044,-0.416235715150833,0.908843278884888,-0.0274171754717827,0.425328224897385,0.904368162155151,-0.0348467826843262,0.427386522293091,0.904019057750702,-0.00949722528457642,-0.419151932001114,0.90788346529007,0.00769499223679304,0.555611968040466,0.831354737281799,-0.0120362993329763,0.999798834323883,-4.45382455452591e-018,0.0200582426041365,0.999798834323883,-4.45382455452591e-018,0.0200582426041365,0.999798834323883,-4.45382455452591e-018,0.0200582426041365,0.99998551607132,-1.19573744852335e-018,0.00538512272760272,0.99998551607132,-1.19573744852335e-018,0.00538512272760272,0.99998551607132,-1.19573744852335e-018,0.00538512272760272,
  1359. -0.00133278477005661,-0.999999105930328,1.04943683254533e-005,-0.00133279478177428,-0.999999105930328,-2.22044406401684e-016,-0.00133278477005661,-0.999999105930328,1.04943683254533e-005,-0.00241886335425079,-0.999997079372406,-2.22043956415431e-016,-0.00241884775459766,-0.999997079372406,1.90460450539831e-005,-0.00241886335425079,-0.999997079372406,-2.22043956415431e-016,0.999786794185638,-4.58514195831054e-018,0.0206496436148882,0.999786794185638,-4.58514195831054e-018,0.0206496436148882,0.999786794185638,-4.58514195831054e-018,0.0206496436148882,0.999999403953552,-2.44696129365736e-019,0.00110201339703053,0.999999403953552,-2.44696129365736e-019,0.00110201339703053,0.999999403953552,-2.44696129365736e-019,0.00110201339703053,0.999963760375977,-0.00323142646811903,-0.00787373073399067,0.99999475479126,-0.00323047488927841,-7.17309520510059e-019,0.99999475479126,-0.00323047488927841,-7.17309520510059e-019,0.999989986419678,-0.0044806394726038,-9.94901821505811e-019,0.99995893239975,-0.00448794476687908,-0.00787369254976511,0.99995893239975,-0.00448794476687908,-0.00787369254976511,0.468968451023102,-0.00164628028869629,0.883213400840759,-0.0951065644621849,0.00217359536327422,0.99546480178833,0.165639355778694,0.000474572239909321,0.986186385154724,0.162106186151505,0.00536230904981494,0.986758768558502,-0.0960493683815002,0.000831190380267799,0.995376229286194,-0.121964760124683,0.000366922467947006,0.992534399032593,0.999855875968933,-3.7697420520415e-018,0.016977408900857,0.999855875968933,-3.7697420520415e-018,0.016977408900857,0.999855875968933,-3.7697420520415e-018,0.016977408900857,0.999538004398346,-6.74882268839357e-018,0.0303939953446388,0.999538004398346,-6.74882268839357e-018,0.0303939953446388,0.999538004398346,-6.74882268839357e-018,0.0303939953446388,0.999940752983093,-2.41749344962426e-018,0.0108874225988984,0.999940752983093,-2.41749344962426e-018,0.0108874225988984,0.999940752983093,-2.41749344962426e-018,0.0108874225988984,0.999878406524658,-3.46269074750543e-018,0.0155945727601647,0.999878406524658,-3.46269074750543e-018,0.0155945727601647,
  1360. 0.999878406524658,-3.46269074750543e-018,0.0155945727601647,0.999813199043274,0.0176532585173845,0.00787254516035318,0.999719977378845,0.0176715813577175,0.0157436225563288,0.999813199043274,0.0176532585173845,0.00787254516035318,0.998142302036285,0.0588630475103855,0.0157187767326832,0.998233199119568,0.0588954351842403,0.0078601036220789,0.998142302036285,0.0588630475103855,0.0157187767326832,0.999587416648865,0.0287225935608149,6.37769693963338e-018,0.999309599399567,0.0286897569894791,0.0236057378351688,0.999309599399567,0.0286897569894791,0.0236057378351688,0.999700486660004,-0.00642132107168436,0.0236149728298187,0.999979138374329,-0.00646010879427195,-1.43443230499683e-018,0.999979138374329,-0.00646010879427195,-1.43443230499683e-018,-0.230277076363564,0.00523445010185242,-0.973111033439636,0.0928396061062813,0.00358877517282963,-0.995674610137939,-0.0408518239855766,0.00432230904698372,-0.999155879020691,-0.0427716262638569,-0.000177120789885521,-0.999084889888763,0.0927847996354103,0.00371443293988705,-0.995679259300232,0.1119015365839,0.00426166504621506,-0.993710160255432,0.877406418323517,0.478996276855469,0.0268479250371456,0.569009780883789,0.819989025592804,0.0620165094733238,-0.568376064300537,0.818724572658539,0.0814785361289978,-0.572209477424622,0.817850351333618,0.0608049742877483,0.570386826992035,0.819934904575348,0.0486385561525822,-0.545099020004272,0.836095869541168,0.0617320127785206,0.999941825866699,-0.00787355750799179,0.00737436581403017,0.999941408634186,0.00787355471402407,0.00742936786264181,0.999941825866699,-0.00787355750799179,0.00737436581403017,0.999953627586365,0.00787365064024925,0.00554275279864669,0.999953985214233,-0.00787365343421698,0.00548112113028765,0.999953627586365,0.00787365064024925,0.00554275279864669,0.999968290328979,0.0078737661242485,-0.00117341324221343,0.999968290328979,-0.0078737661242485,-0.00118987401947379,0.999968290328979,-0.0078737661242485,-0.00118987401947379,0.999968826770782,-0.0078737698495388,0.000570204108953476,0.999968707561493,0.00787376891821623,0.000793752318713814,
  1361. 0.999968707561493,0.00787376891821623,0.000793752318713814,-0.00501987058669329,-0.999987423419952,-2.22041812363283e-016,-0.00501987058669329,-0.999987423419952,-2.22041812363283e-016,-0.00501987058669329,-0.999987423419952,-2.22041812363283e-016,-0.0042185508646071,-0.999991118907928,-2.22042632926451e-016,-0.0042185508646071,-0.999991118907928,-2.22042632926451e-016,-0.0042185508646071,-0.999991118907928,-2.22042632926451e-016,0.99991512298584,0.0130287846550345,2.89297134138046e-018,0.99991512298584,0.0130287846550345,2.89297134138046e-018,0.99991512298584,0.0130287846550345,2.89297134138046e-018,0.999910771846771,-0.013358760625124,-2.96624072529372e-018,0.999910771846771,-0.013358760625124,-2.96624072529372e-018,0.999910771846771,-0.013358760625124,-2.96624072529372e-018,-0.301758736371994,0.95338386297226,-0.00103164836764336,0.482540160417557,0.875153243541718,0.0355218462646008,-0.488455832004547,0.87251752614975,-0.0111372619867325,0.481525182723999,0.876428484916687,-0.00256900768727064,-0.29658842086792,0.954194784164429,-0.0393407829105854,0.631686329841614,0.775193512439728,0.00688913371413946,0.452599614858627,0.891688346862793,-0.00675373151898384,-0.436321020126343,0.899044752120972,0.0366419292986393,-0.72007805109024,0.692305505275726,0.0469121932983398,-0.437268793582916,0.897070825099945,0.063718356192112,0.456823021173477,0.889236927032471,0.023884005844593,0.42302593588829,0.905738949775696,0.0261923484504223,0.419590413570404,0.9075066447258,0.0193807724863291,0.930345237255096,0.364947885274887,0.0356487333774567,-0.544079124927521,0.838878154754639,-0.0161692947149277,0.41826343536377,0.90831196308136,-0.0050297905690968,-0.541691899299622,0.839640200138092,-0.0396793372929096,-0.458684325218201,0.887801289558411,-0.0376506596803665,-0.696209788322449,0.71759170293808,0.0188201665878296,-0.772931158542633,0.634129583835602,0.0213813334703445,0.728102028369904,0.685049116611481,-0.023985218256712,0.726457595825195,0.686146438121796,-0.0382421910762787,0.811134278774261,0.583621561527252,-0.0380417294800282,
  1362. -0.695250749588013,0.718765735626221,0.00149413920007646,0.999947607517242,-0.00654426403343678,0.00787360314279795,0.999947607517242,-0.00654238648712635,-0.00787360314279795,0.999947607517242,-0.00654426403343678,0.00787360314279795,0.984771966934204,-0.173678115010262,-0.00775410979986191,0.984758615493774,-0.173753678798676,0.00775400502607226,0.984771966934204,-0.173678115010262,-0.00775410979986191,-0.00490366015583277,0.00787367671728134,0.999956965446472,-0.00490366015583277,0.00787367671728134,0.999956965446472,-0.00490366015583277,0.00787367671728134,0.999956965446472,-0.00316248973831534,0.00787373259663582,0.999963998794556,-0.00316248973831534,0.00787373259663582,0.999963998794556,-0.00316248973831534,0.00787373259663582,0.999963998794556,-0.109693214297295,-0.0152930170297623,-0.993847846984863,0.386150598526001,-0.00816061999648809,-0.922399640083313,0.0695595666766167,-0.0131278801709414,-0.997491419315338,-0.120111361145973,0.0029573212377727,-0.992756009101868,0.0816245600581169,0.00242530205287039,-0.99666029214859,-0.127875328063965,0.00297562079504132,-0.991785883903503,0.00437383772805333,0.00787369627505541,-0.999959468841553,0.00437383772805333,0.00787369627505541,-0.999959468841553,0.00437383772805333,0.00787369627505541,-0.999959468841553,0.00553225632756948,0.00787365157157183,-0.99995368719101,0.00553225632756948,0.00787365157157183,-0.99995368719101,0.00553225632756948,0.00787365157157183,-0.99995368719101,0.999795377254486,-0.0186333507299423,-0.00787240453064442,0.999793291091919,-0.0187454707920551,0.00787238776683807,0.999795377254486,-0.0186333507299423,-0.00787240453064442,0.999955236911774,0.00524262618273497,0.0078736636787653,0.999955117702484,0.00527382642030716,-0.00787366274744272,0.999955236911774,0.00524262618273497,0.0078736636787653,-0.402787446975708,0.915131986141205,0.017201891168952,0.426074594259262,0.904483079910278,-0.0192558318376541,-0.513580977916718,0.85775625705719,0.0221084449440241,0.423466712236404,0.904927968978882,-0.0422078035771847,-0.402375012636185,0.915464460849762,-0.00439602788537741,
  1363. 0.547102153301239,0.835791349411011,-0.0461750589311123,0.381535559892654,0.924331724643707,0.00645896885544062,-0.412873417139053,0.910704374313354,-0.0123817380517721,-0.517221629619598,0.855725169181824,-0.0147064402699471,-0.413166433572769,0.910500407218933,-0.0168120115995407,0.381340712308884,0.924400150775909,0.00798151642084122,0.486132174730301,0.873809933662415,0.0114755099639297,0.999965310096741,-0.00270935194566846,0.00787374284118414,0.99996542930603,-0.00266756466589868,-0.00787374377250671,0.999965310096741,-0.00270935194566846,0.00787374284118414,0.976028501987457,0.217506945133209,-0.0076852641068399,0.976001620292664,0.217628002166748,0.00768505223095417,0.976028501987457,0.217506945133209,-0.0076852641068399,0.999728679656982,-5.17207457939245e-018,0.0232929531484842,0.999728679656982,-5.17207457939245e-018,0.0232929531484842,0.999728679656982,-5.17207457939245e-018,0.0232929531484842,0.999962568283081,-1.92189873216592e-018,0.00865546241402626,0.999962568283081,-1.92189873216592e-018,0.00865546241402626,0.999962568283081,-1.92189873216592e-018,0.00865546241402626,0.995049655437469,0.0993791520595551,2.20666045568485e-017,0.995021641254425,0.099351167678833,0.00783481635153294,0.995049655437469,0.0993791520595551,2.20666045568485e-017,0.999891221523285,0.0124727413058281,0.00787315890192986,0.999923586845398,0.0123627353459597,2.74507868568633e-018,0.999891221523285,0.0124727413058281,0.00787315890192986,0.999764561653137,-4.8178204199962e-018,0.0216975342482328,0.999764561653137,-4.8178204199962e-018,0.0216975342482328,0.999764561653137,-4.8178204199962e-018,0.0216975342482328,0.999962389469147,-1.92555383649764e-018,0.00867192354053259,0.999962389469147,-1.92555383649764e-018,0.00867192354053259,0.999962389469147,-1.92555383649764e-018,0.00867192354053259,-0.0153311304748058,2.22018505722344e-016,-0.999882459640503,-0.0153311304748058,2.22018505722344e-016,-0.999882459640503,-0.0153311304748058,2.22018505722344e-016,-0.999882459640503,-0.0139777818694711,2.22022912940648e-016,-0.999902307987213,
  1364. -0.0139777818694711,2.22022912940648e-016,-0.999902307987213,-0.0139777818694711,2.22022912940648e-016,-0.999902307987213,0.99987530708313,-0.00119959574658424,-0.0157460682094097,0.99987530708313,-0.00119959574658424,-0.0157460682094097,0.99987530708313,-0.00119959574658424,-0.0157460682094097,0.999837100505829,-0.00882534217089415,-0.0157454665750265,0.999837100505829,-0.00882534217089415,-0.0157454665750265,0.999837100505829,-0.00882534217089415,-0.0157454665750265,0.0173922814428806,-2.22011041244496e-016,0.99984884262085,0.0173922814428806,-2.22011041244496e-016,0.99984884262085,0.0173922814428806,-2.22011041244496e-016,0.99984884262085,0.0176079515367746,-2.22010180976659e-016,0.999844968318939,0.0176079515367746,-2.22010180976659e-016,0.999844968318939,0.0176079515367746,-2.22010180976659e-016,0.999844968318939,0.999875843524933,0.000585297995712608,-0.0157460756599903,0.999720931053162,0.0006065753987059,-0.0236154552549124,0.999875843524933,0.000585297995712608,-0.0157460756599903,0.993262112140656,-0.113490298390388,-0.0234628859907389,0.993413925170898,-0.1135084182024,-0.0156443137675524,0.993262112140656,-0.113490298390388,-0.0234628859907389,-0.0300681963562965,-2.21944205051002e-016,0.999547839164734,-0.0260665528476238,0.0163563191890717,0.999526381492615,-0.0300681963562965,-2.21944205051002e-016,0.999547839164734,-0.0405807234346867,-2.21861698747984e-016,0.999176263809204,-0.0435267798602581,0.0167590845376253,0.998911678791046,-0.0435267798602581,0.0167590845376253,0.998911678791046,0.0106071690097451,-2.22032111189059e-016,0.999943733215332,0.00730759045109153,0.0155730834230781,0.999852120876312,0.0106071690097451,-2.22032111189059e-016,0.999943733215332,0.000586849811952561,0.01573221758008,0.999876081943512,-0.00383309554308653,-2.22042977033586e-016,0.999992668628693,0.000586849811952561,0.01573221758008,0.999876081943512,-0.0435145646333694,0.00239844061434269,0.999049961566925,-0.0507327131927013,0.0173232667148113,0.998562037944794,-0.0435145646333694,0.00239844061434269,0.999049961566925,
  1365. -0.0544118769466877,0.0174360647797585,0.998366355895996,-0.0547767505049706,0.0030191910918802,0.998494148254395,-0.0544228740036488,0.0170079916715622,0.9983731508255,1.22386781388427e-017,0,1,6.99353166490819e-018,2.58493941422821e-026,1,1.22386781388427e-017,0,1,-0.000608512258622795,-0.0193202644586563,0.999813199043274,-0.00105372990947217,-0.0191176719963551,0.999816656112671,-0.00045800197403878,-0.0193887501955032,0.999811887741089,0,-0.00311810593120754,0.999995112419128,-0.000124345024232753,-0.00315836351364851,0.999994993209839,0,-0.00311810593120754,0.999995112419128,0.000820315617602319,0.0208360161632299,0.999782621860504,0,0.0211515706032515,0.999776303768158,0.000981450197286904,0.0207740291953087,0.99978369474411,-0.00787377078086138,-0.000367364758858457,0.999968945980072,-0.00788803771138191,-0.00036236978485249,0.999968886375427,-0.00787377078086138,-0.000367364758858457,0.999968945980072,-0.007872574031353,0.0174426548182964,0.99981689453125,-0.00717813754454255,0.0176390279084444,0.999818682670593,-0.00703737000003457,0.0176788326352835,0.999819040298462,0.0435272008180618,0.0167590957134962,-0.998911678791046,0.0405811369419098,2.21861698747984e-016,-0.999176263809204,0.0435272008180618,0.0167590957134962,-0.998911678791046,0.0260647386312485,0.0163562782108784,-0.99952644109726,0.0300663709640503,2.21944218285892e-016,-0.999547898769379,0.0300663709640503,2.21944218285892e-016,-0.999547898769379,-0.000589542265515774,0.015732154250145,-0.999876081943512,0.00383038492873311,2.22042977033586e-016,-0.999992668628693,-0.000589542265515774,0.015732154250145,-0.999876081943512,-0.0106090772897005,2.22032111189059e-016,-0.999943733215332,-0.00730950897559524,0.0155730377882719,-0.999852120876312,-0.0106090772897005,2.22032111189059e-016,-0.999943733215332,0.0544147528707981,0.0174361541867256,-0.998366236686707,0.054779626429081,0.00301934941671789,-0.99849396944046,0.0544257536530495,0.0170080568641424,-0.998372972011566,0.0435145646333694,0.00239844061434269,-0.999049961566925,0.0507327131927013,0.0173232667148113,-0.998562037944794,
  1366. 0.0435145646333694,0.00239844061434269,-0.999049961566925,0.000608512724284083,-0.0193202793598175,-0.999813199043274,0.00105373084079474,-0.0191176887601614,-0.999816656112671,0.000458002323284745,-0.0193887650966644,-0.999811887741089,1.22386781388427e-017,0,-1,6.99353166490819e-018,-2.58493941422821e-026,-1,1.22386781388427e-017,0,-1,-0.0393377467989922,0.999178767204285,-0.00971471518278122,0,0.999966859817505,-0.00814158096909523,-0.0471890866756439,0.998835682868958,-0.0100271813571453,-0,0.999975264072418,0.00703022815287113,-0.0393382459878922,0.999191462993622,0.00829936843365431,-0,0.999975264072418,0.00703022815287113,0.00703725777566433,0.017681211233139,-0.999818980693817,0.00787257310003042,0.0174450017511845,-0.999816834926605,0.00717804441228509,0.0176414009183645,-0.999818682670593,0.00788797624409199,-0.000360823352821171,-0.999968886375427,0.00787377078086138,-0.000365796993719414,-0.999968945980072,0.00787377078086138,-0.000365796993719414,-0.999968945980072,-0.00020903316908516,0.0265472121536732,-0.999647557735443,-0.00020903316908516,0.0265472121536732,-0.999647557735443,-0.00020903316908516,0.0265472121536732,-0.999647557735443,-0.00029139660182409,0.0370073691010475,-0.999315023422241,-0.00029139660182409,0.0370073691010475,-0.999315023422241,-0.00029139660182409,0.0370073691010475,-0.999315023422241,0.000437092094216496,0.0555106960237026,-0.998458027839661,0.000437092094216496,0.0555106960237026,-0.998458027839661,0.000437092094216496,0.0555106960237026,-0.998458027839661,0.000494508887641132,0.0628026276826859,-0.998025834560394,0.000494508887641132,0.0628026276826859,-0.998025834560394,0.000494508887641132,0.0628026276826859,-0.998025834560394,-0.00794694852083921,-0.999924838542938,-0.00933759845793247,-7.44492135709152e-005,-0.999955296516418,-0.00945504941046238,-0.00794694852083921,-0.999924838542938,-0.00933759845793247,0.000103084406873677,-0.999914407730103,0.0130917197093368,-0.00777034973725677,-0.99988466501236,0.0130502274259925,0.000103084406873677,-0.999914407730103,0.0130917197093368,
  1367. -0.00736273685470223,0.354393035173416,-0.935067594051361,-0.00457501597702503,0.354150384664536,-0.935177385807037,-0.00736273685470223,0.354393035173416,-0.935067594051361,-0.00784178916364908,-0.0900400578975677,-0.995907247066498,-0.00855122599750757,-0.0901106968522072,-0.995895028114319,-0.00855122599750757,-0.0901106968522072,-0.995895028114319,-0.0153248328715563,-0.0133334007114172,0.999793708324432,0.00822721142321825,-0.0150006888434291,0.999853730201721,0.00822721142321825,-0.0150006888434291,0.999853730201721,0.0111111216247082,-0.14035801589489,0.990038454532623,-0.0110691133886576,-0.143360003829002,0.989608705043793,-0.0110691133886576,-0.143360003829002,0.989608705043793,-0.0232405550777912,0.998732507228851,0.0446470677852631,-0.0164319165050983,0.998871862888336,0.044554840773344,-0.0228892713785172,0.99874085187912,0.0446423627436161,-0.0164489913731813,0.998820245265961,0.0456907674670219,-0.0232315380126238,0.998687088489532,0.0456557907164097,-0.0164489913731813,0.998820245265961,0.0456907674670219,-0.0444955863058567,0.713787078857422,-0.698947906494141,-0.0222647488117218,0.71293443441391,-0.700877130031586,-0.0444955863058567,0.713787078857422,-0.698947906494141,-0.0222622789442539,0.694689810276031,-0.718964874744415,-0.0444895699620247,0.692480802536011,-0.720063209533691,-0.0166064631193876,0.695196270942688,-0.718628168106079,0.0108946356922388,-0.703243255615234,-0.71086585521698,-0.000207755714654922,-0.700479745864868,-0.713672280311584,0.0108946356922388,-0.703243255615234,-0.71086585521698,0.00084433238953352,-0.733405709266663,-0.679790675640106,0.0125816892832518,-0.729740142822266,-0.683608889579773,0.00615740194916725,-0.731761515140533,-0.68153303861618,-0.0444955863058567,0.713786959648132,-0.69894802570343,-0.0222647488117218,0.712934374809265,-0.70087718963623,-0.0444955863058567,0.713786959648132,-0.69894802570343,-0.0222622770816088,0.694688677787781,-0.718965947628021,-0.044489573687315,0.692479729652405,-0.720064342021942,-0.016606455668807,0.695195198059082,-0.718629240989685,
  1368. 0.0108944233506918,-0.703239858150482,-0.710869252681732,-0.000207859091460705,-0.700476408004761,-0.713675558567047,0.0108944233506918,-0.703239858150482,-0.710869252681732,0.00084452610462904,-0.733411610126495,-0.679784297943115,0.0125820767134428,-0.729746162891388,-0.683602452278137,0.00615754816681147,-0.731767535209656,-0.6815265417099,-0.000592806783970445,0.0250954851508141,-0.999684929847717,-0.00139962160028517,0.0253931358456612,-0.999676644802094,-0.000592806783970445,0.0250954851508141,-0.999684929847717,-0.000586006441153586,0.0248076040297747,-0.99969208240509,-0.00134984822943807,0.0244901031255722,-0.999699175357819,-0.00134984822943807,0.0244901031255722,-0.999699175357819,-0.000542105583008379,0.0229491367936134,-0.999736487865448,0.00649692630395293,0.024936905130744,-0.999667942523956,-0.000542105583008379,0.0229491367936134,-0.999736487865448,0.00929432827979326,-0.0258223246783018,-0.999623358249664,0.000558115134481341,-0.0236268732696772,-0.999720692634583,0.00929432827979326,-0.0258223246783018,-0.999623358249664,-0.00218132347799838,0.09234269708395,-0.99572491645813,-0.00438614189624786,0.0928400084376335,-0.995671451091766,-0.00218132347799838,0.09234269708395,-0.99572491645813,-0.000444187171524391,0.0188039243221283,-0.999823093414307,-0.000882558990269899,0.0186808314174414,-0.999825119972229,-0.000882558990269899,0.0186808314174414,-0.999825119972229,0.0236133299767971,-0.999630928039551,-0.0134364310652018,0.0472950376570225,-0.998786270618439,-0.0137527333572507,0.0236133299767971,-0.999630928039551,-0.0134364310652018,0.0473350137472153,-0.998690605163574,-0.0194035954773426,0.0236107315868139,-0.999521017074585,-0.0200074873864651,0.0473350137472153,-0.998690605163574,-0.0194035954773426,0.000154393041157164,-0.00980395823717117,-0.999951958656311,0.000467848469270393,-0.00990279205143452,-0.999950885772705,0.000154393041157164,-0.00980395823717117,-0.999951958656311,-0.000702171819284558,0.0445879101753235,-0.999005198478699,-0.00208339816890657,0.0440985970199108,-0.999025046825409,
  1369. -0.00208339816890657,0.0440985970199108,-0.999025046825409,0.0157405193895102,-0.999522984027863,-0.0265714563429356,0.0473873615264893,-0.998507559299469,-0.0271498262882233,0.0157405193895102,-0.999522984027863,-0.0265714563429356,0.0473992489278317,-0.998455882072449,-0.0289695896208286,0.0157391373068094,-0.999435245990753,-0.0296893902122974,0.0473992489278317,-0.998455882072449,-0.0289695896208286,-0.00539063708856702,0.999953508377075,-0.00800098665058613,-0.00538799911737442,0.999953150749207,-0.00804334785789251,-0.00589156104251742,0.99998265504837,4.63902433693875e-005,0.000413314235629514,1,-3.25444284499099e-006,0.000413297355407849,0.999999940395355,-6.50862011752906e-006,0.000372716225683689,0.999969065189362,-0.00786496791988611,0.000351873197359964,0.999999940395355,-2.77065510090324e-006,0.000351819006027654,0.999999940395355,-5.54045709577622e-006,0.000351819006027654,0.999999940395355,-5.54045709577622e-006,-0.00834253337234259,-0.99993622303009,0.0076107569038868,-0.00834031030535698,-0.999935269355774,0.00774216232821345,-0.00846994481980801,-0.999964118003845,6.66924825054593e-005,0.000477725989185274,-0.999968886375427,0.0078812949359417,0.000434313842561096,-0.99999988079071,-6.83958796798834e-006,0.000434332643635571,-0.99999988079071,-3.41994223163056e-006,-5.51176453882363e-005,-1,8.6799445853103e-007,-5.51264420209918e-005,-1,4.34066492971397e-007,-5.51176453882363e-005,-1,8.6799445853103e-007,0.997463166713715,-0.0695523619651794,0.0151604264974594,0.997471392154694,-0.0693113133311272,-0.0157082118093967,0.997550904750824,-0.0695012882351875,0.00785473175346851,0.713128328323364,0.70094358921051,-0.0112303672358394,0.710292339324951,0.703708171844482,0.016726715490222,0.712603807449341,0.701544225215912,-0.00561105366796255,0.819927513599396,-0.572321951389313,-0.0129122445359826,0.819653511047363,-0.572823286056519,-0.00645396439358592,0.819927513599396,-0.572321951389313,-0.0129122445359826,0.993839740753174,-0.109716415405273,-0.0156510192900896,0.993810594081879,-0.109979875385761,0.0156505610793829,
  1370. 0.993810594081879,-0.109979875385761,0.0156505610793829,0.678247809410095,0.734755635261536,0.0106810685247183,0.68030446767807,0.732851386070251,-0.0107134561985731,0.679314076900482,0.733847677707672,1.62946917671752e-016,0.764486134052277,-0.644640147686005,-1.43138866911753e-016,0.765219509601593,-0.643656730651855,-0.0120507013052702,0.765219509601593,-0.643656730651855,-0.0120507013052702
  1371. }
  1372. BinormalsW: *1086 {
  1373. 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,
  1374. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1375. }
  1376. }
  1377. LayerElementTangent: 0 {
  1378. Version: 102
  1379. Name: "UVmap_0"
  1380. MappingInformationType: "ByPolygonVertex"
  1381. ReferenceInformationType: "Direct"
  1382. Tangents: *3258 {
  1383. a: -0.998574256896973,-0.0157255791127682,-0.0510132908821106,-0.998699426651001,9.91271325797316e-018,-0.050987035036087,-0.998699426651001,9.91271325797316e-018,-0.050987035036087,-0.596270680427551,-0.765080094337463,0.243133127689362,0.173266798257828,-0.98359215259552,0.0502522587776184,0.474503964185715,-0.823471128940582,0.311032652854919,-0.00841441750526428,-0.00686900084838271,0.999941110610962,0,-0.00479765748605132,0.999988496303558,-0.00841441750526428,-0.00686900084838271,0.999941110610962,-0.00787200499325991,0.0211813803762197,0.999744653701782,-0.00643455656245351,0.0182623751461506,0.999812543392181,-0.00787200499325991,0.0211813803762197,0.999744653701782,0.99999988079071,-0.000509554985910654,0,0.99999988079071,-0.000509554985910654,0,0.99999988079071,-0.000509554985910654,0,-0.999999821186066,-0.000627070548944175,0,-0.999999821186066,-0.000627070548944175,0,-0.999999821186066,-0.000627070548944175,0,-0.00680006621405482,-0.0074988049454987,0.999948859214783,-0.00718853948637843,0.0159154403954744,0.999847590923309,-0.00680006621405482,-0.0074988049454987,0.999948859214783,-0.00721454853191972,0.0208770148456097,0.999756038188934,-0.0066531621851027,0.0221117381006479,0.99973338842392,0.000478700356325135,0.0202654208987951,0.999794542789459,-0.0254878867417574,-2.23195590351452e-016,0.999675154685974,-0.0240962356328964,0.0166899356991053,0.999570310115814,-0.0240962356328964,0.0166899356991053,0.999570310115814,-0.00406485190615058,-0.0078737074509263,0.999960839748383,-0.00218496983870864,0.0158320460468531,0.999872386455536,-0.00406485190615058,-0.0078737074509263,0.999960839748383,-8.30964345368557e-005,-1,-2.15080313267596e-016,-8.30964345368557e-005,-1,-2.15080313267596e-016,-8.30964345368557e-005,-1,-2.15080313267596e-016,0.00266196392476559,0.999996483325958,2.16243898309107e-016,0.00266196392476559,0.999996483325958,2.16243898309107e-016,0.00266196392476559,0.999996483325958,2.16243898309107e-016,0.00360210053622723,-0.999993503093719,-2.28802022019989e-016,0.00360210053622723,-0.999993503093719,-2.28802022019989e-016,
  1384. 0.00360210053622723,-0.999993503093719,-2.28802022019989e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.00836930982768536,-0.00629572616890073,-0.999945163726807,0,-0.0042251436971128,-0.999991059303284,0.00836930982768536,-0.00629572616890073,-0.999945163726807,0.00643456168472767,0.0182623099535704,-0.999812543392181,0.00787200499325991,0.0211813170462847,-0.999744653701782,0.00787200499325991,0.0211813170462847,-0.999744653701782,-0.999983489513397,0.00574385467916727,0,-0.999983489513397,0.00574385467916727,0,-0.999983489513397,0.00574385467916727,0,0.999999761581421,-0.000729320978280157,0,0.999999761581421,-0.000729320978280157,0,0.999999761581421,-0.000729320978280157,0,0.00619181292131543,-0.00753236003220081,-0.999952554702759,0.00658359471708536,0.0159012190997601,-0.999852001667023,0.00619181292131543,-0.00753236003220081,-0.999952554702759,0.00721896858885884,0.0207374058663845,-0.999758899211884,0.00666081765666604,0.0219732690602541,-0.999736368656158,-0.00047539544175379,0.0201255120337009,-0.999797344207764,0.0250145699828863,0.0167257264256477,-0.999547183513641,0.0264045838266611,2.2319437274159e-016,-0.999651432037354,0.0250145699828863,0.0167257264256477,-0.999547183513641,0.00406491616740823,-0.0078737074509263,-0.999960839748383,0.00218503153882921,0.0158320479094982,-0.999872386455536,0.00406491616740823,-0.0078737074509263,-0.999960839748383,8.35798782645725e-005,-1,-2.29887097695202e-016,8.35798782645725e-005,-1,-2.29887097695202e-016,8.35798782645725e-005,-1,-2.29887097695202e-016,-0.00266196113079786,0.999996483325958,2.16243673315981e-016,-0.00266196113079786,0.999996483325958,2.16243673315981e-016,-0.00266196113079786,0.999996483325958,2.16243673315981e-016,-0.00131770188454539,-0.999999225139618,-2.28805833668252e-016,-0.00131770188454539,-0.999999225139618,-2.28805833668252e-016,-0.00131770188454539,-0.999999225139618,-2.28805833668252e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.0149299632757902,0.975124895572662,0.22115270793438,
  1385. -0.0831424221396446,0.943721115589142,-0.320121586322784,0.0104079023003578,0.990636467933655,-0.136129692196846,0.00277323112823069,0.0314803346991539,-0.999500632286072,0.00277323112823069,0.0314803346991539,-0.999500632286072,0.00277323112823069,0.0314803346991539,-0.999500632286072,-0.0183658674359322,0.0314751453697681,-0.999335885047913,-0.0183658674359322,0.0314751453697681,-0.999335885047913,-0.0183658674359322,0.0314751453697681,-0.999335885047913,-0.0325183384120464,-0.996782958507538,0.0732553824782372,-0.0424141809344292,-0.969696819782257,-0.240602001547813,-0.00341648911125958,-0.992097914218903,0.125419408082962,-0.0206249728798866,0.971775054931641,0.235006138682365,-0.115643471479416,0.910232722759247,-0.397621601819992,0.0189170092344284,0.968958616256714,-0.246498242020607,0.143074810504913,-0.932224810123444,0.332395166158676,0.0670004263520241,-0.974055111408234,-0.216165646910667,0.0348232574760914,-0.967067539691925,0.252126425504684,-0.00538968993350863,-0.0157458521425724,-0.999861598014832,-0.00538968993350863,-0.0157458521425724,-0.999861598014832,-0.00538968993350863,-0.0157458521425724,-0.999861598014832,-0.0186043884605169,-0.0157433543354273,-0.999702990055084,-0.0186075605452061,-0.023611381649971,-0.999548137187958,-0.0186043884605169,-0.0157433543354273,-0.999702990055084,0.00154610152821988,0.999542057514191,-0.0302236638963223,0.141775652766228,0.922784686088562,0.358284890651703,-0.0749121829867363,0.996201395988464,-0.0443959794938564,0.0615030787885189,-0.994459092617035,0.0852552577853203,0.0505239814519882,-0.974717676639557,-0.217652827501297,-0.000969026878010482,-0.993931949138641,0.109992668032646,0.00368511723354459,-0.0392524227499962,0.999222636222839,0.00423900363966823,-0.0627672150731087,0.998019218444824,0.00423900363966823,-0.0627672150731087,0.998019218444824,0.00512176705524325,-0.0392182879149914,0.999217569828033,0.00567494425922632,-0.0627329871058464,0.998014211654663,0.00512176705524325,-0.0392182879149914,0.999217569828033,0.0324398428201675,0.695528864860535,-0.7177654504776,
  1386. 0.0281801521778107,0.680297672748566,-0.73239403963089,0.0324398428201675,0.695528864860535,-0.7177654504776,0.00218287436291575,0.671602368354797,-0.740908563137054,0.00111966056283563,0.670662999153137,-0.741761326789856,0.00218287436291575,0.671602368354797,-0.740908563137054,0.0208941046148539,0.695480942726135,-0.718240737915039,0.0275184959173203,0.672061681747437,-0.739983677864075,0.0208941046148539,0.695480942726135,-0.718240737915039,0.00213034590706229,0.672476649284363,-0.740115284919739,0.00100271706469357,0.674552977085114,-0.738225758075714,0.00213034590706229,0.672476649284363,-0.740115284919739,0.0304017681628466,0.695527136325836,-0.717856347560883,0.0261480677872896,0.680217623710632,-0.732543766498566,0.0304017681628466,0.695527136325836,-0.717856347560883,0.00202023447491229,0.674306452274323,-0.738448858261108,0.00103808473795652,0.673378765583038,-0.739297032356262,0.00202023447491229,0.674306452274323,-0.738448858261108,0.0147135052829981,0.695417106151581,-0.718455672264099,0.0213378984481096,0.671801865100861,-0.740423500537872,0.0147135052829981,0.695417106151581,-0.718455672264099,0.00213034334592521,0.672476708889008,-0.740115225315094,0.00100271333940327,0.674553096294403,-0.738225638866425,0.00213034334592521,0.672476708889008,-0.740115225315094,0.0244261715561152,0.00844838377088308,-0.999666035175323,0.0254440419375896,0.00140242837369442,-0.999675273895264,0.0254440419375896,0.00140242837369442,-0.999675273895264,0.0132517721503973,0.000730413303244859,-0.999912023544312,0.012372781522572,0.00816542282700539,-0.999890208244324,0.012372781522572,0.00816542282700539,-0.999890208244324,0.0132888481020927,-0.999911725521088,-2.29719782218339e-016,0.0132888481020927,-0.999911725521088,-2.29719782218339e-016,0.0132888481020927,-0.999911725521088,-2.29719782218339e-016,-0.028066486120224,0.999606072902679,2.33544347733429e-016,-0.028066486120224,0.999606072902679,2.33544347733429e-016,-0.028066486120224,0.999606072902679,2.33544347733429e-016,0.0222498774528503,0.0326977930963039,-0.999217689037323,
  1387. 0.023375753313303,-0.0230571422725916,-0.999460816383362,0.0222498774528503,0.0326977930963039,-0.999217689037323,0.0353275015950203,-0.0224886480718851,-0.999122738838196,0.0340089648962021,0.0254752207547426,-0.999096810817719,0.0348735637962818,-0.0227777753025293,-0.99913215637207,0.00226206984370947,-0.999997437000275,-2.28844082499776e-016,0.00226206984370947,-0.999997437000275,-2.28844082499776e-016,0.00226206984370947,-0.999997437000275,-2.28844082499776e-016,-0.00769419129937887,0.999970495700836,2.32058890171962e-016,-0.00769419129937887,0.999970495700836,2.32058890171962e-016,-0.00769419129937887,0.999970495700836,2.32058890171962e-016,0.0244189687073231,0.00844821520149708,-0.999666213989258,0.0255327578634024,0.00140731839928776,-0.999673008918762,0.0255327578634024,0.00140731839928776,-0.999673008918762,0.0134447375312448,0.000741049356292933,-0.999909341335297,0.0124750267714262,0.00816782657057047,-0.999888837337494,0.0124750267714262,0.00816782657057047,-0.999888837337494,4.38718307123054e-005,-1,-2.10582660961905e-016,4.38718307123054e-005,-1,-2.10582660961905e-016,4.38718307123054e-005,-1,-2.10582660961905e-016,0.00143626786302775,0.999998986721039,2.12148176371777e-016,0.00143626786302775,0.999998986721039,2.12148176371777e-016,0.00143626786302775,0.999998986721039,2.12148176371777e-016,0.035455297678709,-0.00232210056856275,-0.99936854839325,0.0385368801653385,0.0254175066947937,-0.998933851718903,0.035455297678709,-0.00232210056856275,-0.99936854839325,-0.000309150607790798,0.00193219818174839,-0.999998092651367,0.000119240699859802,-0.0018929208163172,-0.999998211860657,0.000119240699859802,-0.0018929208163172,-0.999998211860657,0.0123388851061463,-0.00607514195144176,-0.999905407428741,0.0058472971431911,0.016021991148591,-0.999854564666748,0.0128027321770787,-0.0059507661499083,-0.999900341033936,0.00611006049439311,0.027951605618,-0.999590694904327,-0.003597566857934,0.0224847849458456,-0.999740719795227,0.00611006049439311,0.027951605618,-0.999590694904327,-0.368139356374741,0.158332735300064,-0.916190028190613,
  1388. 0.500039279460907,0.165222838521004,-0.850095510482788,0.371202290058136,-0.156065046787262,-0.91534298658371,-0.39398068189621,0.0928490310907364,-0.914417028427124,-0.335582494735718,-0.287541836500168,-0.897053122520447,0.519466161727905,0.101281814277172,-0.848467409610748,0.301119655370712,-0.950808167457581,-0.0727380067110062,-0.105883873999119,-0.992502927780151,0.0610469616949558,0.25136923789978,-0.967578172683716,0.0246212501078844,-0.113069131970406,-0.992946684360504,0.0356716588139534,-0.189626678824425,-0.980318069458008,-0.0549398884177208,0.252475619316101,-0.967513203620911,0.0131999049335718,0.999307453632355,-0.0157371256500483,0.0337188914418221,0.999431490898132,-7.80694716488773e-018,0.0337178371846676,0.999431490898132,-7.80694716488773e-018,0.0337178371846676,0.999628126621246,-5.8596585374098e-018,0.0272692162543535,0.999504148960114,-0.0157402232289314,0.0272701717913151,0.999504148960114,-0.0157402232289314,0.0272701717913151,0.999934315681458,0.00787349883466959,-0.00832844711840153,0.999841451644897,-0.015745535492897,-0.00832880474627018,0.999841451644897,-0.015745535492897,-0.00832880474627018,0.999843180179596,-0.0157455615699291,-0.00812083669006824,0.999936044216156,0.00787351187318563,-0.008120640181005,0.999936044216156,0.00787351187318563,-0.008120640181005,-0.433215796947479,-0.885614097118378,0.167367175221443,-0.321369498968124,-0.935011088848114,-0.149919837713242,0.353305280208588,-0.92256087064743,0.155102670192719,0.351120084524155,-0.922598302364349,0.159772008657455,0.393403768539429,-0.839932382106781,-0.37382760643959,-0.429033219814301,-0.885666310787201,0.177554816007614,-0.349739044904709,-0.913097083568573,-0.209610402584076,-0.342029422521591,-0.919502139091492,0.193731084465981,0.262679189443588,-0.951721251010895,0.158828526735306,-0.362828850746155,-0.918489158153534,0.157266840338707,0.336427241563797,-0.846197783946991,-0.413238406181335,0.285455226898193,-0.950546085834503,0.122382558882236,0.999997973442078,0.00201133219525218,4.37200005512732e-019,0.999997973442078,0.00201133219525218,4.37200005512732e-019,
  1389. 0.999997973442078,0.00201133219525218,4.37200005512732e-019,0.999991655349731,0.00409025466069579,9.13126435956089e-019,0.999991655349731,0.00409025466069579,9.13126435956089e-019,0.999991655349731,0.00409025466069579,9.13126435956089e-019,0.998792707920074,-1.095952521241e-017,0.0491237342357636,0.998793423175812,-0.000386688072467223,0.0491093844175339,0.998792707920074,-1.095952521241e-017,0.0491237342357636,0.998774111270905,-0.000389753025956452,0.0494986325502396,0.998773515224457,-1.09649994937039e-017,0.0495121590793133,0.998774111270905,-0.000389753025956452,0.0494986325502396,0.999962210655212,-0.00870463345199823,-1.85705645753819e-018,0.999962210655212,-0.00870463345199823,-1.85705645753819e-018,0.999962210655212,-0.00870463345199823,-1.85705645753819e-018,0.999981343746185,-0.00611074082553387,-1.29390476207931e-018,0.999981343746185,-0.00611074082553387,-1.29390476207931e-018,0.999981343746185,-0.00611074082553387,-1.29390476207931e-018,0.9999840259552,-1.08080039221638e-018,0.00565243605524302,0.999983906745911,-4.46862286480609e-005,0.0056751542724669,0.999983906745911,-4.46862286480609e-005,0.0056751542724669,0.999984085559845,-4.44364050053991e-005,0.00564342737197876,0.999984264373779,-1.08651331511698e-018,0.0056131505407393,0.999953269958496,0.00787364784628153,0.00561349652707577,0.999954760074615,0.00787365902215242,-0.00534177245572209,0.999954760074615,0.00787365902215242,-0.00534177245572209,0.999954760074615,0.00787365902215242,-0.00534177245572209,0.999953031539917,0.00787364598363638,-0.00566829787567258,0.999953031539917,0.00787364598363638,-0.00566829787567258,0.999953031539917,0.00787364598363638,-0.00566829787567258,0.208323746919632,-0.977216482162476,-0.0406096093356609,-0.300979286432266,-0.945946991443634,0.12081304192543,-0.239394009113312,-0.969678699970245,-0.0491298176348209,0.207267850637436,-0.977246701717377,-0.045043408870697,-0.237232521176338,-0.969764530658722,-0.0572510398924351,0.278488993644714,-0.956649720668793,0.0852372795343399,-0.324441522359848,-0.929653227329254,-0.17459274828434,
  1390. 0.468943446874619,-0.873277246952057,-0.13220788538456,0.314025700092316,-0.935316026210785,0.163009241223335,-0.348176896572113,-0.928342342376709,-0.130205199122429,-0.383455514907837,-0.832311153411865,0.400274962186813,0.487731665372849,-0.870908498764038,-0.0603012330830097,0.371104001998901,-0.918848216533661,-0.134163230657578,-0.257103949785233,-0.958200395107269,-0.125497400760651,0.306089222431183,-0.917938828468323,0.252384036779404,0.354883760213852,-0.919734477996826,-0.167767807841301,-0.376435667276382,-0.845054626464844,0.379708915948868,-0.23088338971138,-0.959155023097992,-0.163446307182312,-0.999928832054138,-0.00896218325942755,-0.00787345506250858,-0.999928832054138,-0.0089630326256156,0.00787345506250858,-0.999928832054138,-0.00896218325942755,-0.00787345506250858,-0.999967873096466,-0.00150870461948216,0.00787376239895821,-0.999967873096466,-0.00150856957770884,-0.00787376239895821,-0.999967873096466,-0.00150870461948216,0.00787376239895821,-0.999100804328918,9.53748758850685e-018,-0.0423980019986629,-0.999070346355438,0.00753246853128076,-0.0424468144774437,-0.999100804328918,9.53748758850685e-018,-0.0423980019986629,-0.999086737632751,0.00753565086051822,-0.0420590527355671,-0.999117195606232,9.2847177369229e-018,-0.042010135948658,-0.999086737632751,0.00753565086051822,-0.0420590527355671,-0.999968767166138,0.000710054882802069,-0.0078737698495388,-0.999968767166138,0.000710120075382292,0.0078737698495388,-0.999968767166138,0.000710054882802069,-0.0078737698495388,-0.999946415424347,0.00673552509397268,0.0078735938295722,-0.999946415424347,0.00673493091017008,-0.0078735938295722,-0.999946415424347,0.00673552509397268,0.0078735938295722,-0.99985259771347,-0.00799255631864071,-0.0152019895613194,-0.999884128570557,3.02896624473392e-018,-0.0152244390919805,-0.999853193759918,0.0078728599473834,-0.0152255315333605,-0.99985545873642,3.56225082641778e-018,-0.0170021653175354,-0.999823868274689,-0.00800628215074539,-0.0169739909470081,-0.999823868274689,-0.00800628215074539,-0.0169739909470081,-0.999911606311798,0.00787332002073526,0.0107229426503181,
  1391. -0.999911606311798,0.00787332002073526,0.0107229426503181,-0.999911606311798,0.00787332002073526,0.0107229426503181,-0.999904751777649,0.00787326600402594,0.0113377515226603,-0.999904751777649,0.00787326600402594,0.0113377515226603,-0.999904751777649,0.00787326600402594,0.0113377515226603,-0.99994832277298,-0.00787360873073339,0.00644674617797136,-0.99994832277298,0.00787360873073339,0.00644667539745569,-0.99994832277298,0.00787360873073339,0.00644667539745569,-0.999950408935547,0.00787362549453974,0.00609978660941124,-0.999950408935547,-0.00787362549453974,0.00609993608668447,-0.999857425689697,-0.0157457869499922,0.00610057823359966,-0.983173191547394,-4.15717914073674e-017,0.182676389813423,-0.983173191547394,-4.15717914073674e-017,0.182676389813423,-0.983173191547394,-4.15717914073674e-017,0.182676389813423,-0.982604742050171,4.03073366532392e-017,-0.185709148645401,-0.982604742050171,4.03073366532392e-017,-0.185709148645401,-0.982604742050171,4.03073366532392e-017,-0.185709148645401,0.952899754047394,6.93523511862178e-017,-0.303285777568817,0.952899754047394,6.93523511862178e-017,-0.303285777568817,0.952899754047394,6.93523511862178e-017,-0.303285777568817,0.998913407325745,1.02847741344158e-017,-0.0466043427586555,0.998913407325745,1.02847741344158e-017,-0.0466043427586555,0.998913407325745,1.02847741344158e-017,-0.0466043427586555,-0.00622415402904153,-0.999943435192108,0.00862763356417418,-0.00746696395799518,-0.9999720454216,-0.000587949936743826,-0.00742555828765035,-0.999971330165863,-0.0014970883494243,-0.00427295453846455,-0.9999640583992,-0.0073258001357317,-0.00370089360512793,-0.999993205070496,-0.000291408970952034,-0.00238655204884708,-0.999963521957397,0.00820139329880476,-0.00789476651698351,-0.999968707561493,-0.000533337064553052,-0.00785183440893888,-0.999969124794006,-0.000557231716811657,0.00785700883716345,-0.999969065189362,0.000304153771139681,-0.00786509551107883,-0.999969065189362,0.000220381989493035,0.00786443799734116,-0.999969124794006,-0.000296362064545974,-0.00787403993308544,-0.999969005584717,6.81288747728104e-006,
  1392. 0.0078770574182272,-0.999969065189362,5.95944293309003e-005,-0.0157201718539,-0.999876439571381,-0.000411403045291081,-0.0157409496605396,-0.999875903129578,0.000651762238703668,0.0076184687204659,-0.999960243701935,-0.00463068531826139,0.0158774945884943,-0.999868452548981,-0.00334098748862743,-0.0154387569054961,-0.999868929386139,-0.00487696519121528,0.00295270676724613,-0.999965369701386,0.00778074422851205,0.00312861939892173,-0.999966204166412,-0.00760276848450303,0.00177490443456918,-0.999966204166412,0.00802748370915651,-0.00140429602470249,-0.999967038631439,-0.00799538940191269,-0.0013347496278584,-0.999967873096466,0.00791580229997635,-0.00211856164969504,-0.999968230724335,-0.00768404640257359,0.168629199266434,2.19121070707583e-016,-0.985679566860199,0.168629199266434,2.19121070707583e-016,-0.985679566860199,0.168629199266434,2.19121070707583e-016,-0.985679566860199,-0.189955592155457,2.18254291304746e-016,-0.981792688369751,-0.189955592155457,2.18254291304746e-016,-0.981792688369751,-0.189955592155457,2.18254291304746e-016,-0.981792688369751,0.296091794967651,-2.11812592505987e-016,0.955159604549408,0.296091794967651,-2.11812592505987e-016,0.955159604549408,0.296091794967651,-2.11812592505987e-016,0.955159604549408,-0.00668516289442778,-2.22006475207515e-016,0.999977648258209,-0.00668516289442778,-2.22006475207515e-016,0.999977648258209,-0.00668516289442778,-2.22006475207515e-016,0.999977648258209,-0.00757220899686217,0.999965965747833,-0.00327627337537706,0.00762232532724738,0.999965846538544,-0.00319305458106101,0.00797349866479635,0.999965965747833,-0.00211138115264475,-0.00810842681676149,0.999966025352478,0.00154967978596687,0.000273538782494143,0.999998331069946,0.00181399448774755,0.00798324868083,0.999967277050018,0.00139052630402148,0.00716330343857408,0.999961972236633,-0.00497852452099323,0.000484923366457224,0.999992609024048,-0.00381877133622766,0.00748804910108447,0.999962031841278,-0.00445273425430059,0.000195789732970297,0.999998807907104,-0.00154184480197728,0.00801993347704411,0.999967575073242,-0.000753122149035335,
  1393. 0.00759087409824133,0.999965846538544,-0.00326592940837145,0.00231370609253645,0.999965608119965,0.00796483643352985,0.00251660798676312,0.999965071678162,-0.00797281973063946,0.00358716049231589,0.999872267246246,0.0155765479430556,0.00274199293926358,0.999874293804169,-0.0156165100634098,0.00185031211003661,0.999966740608215,-0.00794660113751888,0.00170594151131809,0.999967038631439,0.00794091913849115,-0.00059452053392306,0.999999821186066,2.22057522177477e-016,-0.00107697874773294,0.999968886375427,0.00781441014260054,-0.00102733576204628,0.999969005584717,-0.00780905736610293,-0.00343882688321173,0.999964654445648,0.0076841963455081,-0.00274569587782025,0.999964654445648,0.00796021614223719,-0.00347173516638577,0.999964773654938,-0.00765504641458392,0.985722899436951,-3.74000317194093e-017,0.168375790119171,0.985722899436951,-3.74000317194093e-017,0.168375790119171,0.985722899436951,-3.74000317194093e-017,0.168375790119171,0.982258200645447,4.14098658393764e-017,-0.187533542513847,0.982258200645447,4.14098658393764e-017,-0.187533542513847,0.982258200645447,4.14098658393764e-017,-0.187533542513847,-0.956954538822174,-6.47492962181522e-017,0.290237814188004,-0.956954538822174,-6.47492962181522e-017,0.290237814188004,-0.956954538822174,-6.47492962181522e-017,0.290237814188004,-0.999989449977875,9.56396460593891e-019,-0.00459310878068209,-0.999989449977875,9.56396460593891e-019,-0.00459310878068209,-0.999989449977875,9.56396460593891e-019,-0.00459310878068209,0.00418648263439536,0.999965369701386,0.00719592021778226,0.00140091823413968,0.999966204166412,0.00810301676392555,0.00264411675743759,0.999996483325958,-0.000251820572884753,-0.000497187953442335,0.999968945980072,0.00787707511335611,0.00146321184001863,0.999969184398651,-0.00771562149748206,0.00137831293977797,0.999999046325684,-0.000131267675897107,-0.0156644489616156,0.999876201152802,-0.00148107286076993,0.00779625028371811,0.999968945980072,-0.00123064580839127,5.24671713719727e-006,0.99999988079071,-0.000666331965476274,-0.0155061148107052,0.999870300292969,-0.00435199495404959,
  1394. -0.0237171519547701,0.999715387821198,-0.00258645485155284,0.00762144010514021,0.99996292591095,-0.00400500651448965,0.00806535687297583,0.999955713748932,-0.00486891623586416,-0.00805851258337498,0.999956488609314,-0.00469490932300687,-0.00805851258337498,0.999956488609314,-0.00469490932300687,0.00798722449690104,0.9999640583992,-0.00288268155418336,-0.0155959445983171,0.999871134757996,-0.00381144019775093,-0.00798720959573984,0.9999640583992,-0.00288229854777455,-0.00591390300542116,0.999957025051117,-0.00713825924322009,-0.00752348033711314,0.999855995178223,0.0152126038447022,-0.00305748451501131,0.999846220016479,-0.017268069088459,-0.00547166028991342,0.99986720085144,0.0153581853955984,-0.00489494018256664,0.99996155500412,-0.00727577414363623,-0.00340053578838706,0.999961078166962,0.0081414682790637,0.198256880044937,-2.16880986199451e-016,0.980150103569031,0.198256880044937,-2.16880986199451e-016,0.980150103569031,0.198256880044937,-2.16880986199451e-016,0.980150103569031,-0.173298671841621,-2.18458452714814e-016,0.984869420528412,-0.173298671841621,-2.18458452714814e-016,0.984869420528412,-0.173298671841621,-2.18458452714814e-016,0.984869420528412,-0.29077273607254,2.11610958959871e-016,-0.956792175769806,-0.29077273607254,2.11610958959871e-016,-0.956792175769806,-0.29077273607254,2.11610958959871e-016,-0.956792175769806,-0.057538628578186,2.21880902573085e-016,-0.998343288898468,-0.057538628578186,2.21880902573085e-016,-0.998343288898468,-0.057538628578186,2.21880902573085e-016,-0.998343288898468,-0.00186566077172756,-0.999966681003571,0.00794720463454723,-0.00255478289909661,-0.999966681003571,0.00775305507704616,-0.00181246269494295,-0.999966681003571,-0.00795938167721033,-0.0035251930821687,-0.999963879585266,-0.00773494457826018,-0.00358267244882882,-0.999963998794556,0.00770447216928005,-0.00290617905557156,-0.999963879585266,0.00798814836889505,0.0157741624861956,-0.99987518787384,0.000871873693540692,-0.00801091734319925,-0.999967694282532,-0.000783974479418248,0.000113877693365794,-0.999999761581421,-0.000677842530421913,
  1395. -0.00777867808938026,-0.999968469142914,0.00165459699928761,0.0155095113441348,-0.999874413013458,0.00325363222509623,0.0157215446233749,-0.999875724315643,-0.00117730093188584,0.000598608457949013,-0.999968886375427,0.00786905735731125,0.00079330411972478,-0.999968886375427,-0.00784878432750702,0.00011742163769668,-0.999968945980072,0.00788024347275496,8.83130633155815e-005,-0.999969124794006,-0.00787099171429873,3.15358083753381e-005,-0.999969005584717,0.0078735239803791,-0.000272706121904776,-0.999969065189362,-0.0078608887270093,-0.00780178373679519,-0.999969005584717,-0.00114280998241156,0.0156729873269796,-0.999875545501709,-0.00185634393710643,-0.0158819574862719,-0.999873638153076,0.000690595770720392,0.0155925936996937,-0.999870836734772,-0.00389645108953118,-0.007637033239007,-0.999963760375977,-0.00375757296569645,0.0160367675125599,-0.999870300292969,-0.00149226339999586,-0.124815545976162,-0.214567169547081,-0.968701303005219,0.0929442867636681,-0.0326864346861839,-0.995134651660919,-0.126695185899735,-0.0250071659684181,-0.991626441478729,-0.120371080935001,-0.0122356219217181,-0.992653667926788,0.087081104516983,-0.0198167879134417,-0.996004104614258,0.0501565374433994,-0.0956964045763016,-0.994146108627319,-0.0934494733810425,0.00386976217851043,0.995616614818573,0.0899071618914604,-0.00537142856046557,0.995935678482056,0.0753270089626312,-0.147757157683373,0.986150920391083,0.0813318863511086,0.0128557262942195,0.996604263782501,-0.0811170488595963,0.030756089836359,0.996229946613312,-0.0650352761149406,-0.073053702712059,0.995205283164978,-0.999997437000275,5.10624537489637e-019,-0.00226312223821878,-0.999997437000275,5.10624537489637e-019,-0.00226312223821878,-0.999997437000275,5.10624537489637e-019,-0.00226312223821878,-0.999996602535248,5.90641026864341e-019,-0.00264301057904959,-0.999996602535248,5.90641026864341e-019,-0.00264301057904959,-0.999996602535248,5.90641026864341e-019,-0.00264301057904959,-0.999966204166412,-0.00237417756579816,0.00787374936044216,-0.999997198581696,-0.00237412168644369,-5.17267211398744e-019,
  1396. -0.999966204166412,-0.00237417756579816,0.00787374936044216,-0.999996900558472,-0.00248952931724489,-5.16535415050576e-019,-0.999965906143188,-0.00248959031887352,0.00787374749779701,-0.999996900558472,-0.00248952931724489,-5.16535415050576e-019,-0.999998927116394,3.22564508237823e-019,-0.00148038822226226,-0.999998927116394,3.22564508237823e-019,-0.00148038822226226,-0.999998927116394,3.22564508237823e-019,-0.00148038822226226,-0.999999105930328,2.99606291282173e-019,-0.00134956592228264,-0.999999105930328,2.99606291282173e-019,-0.00134956592228264,-0.999999105930328,2.99606291282173e-019,-0.00134956592228264,-0.999997317790985,-0.0023584789596498,-5.17090039651293e-019,-0.999966323375702,-0.0023585322778672,0.00787375122308731,-0.999997317790985,-0.0023584789596498,-5.17090039651293e-019,-0.999966502189636,-0.00224354141391814,0.00787375215440989,-0.999997496604919,-0.00224349088966846,-5.17412640090188e-019,-0.999966502189636,-0.00224354141391814,0.00787375215440989,-0.0854850634932518,-0.213439702987671,-0.973209023475647,0.0765022709965706,-0.0123394886031747,-0.996993064880371,-0.141144081950188,0.0192019771784544,-0.989802837371826,-0.133678317070007,0.0295222867280245,-0.990584969520569,0.0724318698048592,-0.00656191632151604,-0.997351765632629,0.0416647158563137,-0.0945602506399155,-0.994646906852722,-0.999999821186066,-2.5577512799633e-019,0.00074639031663537,-0.999999821186066,-2.5577512799633e-019,0.00074639031663537,-0.999999821186066,-2.5577512799633e-019,0.00074639031663537,-0.999999284744263,2.56281957067278e-019,-0.00118496315553784,-0.999999284744263,2.56281957067278e-019,-0.00118496315553784,-0.999999284744263,2.56281957067278e-019,-0.00118496315553784,-0.999997913837433,4.50367066503351e-019,-0.00204833783209324,-0.999997913837433,4.50367066503351e-019,-0.00204833783209324,-0.999997913837433,4.50367066503351e-019,-0.00204833783209324,-0.99999874830246,-3.84982730080462e-019,0.00158979056868702,-0.99999874830246,-3.84982730080462e-019,0.00158979056868702,-0.99999874830246,-3.84982730080462e-019,0.00158979056868702,
  1397. -0.999994695186615,-0.00326217990368605,-5.11827930184537e-019,-0.999994695186615,-0.00326217990368605,-5.11827930184537e-019,-0.999994695186615,-0.00326217990368605,-5.11827930184537e-019,-0.999996304512024,-0.00272950646467507,-5.11737870895345e-019,-0.999996304512024,-0.00272950646467507,-5.11737870895345e-019,-0.999996304512024,-0.00272950646467507,-5.11737870895345e-019,-0.999872505664825,-0.00269039091654122,-0.0157460235059261,-0.999872505664825,-0.00268983724527061,0.0157460235059261,-0.999965488910675,-0.00269000232219696,-0.00787374470382929,-0.999871492385864,-0.00301524368114769,0.0157460086047649,-0.999964475631714,-0.00301543832756579,-0.00787373632192612,-0.999871492385864,-0.00301524368114769,0.0157460086047649,-0.0645855292677879,0.00962757598608732,0.997865736484528,0.0352202840149403,0.0182103216648102,0.999213755130768,0.0429520532488823,-0.112520009279251,0.992720782756805,0.0374507680535316,0.0130355665460229,0.999213457107544,-0.0678010359406471,0.00228730798698962,0.997696340084076,-0.0621990449726582,-0.0344407856464386,0.997469365596771,-0.116532742977142,-0.251305490732193,-0.960867166519165,0.0940407887101173,0.00369059294462204,-0.995561480522156,-0.169384807348251,0.0331859327852726,-0.984991133213043,-0.159897953271866,0.0467253476381302,-0.98602706193924,0.0884146615862846,0.0116909900680184,-0.996015250682831,0.0628532394766808,-0.106328718364239,-0.992342531681061,-0.999992609024048,8.52127707743379e-019,-0.0038696089759469,-0.999992609024048,8.52127707743379e-019,-0.0038696089759469,-0.999992609024048,8.52127707743379e-019,-0.0038696089759469,-0.999993503093719,7.71721874794104e-019,-0.00361212179996073,-0.999993503093719,7.71721874794104e-019,-0.00361212179996073,-0.999993503093719,7.71721874794104e-019,-0.00361212179996073,-1,-1.28583856203479e-019,0.000443449069280177,-1,-1.28583856203479e-019,0.000443449069280177,-1,-1.28583856203479e-019,0.000443449069280177,-0.99999988079071,-9.63730166356604e-020,0.000505155825521797,-0.99999988079071,-9.63730166356604e-020,0.000505155825521797,
  1398. -0.99999988079071,-9.63730166356604e-020,0.000505155825521797,-0.999966740608215,-0.00213410193100572,0.00787375401705503,-0.999966740608215,-0.0021340677049011,-0.00787375401705503,-0.999966740608215,-0.0021340677049011,-0.00787375401705503,-0.999966323375702,-0.00232291105203331,-0.00787375029176474,-0.999966323375702,-0.00232294504530728,0.00787375029176474,-0.999966323375702,-0.00232294504530728,0.00787375029176474,-0.999967336654663,-0.00182781997136772,0.00787375867366791,-0.999967336654663,-0.00182780076283962,-0.00787375867366791,-0.999967336654663,-0.00182781997136772,0.00787375867366791,-0.999967098236084,-0.00195522652938962,-0.00787375681102276,-0.999967098236084,-0.00195525656454265,0.00787375681102276,-0.999967098236084,-0.00195522652938962,-0.00787375681102276,0.0357046462595463,0.0167523622512817,0.999221980571747,-0.12028145045042,0.0199195817112923,0.992540061473846,-0.11010317504406,-0.0624702461063862,0.991955041885376,-0.112003646790981,0.0380055978894234,0.99298083782196,0.0265010967850685,0.0376582071185112,0.998939216136932,0.0500806197524071,-0.0531958937644959,0.997327506542206,0.0365424156188965,-0.0512777604162693,-0.998015642166138,-0.232108250260353,0.179773718118668,-0.95593273639679,-0.122245669364929,-0.0541711896657944,-0.991020441055298,0.0275538451969624,-0.0698022991418839,-0.997180342674255,-0.111639387905598,-0.0755288228392601,-0.990874409675598,0.0725768804550171,0.0118733663111925,-0.997292160987854,-0.103178359568119,-0.275525540113449,-0.955740511417389,0.108179740607738,0.0152373444288969,-0.9940145611763,-0.0620555840432644,0.0349381566047668,-0.997461020946503,-0.0460639595985413,0.0571772828698158,-0.997300803661346,0.0956581830978394,0.0385437607765198,-0.994667828083038,0.104864574968815,-0.0378789976239204,-0.993764877319336,0.0726913064718246,-0.0607173144817352,-0.995504677295685,-0.0968921408057213,-0.0710083916783333,-0.992758631706238,0.0492561087012291,0.100179277360439,-0.993749558925629,-0.0883948430418968,-0.0791612640023232,-0.992935061454773,0.0627690926194191,-0.0707526728510857,-0.995517015457153,
  1399. -0.0956314951181412,0.104818224906921,-0.989882707595825,-0.999969005584717,0.000111770445073489,0.00787377171218395,-0.999969005584717,0.000111766014015302,-0.00787377171218395,-0.999969005584717,0.000111766014015302,-0.00787377171218395,-0.999963939189911,0.00318958144634962,-0.00787373166531324,-0.999963939189911,0.00318970438092947,0.00787373166531324,-0.999963939189911,0.00318970438092947,0.00787373166531324,-0.99998140335083,1.30293343846533e-018,-0.00611331779509783,-0.999981284141541,4.81748502352275e-005,-0.00611820677295327,-0.999981284141541,4.81748502352275e-005,-0.00611820677295327,-0.999991238117218,3.29533504555002e-005,-0.00418507540598512,-0.999991238117218,9.25910925913402e-019,-0.00418576691299677,-0.999991238117218,9.25910925913402e-019,-0.00418576691299677,0.140686377882957,-0.00802433118224144,0.990021705627441,-0.0598227307200432,0.210169494152069,0.975832998752594,-0.074594259262085,-0.0194076970219612,0.997025191783905,-0.0619688853621483,-0.0356421060860157,0.997441470623016,0.105905942618847,0.0838530287146568,0.990834295749664,0.131494551897049,-0.0241816621273756,0.991021931171417,-0.999987959861755,1.08906444352367e-018,-0.00490428833290935,-0.999988079071045,-3.8614325603703e-005,-0.00490401918068528,-0.999987959861755,1.08906444352367e-018,-0.00490428833290935,-0.999980449676514,-4.93564912176225e-005,-0.00626827543601394,-0.999980390071869,1.43662836612559e-018,-0.00626094546169043,-0.999980449676514,-4.93564912176225e-005,-0.00626827543601394,-0.999966442584991,0.00226463563740253,0.00787375122308731,-0.999966442584991,0.00226454832591116,-0.00787375122308731,-0.999966442584991,0.00226463563740253,0.00787375122308731,-0.999968290328979,-0.00121302925981581,-0.0078737661242485,-0.999968290328979,-0.00121307780500501,0.0078737661242485,-0.999968290328979,-0.00121302925981581,-0.0078737661242485,0.0861706584692001,0.020985184237361,0.996059358119965,-0.0346873365342617,0.0190657060593367,0.999216437339783,-0.0482883751392365,-0.0558963418006897,0.997268199920654,-0.0295977480709553,0.0306298844516277,0.999092578887939,
  1400. 0.0801630914211273,0.0336989164352417,0.99621194601059,0.083561860024929,-0.0284433923661709,0.996096551418304,0.0589954257011414,-0.0410243235528469,0.997414946556091,-0.112180449068546,-0.038392998278141,0.992945909500122,0.0842073932290077,0.0587584376335144,0.994714319705963,-0.111111752688885,-0.040928777307272,0.992964863777161,0.060160506516695,-0.0384311228990555,0.997448623180389,-0.114320017397404,0.0542283691465855,0.991962790489197,-0.999997138977051,-0.00243047322146595,-5.05157287230967e-019,-0.999966144561768,-0.00243047275580466,0.00787374936044216,-0.999997138977051,-0.00243047322146595,-5.05157287230967e-019,-0.999966561794281,-0.00222147721797228,0.00787375215440989,-0.999997556209564,-0.00222148280590773,-5.06621810505493e-019,-0.999873578548431,-0.00222160946577787,0.0157460402697325,-0.999997556209564,-4.92804688950983e-019,0.00221828976646066,-0.999997556209564,-4.92804688950983e-019,0.00221828976646066,-0.999997556209564,-4.92804688950983e-019,0.00221828976646066,-0.99999725818634,-5.39523126164942e-019,0.00238282489590347,-0.99999725818634,-5.39523126164942e-019,0.00238282489590347,-0.99999725818634,-5.39523126164942e-019,0.00238282489590347,-0.999999821186066,-0.000585370289627463,0,-0.999968826770782,-0.000585366389714181,0.00787377078086138,-0.999968826770782,-0.000585366389714181,0.00787377078086138,-0.999968647956848,-0.000836142164189368,0.00787376891821623,-0.999999642372131,-0.000836149323731661,0,-0.999999642372131,-0.000836149323731661,0,-0.99999988079071,-1.19900747443053e-019,0.000495329091791064,-0.99999988079071,-1.19900747443053e-019,0.000495329091791064,-0.99999988079071,-1.19900747443053e-019,0.000495329091791064,-0.999999582767487,-2.09560715194054e-019,0.00092551251873374,-0.999999582767487,-2.09560715194054e-019,0.00092551251873374,-0.999999582767487,-2.09560715194054e-019,0.00092551251873374,-0.999993145465851,8.31483244208011e-019,-0.00372824957594275,-0.999993145465851,8.31483244208011e-019,-0.00372824957594275,-0.999993145465851,8.31483244208011e-019,-0.00372824957594275,
  1401. -0.999986588954926,1.150798276807e-018,-0.00517697166651487,-0.999986588954926,1.150798276807e-018,-0.00517697166651487,-0.999986588954926,1.150798276807e-018,-0.00517697166651487,-0.999997019767761,-0.0024359617382288,-5.14123252986795e-019,-0.999997019767761,-0.0024359617382288,-5.14123252986795e-019,-0.999997019767761,-0.0024359617382288,-5.14123252986795e-019,-0.999996542930603,-0.00263463100418448,-5.13965881875256e-019,-0.999996542930603,-0.00263463100418448,-5.13965881875256e-019,-0.999996542930603,-0.00263463100418448,-5.13965881875256e-019,-0.999999225139618,2.89195628737128e-019,-0.0012399812694639,-0.999999225139618,2.89195628737128e-019,-0.0012399812694639,-0.999999225139618,2.89195628737128e-019,-0.0012399812694639,-0.999999165534973,3.03322348485279e-019,-0.00136648037005216,-0.999999165534973,3.03322348485279e-019,-0.00136648037005216,-0.999999165534973,3.03322348485279e-019,-0.00136648037005216,-0.999997615814209,-0.00219344347715378,-4.8271267188753e-019,-0.999997615814209,-0.00219344347715378,-4.8271267188753e-019,-0.999997615814209,-0.00219344347715378,-4.8271267188753e-019,-0.999995708465576,-0.00292493216693401,-6.43717587856689e-019,-0.999995708465576,-0.00292493216693401,-6.43717587856689e-019,-0.999995708465576,-0.00292493216693401,-6.43717587856689e-019,0.1241834461689,-0.215087115764618,0.968667149543762,-0.0934244319796562,-0.0337418727576733,0.995054543018341,0.127201095223427,-0.0260308999568224,0.991535305976868,0.120497331023216,-0.0124901533126831,0.992635071277618,-0.0871986895799637,-0.0200745519250631,0.995988667011261,-0.0500340051949024,-0.0959535613656044,0.994127511978149,-0.0753260254859924,-0.147757783532143,-0.986150920391083,0.0934497714042664,0.00386909139342606,-0.995616495609283,-0.0899070426821709,-0.00537117384374142,-0.995935678482056,-0.0813313126564026,0.0128569277003407,-0.996604204177856,0.0811171680688858,0.0307558327913284,-0.996229946613312,0.0650361329317093,-0.0730524212121964,-0.995205342769623,0.999997437000275,-5.10846532086531e-019,0.00226188381202519,0.999997437000275,-5.10846532086531e-019,0.00226188381202519,
  1402. 0.999997437000275,-5.10846532086531e-019,0.00226188381202519,0.999999165534973,-3.22049562457115e-019,0.00136167008895427,0.999999165534973,-3.22049562457115e-019,0.00136167008895427,0.999999165534973,-3.22049562457115e-019,0.00136167008895427,0.999966204166412,-0.00236327666789293,-0.00787374936044216,0.999997198581696,-0.00236322125419974,-5.17267263097532e-019,0.999966204166412,-0.00236327666789293,-0.00787374936044216,0.999997138977051,-0.00239713047631085,-5.16533088605103e-019,0.999966144561768,-0.00239718938246369,-0.00787374936044216,0.999997138977051,-0.00239713047631085,-5.16533088605103e-019,0.999998927116394,-3.22670930193507e-019,0.00147924246266484,0.999998927116394,-3.22670930193507e-019,0.00147924246266484,0.999998927116394,-3.22670930193507e-019,0.00147924246266484,0.999999105930328,-2.99431833721106e-019,0.00135007768403739,0.999999105930328,-2.99431833721106e-019,0.00135007768403739,0.999999105930328,-2.99431833721106e-019,0.00135007768403739,0.999966382980347,-0.00233343616127968,-0.00787375122308731,0.99999737739563,-0.00233338330872357,-5.17090143048869e-019,0.99999737739563,-0.00233338330872357,-5.17090143048869e-019,0.999997556209564,-0.00222146767191589,-5.17079234604541e-019,0.999966561794281,-0.00222151773050427,-0.00787375215440989,0.999966561794281,-0.00222151773050427,-0.00787375215440989,0.0792719349265099,-0.233443766832352,0.969133615493774,-0.105766981840134,-0.0130266156047583,0.994305610656738,0.152020812034607,0.0192682575434446,0.988189458847046,0.145059436559677,0.0288273077458143,0.989003002643585,-0.101670667529106,-0.00718022743239999,0.994792222976685,-0.0499369017779827,-0.110304944217205,0.992642521858215,0.999907493591309,-3.03459686316357e-018,0.0136016299948096,0.999907493591309,-3.03459686316357e-018,0.0136016299948096,0.999907493591309,-3.03459686316357e-018,0.0136016299948096,0.999922275543213,-2.80454532030823e-018,0.0124692767858505,0.999922275543213,-2.80454532030823e-018,0.0124692767858505,0.999922275543213,-2.80454532030823e-018,0.0124692767858505,0.999924302101135,-2.69793414705933e-018,0.0123058008030057,
  1403. 0.999924302101135,-2.69793414705933e-018,0.0123058008030057,0.999924302101135,-2.69793414705933e-018,0.0123058008030057,0.999882578849792,-3.40117911561415e-018,0.0153252510353923,0.999882578849792,-3.40117911561415e-018,0.0153252510353923,0.999882578849792,-3.40117911561415e-018,0.0153252510353923,0.99996417760849,-0.00311399064958096,0.00787373352795839,0.99987119436264,-0.00311402883380651,0.0157460030168295,0.99996417760849,-0.00311399064958096,0.00787373352795839,0.999871790409088,-0.00291887298226357,0.0157460123300552,0.999964833259583,-0.00291883968748152,0.00787373911589384,0.999871790409088,-0.00291887298226357,0.0157460123300552,0.999998331069946,-0.00188155192881823,0,0.999719440937042,-0.00188175635412335,0.02361542545259,0.999719440937042,-0.00188175635412335,0.02361542545259,0.999718964099884,-0.00213175639510155,0.0236154142767191,0.999997735023499,-0.00213152216747403,0,0.999997735023499,-0.00213152216747403,0,-0.030822366476059,-0.130457431077957,-0.9909747838974,0.0917655229568481,0.00605069287121296,-0.995762288570404,-0.0339552126824856,0.020466199144721,-0.999213874340057,-0.0365602783858776,0.0143717639148235,-0.999228119850159,0.0919305086135864,0.00567261967808008,-0.995749294757843,0.0836495161056519,-0.0441934391856194,-0.995514810085297,0.119871288537979,-0.267046838998795,0.956199169158936,-0.103440091013908,0.00250948872417212,0.994632542133331,0.185397669672966,0.036887776106596,0.981971085071564,0.175865858793259,0.0505510568618774,0.983115375041962,-0.0982877090573311,0.00992160104215145,0.995108604431152,-0.0660559386014938,-0.115653418004513,0.991090774536133,0.999963402748108,-0.00787372794002295,0.00337689439766109,0.999963402748108,0.00787372794002295,0.00337700708769262,0.999963402748108,-0.00787372794002295,0.00337689439766109,0.999963998794556,0.00787373259663582,0.00316906301304698,0.999963998794556,-0.00787373259663582,0.00316895847208798,0.999963998794556,0.00787373259663582,0.00316906301304698,0.999968945980072,0.00787377171218395,-0.000321067200275138,0.999968945980072,-0.00787377171218395,-0.000321054278174415,
  1404. 0.999968945980072,-0.00787377171218395,-0.000321054278174415,0.999968886375427,-0.00787377078086138,-0.000660697056446224,0.999968886375427,0.00787377078086138,-0.000660714693367481,0.999968886375427,0.00787377078086138,-0.000660714693367481,0.999987721443176,-0.00495581701397896,-1.15700471634056e-018,0.999987721443176,-0.00495581701397896,-1.15700471634056e-018,0.999987721443176,-0.00495581701397896,-1.15700471634056e-018,0.999992787837982,-0.0037979471962899,-9.00235549892486e-019,0.999992787837982,-0.0037979471962899,-9.00235549892486e-019,0.999992787837982,-0.0037979471962899,-9.00235549892486e-019,0.999993920326233,-0.0034866367932409,-7.73809988852917e-019,0.999993920326233,-0.0034866367932409,-7.73809988852917e-019,0.999993920326233,-0.0034866367932409,-7.73809988852917e-019,0.999984204769135,-0.00561898201704025,-1.29039007165657e-018,0.999984204769135,-0.00561898201704025,-1.29039007165657e-018,0.999984204769135,-0.00561898201704025,-1.29039007165657e-018,0.129727095365524,0.0336677618324757,-0.990978002548218,-0.0200947318226099,0.0453006811439991,-0.998771369457245,-0.0670885071158409,-0.0566242821514606,-0.996139049530029,-0.0327481403946877,0.0223119650036097,-0.999214649200439,0.137400329113007,0.00921048875898123,-0.990472793579102,0.105122424662113,-0.0696287602186203,-0.992018699645996,0.142210736870766,-0.0670809522271156,0.987560749053955,-0.0398826748132706,-0.0623893216252327,0.997254729270935,0.25227478146553,0.195681884884834,0.947663486003876,-0.0306923072785139,-0.0812876522541046,0.996218025684357,0.130876272916794,-0.0892852321267128,0.987370014190674,-0.0804496854543686,0.0132406419143081,0.996670722961426,0.0553718768060207,-0.0304949972778559,0.998000025749207,-0.110255755484104,0.203159809112549,0.972918272018433,-0.101912967860699,-0.0307731833308935,0.994317233562469,0.0573838502168655,-0.0261309184134007,0.998010158538818,-0.105056583881378,-0.025908337906003,0.994128704071045,0.0476893968880177,0.0617869570851326,0.99694949388504,-0.0490870103240013,-0.0737481042742729,0.996068120002747,
  1405. 0.121329702436924,0.114642433822155,0.985969662666321,0.10900703817606,-0.0811702013015747,0.99072140455246,0.118220932781696,-0.0724863931536675,0.990338087081909,-0.0304475873708725,0.104602977633476,0.994047880172729,-0.0599345080554485,-0.0625523701310158,0.996240556240082,0.999969005584717,6.1047961935401e-005,0.00787377171218395,0.999969005584717,6.10500137554482e-005,-0.00787377171218395,0.999969005584717,6.1047961935401e-005,0.00787377171218395,0.999963998794556,0.00316162896342576,-0.00787373259663582,0.999963998794556,0.00316152651794255,0.00787373259663582,0.999963998794556,0.00316162896342576,-0.00787373259663582,0.999984741210938,4.35386355093215e-005,0.00552940741181374,0.999984741210938,4.35386355093215e-005,0.00552940741181374,0.999984741210938,4.35386355093215e-005,0.00552940741181374,0.999994218349457,2.67562281806022e-005,0.00339804077520967,0.999994218349457,2.67562281806022e-005,0.00339804077520967,0.999994218349457,2.67562281806022e-005,0.00339804077520967,-0.115034446120262,-0.00594787672162056,-0.993343710899353,0.0641748830676079,0.189940363168716,-0.979696094989777,0.0692606121301651,-0.0135127622634172,-0.997507095336914,-0.106769576668739,-0.0203982163220644,-0.994074523448944,0.0579941608011723,-0.0279997140169144,-0.997924208641052,-0.0836768075823784,0.0729420259594917,-0.993819713592529,0.999991238117218,-3.2934589398792e-005,0.00418269308283925,0.999991238117218,-3.2934589398792e-005,0.00418269308283925,0.999991238117218,-3.2934589398792e-005,0.00418269308283925,0.999986290931702,-4.12277622672264e-005,0.00523592671379447,0.999986290931702,-4.12277622672264e-005,0.00523592671379447,0.999986290931702,-4.12277622672264e-005,0.00523592671379447,0.999965786933899,0.00257278955541551,-0.00787374656647444,0.999965786933899,0.0025727057363838,0.00787374656647444,0.999965786933899,0.00257278955541551,-0.00787374656647444,0.999968349933624,-0.0012304768897593,0.00787376705557108,0.999968349933624,-0.00123051845002919,-0.00787376705557108,0.999968349933624,-0.0012304768897593,0.00787376705557108,
  1406. 0.0115633048117161,0.0324877314269543,-0.999405264854431,-0.104614108800888,0.0368080288171768,-0.993831515312195,-0.103124104440212,-0.0275129340589046,-0.99428802728653,-0.11271720379591,0.0195983815938234,-0.993433833122253,0.0185750424861908,0.0165562517940998,-0.999690473079681,0.0270689334720373,-0.0596472844481468,-0.997852444648743,0.126484677195549,-0.0452845878899097,-0.990934371948242,-0.0668468624353409,-0.0438576936721802,-0.996798872947693,0.135945528745651,0.0651793628931046,-0.988569915294647,-0.0662182420492172,-0.045244075357914,-0.996778964996338,0.128197804093361,-0.0411306992173195,-0.990895330905914,-0.0965808182954788,0.0699842572212219,-0.992861688137054,0.999965846538544,-0.00254820194095373,0.00787374749779701,0.999965846538544,-0.00254838960245252,-0.00787374749779701,0.999965846538544,-0.00254820194095373,0.00787374749779701,0.999966621398926,-0.00218306295573711,-0.00787375308573246,0.999966621398926,-0.00218290789052844,0.00787375308573246,0.999966621398926,-0.00218306295573711,-0.00787375308573246,0.999979674816132,-1.41492273326189e-018,0.00637420453131199,0.999979674816132,-1.41492273326189e-018,0.00637420453131199,0.999979674816132,-1.41492273326189e-018,0.00637420453131199,0.999979615211487,-1.42625810618359e-018,0.00638662045821548,0.999979615211487,-1.42625810618359e-018,0.00638662045821548,0.999979615211487,-1.42625810618359e-018,0.00638662045821548,0.999999821186066,-0.000624250445980579,0,0.999968826770782,-0.000624251260887831,0.0078737698495388,0.999999821186066,-0.000624250445980579,0,0.999968647956848,-0.000854002719279379,0.00787376891821623,0.999999642372131,-0.000853999401442707,0,0.999968647956848,-0.000854002719279379,0.00787376891821623,0.999961256980896,-1.96617336765767e-018,0.00881353672593832,0.999961256980896,-1.96617336765767e-018,0.00881353672593832,0.999961256980896,-1.96617336765767e-018,0.00881353672593832,0.999958992004395,-2.01632036511308e-018,0.00905772112309933,0.999958992004395,-2.01632036511308e-018,0.00905772112309933,0.999958992004395,-2.01632036511308e-018,0.00905772112309933,
  1407. 0.999882221221924,3.40863821678785e-018,-0.0153484418988228,0.999882221221924,3.40863821678785e-018,-0.0153484418988228,0.999882221221924,3.40863821678785e-018,-0.0153484418988228,0.999902069568634,3.108087931481e-018,-0.0139948595315218,0.999902069568634,3.108087931481e-018,-0.0139948595315218,0.999902069568634,3.108087931481e-018,-0.0139948595315218,0.999873161315918,-0.00239716097712517,-0.015746034681797,0.999873161315918,-0.00239716097712517,-0.015746034681797,0.999873161315918,-0.00239716097712517,-0.015746034681797,0.999872863292694,-0.0025537651963532,-0.0157460290938616,0.999872863292694,-0.0025537651963532,-0.0157460290938616,0.999872863292694,-0.0025537651963532,-0.0157460290938616,0.99984610080719,3.88279985739433e-018,-0.0175445843487978,0.99984610080719,3.88279985739433e-018,-0.0175445843487978,0.99984610080719,3.88279985739433e-018,-0.0175445843487978,0.99984484910965,3.91199354275316e-018,-0.0176209453493357,0.99984484910965,3.91199354275316e-018,-0.0176209453493357,0.99984484910965,3.91199354275316e-018,-0.0176209453493357,0.999873459339142,-0.0022617953363806,-0.0157460384070873,0.99971866607666,-0.00226181466132402,-0.0236154049634933,0.999873459339142,-0.0022617953363806,-0.0157460384070873,0.999718844890594,-0.00218375981785357,-0.0236154086887836,0.999873638153076,-0.00218374095857143,-0.0157460421323776,0.999718844890594,-0.00218375981785357,-0.0236154086887836,-0.0179878603667021,-2.22318620083468e-016,0.99983823299408,-0.0184138659387827,0.016178272664547,0.999699532985687,-0.0179878603667021,-2.22318620083468e-016,0.99983823299408,-0.019865183159709,-2.22489535450356e-016,0.999802649021149,-0.0190088544040918,0.0161921493709087,0.99968820810318,-0.0190088544040918,0.0161921493709087,0.99968820810318,-0.0076944986358285,-2.23963663946154e-016,0.999970495700836,-0.00673530669882894,0.0159047860652208,0.999850928783417,-0.0076944986358285,-2.23963663946154e-016,0.999970495700836,-0.0030177803710103,0.0158172752708197,0.999870359897614,-0.00270902318879962,-2.20004327548222e-016,0.999996423721313,
  1408. -0.0030177803710103,0.0158172752708197,0.999870359897614,-0.0258272476494312,0.00142355030402541,0.999665498733521,-0.0244280975311995,0.0165105722844601,0.999565243721008,-0.0258272476494312,0.00142355030402541,0.999665498733521,-0.0120470942929387,0.0161242764443159,0.999797403812408,-0.0126713793724775,0.000698422663845122,0.999919474124908,-0.0121244806796312,0.0160312559455633,0.999797999858856,0.000350042915670201,0.00635077664628625,0.999979794025421,0.000197785295313224,0.00627968739718199,0.999980270862579,0.000350042915670201,0.00635077664628625,0.999979794025421,-0.000186027697054669,-0.00590643566101789,0.999982535839081,-0.000383994891308248,-0.00696673709899187,0.999975681304932,-0.00013110764848534,-0.00555065786466002,0.999984681606293,0,0.00618501007556915,0.999980866909027,0.000293692719424143,0.00745982164517045,0.999972224235535,0,0.00618501007556915,0.999980866909027,-0.000262851535808295,-0.00667646154761314,0.999977767467499,0,-0.00515126017853618,0.999986827373505,-0.000329684669850394,-0.00697833811864257,0.999975621700287,-0.00787188112735748,0.0219097193330526,0.999728977680206,-0.0070523414760828,0.0208222046494484,0.999758422374725,-0.00787188112735748,0.0219097193330526,0.999728977680206,-0.00787341594696045,0.00952249113470316,0.999923765659332,-0.00745089631527662,0.0107302134856582,0.999914765357971,-0.00735519360750914,0.0109672313556075,0.999912798404694,0.0193938259035349,0.0162011254578829,-0.999680638313293,0.0202517751604319,2.22489773678373e-016,-0.999794900417328,0.0193938259035349,0.0162011254578829,-0.999680638313293,0.0184138640761375,0.016178272664547,-0.999699532985687,0.0179878585040569,2.22318567143909e-016,-0.99983823299408,0.0179878585040569,2.22318567143909e-016,-0.99983823299408,0.00301779480651021,0.0158172752708197,-0.999870359897614,0.00270903925411403,2.23954293644175e-016,-0.999996423721313,0.00301779480651021,0.0158172752708197,-0.999870359897614,0.00769452191889286,2.2376326124479e-016,-0.999970495700836,0.00673532811924815,0.015904787927866,-0.999850928783417,
  1409. 0.00769452191889286,2.2376326124479e-016,-0.999970495700836,0.0128141706809402,0.0161482803523541,-0.999787509441376,0.0134373148903251,0.000740639574360102,-0.999909460544586,0.0128917349502444,0.0160492230206728,-0.999788105487823,0.0258272476494312,0.00142355030402541,-0.999665498733521,0.0244280975311995,0.0165105722844601,-0.999565243721008,0.0258272476494312,0.00142355030402541,-0.999665498733521,0.000174036656972021,-0.00552572030574083,-0.999984741210938,0.000362831284292042,-0.00658276909962296,-0.999978363513947,0.000122142300824635,-0.00517112389206886,-0.99998664855957,-0.00030486797913909,0.00553117459639907,-0.999984681606293,-0.000171918247360736,0.00545840850099921,-0.999985098838806,-0.00030486797913909,0.00553117459639907,-0.999984681606293,0.000260175147559494,-0.00660848058760166,-0.999978125095367,0,-0.00508418632671237,-0.999987065792084,0.000326465698890388,-0.0069102025590837,-0.999976098537445,0,0.00613707583397627,-0.999981164932251,-0.000291832402581349,0.00741257052868605,-0.999972581863403,0,0.00613707583397627,-0.999981164932251,0.00734445080161095,0.0111942337825894,-0.999910473823547,0.00787339732050896,0.00975308753550053,-0.999921441078186,0.00744191277772188,0.0109578827396035,-0.999912261962891,0.00704426830634475,0.0210263971239328,-0.999754130840302,0.0078718475997448,0.0221114344894886,-0.999724626541138,0.0078718475997448,0.0221114344894886,-0.999724626541138,-0.00024753887555562,0.0314374268054962,-0.999505698680878,-0.00024753887555562,0.0314374268054962,-0.999505698680878,-0.00024753887555562,0.0314374268054962,-0.999505698680878,-0.000254465732723475,0.0323171615600586,-0.999477624893188,-0.000254465732723475,0.0323171615600586,-0.999477624893188,-0.000254465732723475,0.0323171615600586,-0.999477624893188,0.000331775227095932,0.0421354360878468,-0.999111950397491,0.000331775227095932,0.0421354360878468,-0.999111950397491,0.000331775227095932,0.0421354360878468,-0.999111950397491,0.000339020189130679,0.0430555790662766,-0.999072730541229,0.000339020189130679,0.0430555790662766,-0.999072730541229,
  1410. 0.000339020189130679,0.0430555790662766,-0.999072730541229,-0.00780973909422755,0.00809982512146235,-0.999936699867249,-0.00787351001054049,0.00815451424568892,-0.999935746192932,-0.00780973909422755,0.00809982512146235,-0.999936699867249,-0.00787314679473639,-0.0125966593623161,-0.999889671802521,-0.00797151681035757,-0.012492380104959,-0.999890208244324,-0.00787314679473639,-0.0125966593623161,-0.999889671802521,-0.00787169765681028,-0.0229509491473436,-0.999705612659454,-0.00805175304412842,-0.0228664167225361,-0.999706208705902,-0.00787169765681028,-0.0229509491473436,-0.999705612659454,-0.00787373073399067,0.00322165968827903,-0.999963819980621,-0.00784885976463556,0.00315909250639379,-0.99996429681778,-0.00784885976463556,0.00315909250639379,-0.99996429681778,-0.0142859937623143,-0.0458430238068104,0.998846590518951,0.00893376395106316,-0.0452169738709927,0.998937249183655,0.00893376395106316,-0.0452169738709927,0.998937249183655,0.00894729234278202,-0.0457984730601311,0.99891072511673,-0.0142624378204346,-0.0465741194784641,0.998813033103943,-0.0142624378204346,-0.0465741194784641,0.998813033103943,0.00891811866313219,-0.0445444732904434,0.998967587947845,-0.0150233395397663,-0.0448966547846794,0.998878657817841,0.0167781449854374,-0.0443582385778427,0.99887478351593,-0.0149940485134721,-0.0466754660010338,0.998797595500946,0.00895651802420616,-0.0461951903998852,0.998892307281494,-0.0149940485134721,-0.0466754660010338,0.998797595500946,-0.000624380132649094,-0.69712507724762,-0.716949224472046,-0.000269317242782563,-0.698504209518433,-0.715605974197388,-0.000624380132649094,-0.69712507724762,-0.716949224472046,2.84142952295952e-005,-0.708008408546448,-0.706203997135162,0.000154462628415786,-0.709554672241211,-0.704650342464447,0.00557824317365885,-0.707543611526489,-0.706647753715515,0.0106419268995523,-0.699208319187164,-0.714838862419128,-0.000284271169221029,-0.698023617267609,-0.716074705123901,0.0106419268995523,-0.699208319187164,-0.714838862419128,-0.000581753440201283,-0.688394606113434,-0.725336134433746,
  1411. 0.00985811185091734,-0.686585366725922,-0.726982355117798,0.00513588590547442,-0.688660383224487,-0.725065886974335,-0.000323741202009842,-0.701948642730713,-0.712227523326874,-0.000117563868116122,-0.703364193439484,-0.710829675197601,-0.000323741202009842,-0.701948642730713,-0.712227523326874,0.000189281185157597,-0.713091015815735,-0.701071441173553,0.000478875794215128,-0.714668035507202,-0.699463605880737,0.00569838145747781,-0.712614774703979,-0.701532423496246,0.0106419874355197,-0.699209272861481,-0.714837908744812,-0.000284243025816977,-0.69802451133728,-0.71607381105423,0.0106419874355197,-0.699209272861481,-0.714837908744812,-0.000581754255108535,-0.688394606113434,-0.725336134433746,0.00985811837017536,-0.686585426330566,-0.726982295513153,0.00513588450849056,-0.688660323619843,-0.725065946578979,-9.43389095482416e-005,0.00399349397048354,-0.9999920129776,-0.000185956494533457,0.0033737940248102,-0.999994277954102,-9.43389095482416e-005,0.00399349397048354,-0.9999920129776,-0.000111558605567552,0.00472282059490681,-0.999988853931427,-0.000291100208414719,0.00528137851506472,-0.999986112117767,-0.000291100208414719,0.00528137851506472,-0.999986112117767,-0.000560303218662739,0.0237196814268827,-0.999718487262726,0.00651013990864158,0.0246980227530003,-0.999673783779144,-0.000560303218662739,0.0237196814268827,-0.999718487262726,0.00655713817104697,0.02384820766747,-0.999694108963013,-0.000570655101910234,0.0241575203835964,-0.999708116054535,0.00655713817104697,0.02384820766747,-0.999694108963013,4.44912693637889e-005,-0.00188359653111547,-0.999998211860657,0.000104353101050947,-0.0022088116966188,-0.999997556209564,4.44912693637889e-005,-0.00188359653111547,-0.999998211860657,-0.000108933083538432,0.00461162347346544,-0.999989449977875,-0.000231973346672021,0.00491010630503297,-0.9999880194664,-0.000231973346672021,0.00491010630503297,-0.9999880194664,-0.000309334602206945,0.0130952931940556,-0.999914228916168,0.00722253648564219,0.0137695148587227,-0.999879121780396,-0.000309334602206945,0.0130952931940556,-0.999914228916168,
  1412. 0.00698016444221139,0.0188860353082418,-0.999797284603119,-0.000451828353106976,0.0191271603107452,-0.999816954135895,0.00698016444221139,0.0188860353082418,-0.999797284603119,-5.35178805876058e-005,0.00339838652871549,-0.999994218349457,-0.000131335167679936,0.00277992128394544,-0.99999612569809,-5.35178805876058e-005,0.00339838652871549,-0.999994218349457,-7.03565965523012e-005,0.00446764286607504,-0.999990046024323,-0.000238155960687436,0.0050409734249115,-0.999987363815308,-0.000238155960687436,0.0050409734249115,-0.999987363815308,-0.000431179185397923,0.0273798778653145,-0.999625027179718,0.0065333154052496,0.0283078532665968,-0.99957799911499,-0.000431179185397923,0.0273798778653145,-0.999625027179718,0.00659400317817926,0.0270290579646826,-0.999612927436829,-0.000431262305937707,0.0273851584643126,-0.999624967575073,0.00659400317817926,0.0270290579646826,-0.999612927436829,-0.999706923961639,-0.00551962573081255,-0.0235716551542282,-0.999490201473236,-0.00558009464293718,-0.0314360707998276,-0.999952077865601,-0.00583358062431216,0.00787363946437836,-0.999969005584717,6.79839149597683e-006,0.00787377171218395,-0.999876022338867,6.79875074638403e-006,0.0157460793852806,-0.999721229076386,-0.000219282315811142,-0.0236137434840202,-0.999969065189362,0.000287036033114418,0.00787377264350653,-0.999876081943512,0.000287018512608483,0.0157460812479258,-0.999876081943512,0.000287018512608483,0.0157460812479258,-0.999455809593201,0.00961464736610651,-0.0315546281635761,-0.999827563762665,0.00973217468708754,-0.0158219560980797,-0.99991911649704,0.00998743809759617,0.00787337869405746,-0.999875843524933,0.000531181285623461,-0.0157502628862858,-0.999875783920288,0.000699868774972856,0.0157460756599903,-0.999968767166138,0.000699835014529526,0.0078737698495388,-0.999874830245972,-0.00155922584235668,0.0157460607588291,-0.999967813491821,-0.00155932980123907,0.00787376239895821,-0.999874830245972,-0.00155922584235668,0.0157460607588291,0.999876081943512,0.000169705817825161,0.0157474186271429,0.999876022338867,0.000243509828578681,-0.0157460793852806,
  1413. 0.999969065189362,0.000243450529524125,0.00787377264350653,0.999875843524933,0.000613081210758537,-0.0157460756599903,0.999875783920288,0.000606584595516324,0.0157508514821529,0.999968826770782,0.000612951989751309,-0.00787377078086138,0.999876022338867,3.47841796610737e-006,-0.0157460793852806,0.999969005584717,3.47853233506612e-006,-0.00787377171218395,0.999876022338867,3.47841796610737e-006,-0.0157460793852806,0.999875962734222,0.000408825551858172,-0.0157460775226355,0.999875962734222,0.000408731895731762,0.0157460775226355,0.999875962734222,0.000408731895731762,0.0157460775226355,0.999876022338867,8.63938475959003e-005,0.0157460793852806,0.999876022338867,8.64358589751646e-005,-0.0157460793852806,1,8.64041357999668e-005,0,0.999998986721039,0.00141971942503005,0,0.999875009059906,0.00141951139084995,-0.0157460626214743,0.999875009059906,0.00141951139084995,-0.0157460626214743
  1414. }
  1415. TangentsW: *1086 {
  1416. 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,
  1417. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1418. }
  1419. }
  1420. LayerElementTangent: 1 {
  1421. Version: 102
  1422. Name: "LightMapUV"
  1423. MappingInformationType: "ByPolygonVertex"
  1424. ReferenceInformationType: "Direct"
  1425. Tangents: *3258 {
  1426. a: -0.998604238033295,-0.0157260503619909,-0.0504210442304611,-0.998729348182678,1.23589634347977e-017,-0.0503950901329517,-0.998729348182678,1.23589634347977e-017,-0.0503950901329517,-0.60243821144104,-0.767457008361816,0.219266816973686,0.164591327309608,-0.985574185848236,0.0394111797213554,0.483013898134232,-0.822865724563599,0.299315243959427,-0.0785033628344536,-0.996913552284241,0.000791569007560611,0,-0.999999821186066,0.00063399423379451,-0.0785033628344536,-0.996913552284241,0.000791569007560611,-3.15262660421922e-008,1,4.0038357838057e-006,0.0784923136234283,0.996914625167847,0.000622066203504801,-3.15262660421922e-008,1,4.0038357838057e-006,0.999773621559143,0.0212781429290771,0,0.999773621559143,0.0212781429290771,0,0.999773621559143,0.0212781429290771,0,-0.999983251094818,-0.00580421229824424,0,-0.999983251094818,-0.00580421229824424,0,-0.999983251094818,-0.00580421229824424,0,-0.998482167720795,0.0550137422978878,0.00262788380496204,-0.999681830406189,0.0237483568489552,0.008498165756464,-0.998482167720795,0.0550137422978878,0.00262788380496204,-0.00713890232145786,0.0232657678425312,0.999703943729401,-0.00652214745059609,0.0244809463620186,0.999679028987885,0.000535248836968094,0.0226592998951674,0.999743103981018,0.998125970363617,-9.83179266018893e-018,0.0611927174031734,0.997431814670563,-0.0383160337805748,0.0605113543570042,0.997431814670563,-0.0383160337805748,0.0605113543570042,-1,0,-0,-0.999226093292236,0.03932985663414,-0.000619367754552513,-1,0,-0,-0.00154331908561289,-0.999998807907104,-2.11615141185048e-016,-0.00154331908561289,-0.999998807907104,-2.11615141185048e-016,-0.00154331908561289,-0.999998807907104,-2.11615141185048e-016,-0.00911115109920502,0.999958515167236,2.12137575225047e-016,-0.00911115109920502,0.999958515167236,2.12137575225047e-016,-0.00911115109920502,0.999958515167236,2.12137575225047e-016,-0.00716418446972966,-0.999974429607391,-2.27225984872725e-016,-0.00716418446972966,-0.999974429607391,-2.27225984872725e-016,-0.00716418446972966,-0.999974429607391,-2.27225984872725e-016,
  1427. 0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0,1,2.22044604925031e-016,0.0785033106803894,-0.996913552284241,-0.000784987350925803,0,-0.999999821186066,-0.000627379689831287,0.0785033106803894,-0.996913552284241,-0.000784987350925803,-0.0784923136234283,0.996914625167847,-0.000622066203504801,3.15262660421922e-008,1,-4.0038357838057e-006,3.15262660421922e-008,1,-4.0038357838057e-006,-0.999773621559143,0.021278141066432,0,-0.999773621559143,0.021278141066432,0,-0.999773621559143,0.021278141066432,0,0.999983251094818,-0.00580447912216187,0,0.999983251094818,-0.00580447912216187,0,0.999983251094818,-0.00580447912216187,0,0.998482167720795,0.0550137422978878,-0.00262793153524399,0.999681830406189,0.0237483568489552,-0.00849821325391531,0.998482167720795,0.0550137422978878,-0.00262793153524399,0.00713890418410301,0.0232657194137573,-0.999703943729401,0.00652215024456382,0.0244808997958899,-0.999679028987885,-0.000535247672814876,0.0226592496037483,-0.999743103981018,-0.997431516647339,-0.0383159406483173,-0.0605163984000683,-0.998125672340393,9.83178935146648e-018,-0.0611977614462376,-0.997431516647339,-0.0383159406483173,-0.0605163984000683,1,0,0,0.999226093292236,0.03932985663414,0.000619367754552513,1,0,0,0.00154380290769041,-0.999998807907104,-2.11615207359497e-016,0.00154380290769041,-0.999998807907104,-2.11615207359497e-016,0.00154380290769041,-0.999998807907104,-2.11615207359497e-016,0.00911114178597927,0.999958515167236,2.1213735023192e-016,0.00911114178597927,0.999958515167236,2.1213735023192e-016,0.00911114178597927,0.999958515167236,2.1213735023192e-016,0.00716365966945887,-0.999974370002747,-2.15958342326764e-016,0.00716365966945887,-0.999974370002747,-2.15958342326764e-016,0.00716365966945887,-0.999974370002747,-2.15958342326764e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,-0,1,2.22044604925031e-016,0.0202202536165714,0.974960505962372,0.221456900238991,-0.0804253220558167,0.943137109279633,-0.322527855634689,0.0142512554302812,0.990855753421783,-0.134170711040497,-0.928617596626282,-0.0116804530844092,0.370854377746582,
  1428. -0.928617596626282,-0.0116804530844092,0.370854377746582,-0.928617596626282,-0.0116804530844092,0.370854377746582,0.992655575275421,0.00380835006944835,-0.120915107429028,0.992655575275421,0.00380835006944835,-0.120915107429028,0.992655575275421,0.00380835006944835,-0.120915107429028,-0.0154778324067593,-0.997688114643097,0.0661729127168655,-0.0211621019989252,-0.969906687736511,-0.242555484175682,0.0113518768921494,-0.990924417972565,0.133940026164055,-0.0327092409133911,0.971730530261993,0.23381632566452,-0.121503405272961,0.91183340549469,-0.392169296741486,0.0112584540620446,0.967912971973419,-0.251033365726471,0.145796060562134,-0.932997703552246,0.329027056694031,0.0746871456503868,-0.97361421585083,-0.215632170438766,0.0394518673419952,-0.966092526912689,0.255164265632629,-0.99991500377655,0.000205278556677513,0.0130351865664124,-0.99991500377655,0.000205278556677513,0.0130351865664124,-0.99991500377655,0.000205278556677513,0.0130351865664124,0.932347655296326,-0.00569320004433393,-0.361518174409866,0.932341277599335,-0.00853887293487787,-0.361478954553604,0.932347655296326,-0.00569320004433393,-0.361518174409866,0.0051083848811686,0.999449551105499,-0.0327802784740925,0.147036015987396,0.922822177410126,0.356061339378357,-0.0698848441243172,0.996625483036041,-0.0430575273931026,0.0530667081475258,-0.995237588882446,0.0817686542868614,0.0398484133183956,-0.975078880786896,-0.218250960111618,-0.00844522751867771,-0.993407547473907,0.114324636757374,0.956787884235382,0.0111614102497697,0.290572851896286,0.957259893417358,0.00439537409693003,0.289195746183395,0.957259893417358,0.00439537409693003,0.289195746183395,-0.983612358570099,-0.0302327070385218,0.1777433604002,-0.983491659164429,-0.0344225913286209,0.177649229764938,-0.983612358570099,-0.0302327070385218,0.1777433604002,0.0345708653330803,0.69552755355835,-0.717667281627655,0.030304990708828,0.680378377437592,-0.732234239578247,0.0345708653330803,0.69552755355835,-0.717667281627655,0.00219817506149411,0.671347498893738,-0.741139471530914,0.00112733477726579,0.670406997203827,-0.741992712020874,
  1429. 0.00219817506149411,0.671347498893738,-0.741139471530914,0.999471545219421,0.0173523891717196,0.0274865739047527,0.996858954429626,0.0521593950688839,0.0595953725278378,0.999471545219421,0.0173523891717196,0.0274865739047527,0.00224223453551531,0.670612931251526,-0.74180406332016,0.00105886103119701,0.672687768936157,-0.739925682544708,0.00224223453551531,0.670612931251526,-0.74180406332016,0.0345754437148571,0.69552755355835,-0.717667043209076,0.0303095504641533,0.680378556251526,-0.732233881950378,0.0345754437148571,0.69552755355835,-0.717667043209076,0.0443413257598877,-0.763211071491241,-0.644626021385193,0.0221875291317701,-0.763601779937744,-0.645306169986725,0.0443413257598877,-0.763211071491241,-0.644626021385193,0.016142351552844,0.695434212684631,-0.718408405780792,0.0227668173611164,0.67186427116394,-0.740324378013611,0.016142351552844,0.695434212684631,-0.718408405780792,0.00224223244003952,0.670612990856171,-0.741804003715515,0.00105885765515268,0.672687947750092,-0.739925622940063,0.00224223244003952,0.670612990856171,-0.741804003715515,-0.999458432197571,-0.0234272684901953,-0.0231128130108118,-0.99820214509964,-0.0550190173089504,-0.0237819608300924,-0.99820214509964,-0.0550190173089504,-0.0237819608300924,0.998484432697296,0.0550345703959465,2.23378788177797e-006,0.999720990657806,0.0236096363514662,0.000738434784580022,0.999720990657806,0.0236096363514662,0.000738434784580022,0.029081366956234,-0.999577045440674,-2.13513778771209e-016,0.029081366956234,-0.999577045440674,-2.13513778771209e-016,0.029081366956234,-0.999577045440674,-2.13513778771209e-016,0.0207748655229807,0.999784171581268,2.31760787514087e-016,0.0207748655229807,0.999784171581268,2.31760787514087e-016,0.0207748655229807,0.999784171581268,2.31760787514087e-016,-0.993011295795441,-0.0513866096735001,-0.10624498128891,-0.994273781776428,-0.0259356368333101,-0.103667877614498,-0.993011295795441,-0.0513866096735001,-0.10624498128891,0.999503016471863,0.0314199514687061,-0.00255935289897025,0.998476266860962,0.0551039986312389,-0.00295806373469532,
  1430. 0.999719619750977,0.0235593393445015,-0.00237401574850082,-0.0111999334767461,-0.999937295913696,-2.32096397849657e-016,-0.0111999334767461,-0.999937295913696,-2.32096397849657e-016,-0.0111999334767461,-0.999937295913696,-2.32096397849657e-016,-0.00769419129937887,0.999970495700836,2.30314081709957e-016,-0.00769419129937887,0.999970495700836,2.30314081709957e-016,-0.00769419129937887,0.999970495700836,2.30314081709957e-016,-0.99941498041153,-0.023411912843585,-0.0249325856566429,-0.99815708398819,-0.0550165325403214,-0.0256052911281586,-0.99815708398819,-0.0550165325403214,-0.0256052911281586,0.998484432697296,0.0550345703959465,1.11681429189048e-005,0.999720990657806,0.0236095655709505,0.000747298705391586,0.999720990657806,0.0236095655709505,0.000747298705391586,0.024910481646657,-0.999689698219299,-2.11408213683012e-016,0.024910481646657,-0.999689698219299,-2.11408213683012e-016,0.024910481646657,-0.999689698219299,-2.11408213683012e-016,0.015692338347435,0.999876976013184,2.12909950158935e-016,0.015692338347435,0.999876976013184,2.12909950158935e-016,0.015692338347435,0.999876976013184,2.12909950158935e-016,0.035455297678709,-0.00232210056856275,-0.99936854839325,0.0385368801653385,0.0254175066947937,-0.998933851718903,0.035455297678709,-0.00232210056856275,-0.99936854839325,0.157805681228638,-0.986285507678986,0.0483554974198341,0.0627961382269859,-0.996888697147369,0.047640610486269,0.0627961382269859,-0.996888697147369,0.047640610486269,0.988760828971863,0.149001449346542,-0.0122720114886761,0.998766243457794,0.047418050467968,-0.0147478189319372,0.987380862236023,0.15788222849369,-0.0123383412137628,0.00605999166145921,0.0287436582148075,-0.999568462371826,-0.00372087676078081,0.0232554711401463,-0.99972265958786,0.00605999166145921,0.0287436582148075,-0.999568462371826,-0.371190100908279,0.150876268744469,-0.916217386722565,0.502843976020813,0.156471505761147,-0.850096821784973,0.367998212575912,-0.163321360945702,-0.915370643138886,-0.396939218044281,0.0849895998835564,-0.913901567459106,-0.331025928258896,-0.293833345174789,-0.89670717716217,
  1431. 0.522133588790894,0.0918179973959923,-0.847906827926636,0.29607492685318,-0.95122218132019,-0.086695171892643,-0.109957985579968,-0.992838740348816,0.046696025878191,0.2527836561203,-0.967471599578857,0.00995722785592079,-0.113069131970406,-0.992946684360504,0.0356716588139534,-0.189626678824425,-0.980318069458008,-0.0549398884177208,0.252475619316101,-0.967513203620911,0.0131999049335718,0.999322533607483,-0.0157373622059822,0.0332685858011246,0.999446511268616,-7.27311292168683e-018,0.0332675389945507,0.999446511268616,-7.27311292168683e-018,0.0332675389945507,0.999593198299408,-6.10526996797272e-018,0.0285207163542509,0.999469339847565,-0.0157396756112576,0.0285217184573412,0.999469339847565,-0.0157396756112576,0.0285217184573412,0.999932706356049,0.00787348579615355,-0.00851944368332624,0.999839842319489,-0.0157455094158649,-0.00851980876177549,0.999839842319489,-0.0157455094158649,-0.00851980876177549,0.999843835830688,-0.0157455727458,-0.00803992990404367,0.999936699867249,0.00787351746112108,-0.00803973525762558,0.999936699867249,0.00787351746112108,-0.00803973525762558,-0.428321152925491,-0.885664522647858,0.179274544119835,-0.326166063547134,-0.935060560703278,-0.13884325325489,0.34816986322403,-0.922609984874725,0.166037917137146,0.356306046247482,-0.922469019889832,0.148651048541069,0.385934978723526,-0.83991140127182,-0.381579607725143,-0.434045076370239,-0.885590791702271,0.165329545736313,-0.35674649477005,-0.913104355335236,-0.19741427898407,-0.33506453037262,-0.919481098651886,0.205636203289032,0.255634933710098,-0.951729476451874,0.169887512922287,-0.362260729074478,-0.918539106845856,0.158281683921814,0.337118923664093,-0.846226572990417,-0.412615299224854,0.28488153219223,-0.950597822666168,0.123313881456852,0.999996066093445,0.00280760577879846,6.26390221975235e-019,0.999996066093445,0.00280760577879846,6.26390221975235e-019,0.999996066093445,0.00280760577879846,6.26390221975235e-019,0.999989986419678,0.0044759907759726,9.70860437387417e-019,0.999989986419678,0.0044759907759726,9.70860437387417e-019,
  1432. 0.999989986419678,0.0044759907759726,9.70860437387417e-019,0.998800575733185,-1.09421271225862e-017,0.0489632301032543,0.998801231384277,-0.000385424355044961,0.0489488914608955,0.998800575733185,-1.09421271225862e-017,0.0489632301032543,0.998782813549042,-0.000388367101550102,0.0493226200342178,0.998782217502594,-1.09479529556404e-017,0.0493361502885818,0.998782813549042,-0.000388367101550102,0.0493226200342178,0.999970376491547,-0.00770047213882208,-1.65324535845972e-018,0.999970376491547,-0.00770047213882208,-1.65324535845972e-018,0.999970376491547,-0.00770047213882208,-1.65324535845972e-018,0.999989032745361,-0.00468109175562859,-1.04695226494829e-018,0.999989032745361,-0.00468109175562859,-1.04695226494829e-018,0.999989032745361,-0.00468109175562859,-1.04695226494829e-018,0.0262615140527487,-2.21768604533124e-016,0.99965512752533,0.0262582115828991,-0.00787105783820152,0.999624311923981,0.0262582115828991,-0.00787105783820152,0.999624311923981,0.188419252634048,-0.00773274200037122,0.982058227062225,0.188406214118004,-2.17805099144905e-016,0.982091188430786,0.188433289527893,0.00148372666444629,0.98208487033844,0.999944269657135,0.00787357706576586,-0.00704811699688435,0.999944269657135,0.00787357706576586,-0.00704811699688435,0.999944269657135,0.00787357706576586,-0.00704811699688435,0.999951481819153,0.00787363387644291,-0.00591830490157008,0.999951481819153,0.00787363387644291,-0.00591830490157008,0.999951481819153,0.00787363387644291,-0.00591830490157008,0.206636115908623,-0.977255165576935,-0.0476871952414513,-0.303509026765823,-0.945973217487335,0.114092625677586,-0.237532839179039,-0.969756662845612,-0.0561265535652637,0.206418186426163,-0.977256298065186,-0.0485974326729774,-0.23628506064415,-0.969780385494232,-0.0607897415757179,0.279499232769012,-0.956665873527527,0.0816735774278641,-0.318230450153351,-0.929609954357147,-0.185889527201653,0.464732497930527,-0.873164594173431,-0.146994188427925,0.319965124130249,-0.935268700122833,0.151310950517654,-0.345243990421295,-0.928636252880096,-0.135798826813698,
  1433. -0.38724759221077,-0.832620620727539,0.395957291126251,0.48601695895195,-0.871351718902588,-0.0673329830169678,0.377623826265335,-0.918112516403198,-0.120290823280811,-0.264525264501572,-0.957550168037415,-0.114561125636101,0.298511773347855,-0.917270123958588,0.263640433549881,0.366942793130875,-0.91920131444931,-0.142905235290527,-0.359836250543594,-0.844635009765625,0.396370530128479,-0.244818866252899,-0.958904385566711,-0.143409579992294,-0.999930560588837,-0.0087705459445715,-0.0078734690323472,-0.999930560588837,-0.00877137668430805,0.0078734690323472,-0.999930560588837,-0.0087705459445715,-0.0078734690323472,-0.999966084957123,-0.00241845496930182,0.00787374842911959,-0.999966084957123,-0.00241823773831129,-0.00787374842911959,-0.999966084957123,-0.00241845496930182,0.00787374842911959,-0.999102711677551,9.37578122337825e-018,-0.0423532724380493,-0.999072253704071,0.00753283593803644,-0.0424020849168301,-0.999102711677551,9.37578122337825e-018,-0.0423532724380493,-0.999087750911713,0.00753585388883948,-0.0420342981815338,-0.999118328094482,9.3792371839775e-018,-0.0419853888452053,-0.999087750911713,0.00753585388883948,-0.0420342981815338,-0.999969005584717,0.000137065551825799,-0.00787377171218395,-0.999969005584717,0.000137078153784387,0.00787377171218395,-0.999969005584717,0.000137065551825799,-0.00787377171218395,-0.999937772750854,0.00790521875023842,0.00787352584302425,-0.999937772750854,0.00790452305227518,-0.00787352584302425,-0.999937772750854,0.00790521875023842,0.00787352584302425,-0.999851226806641,-0.00799320638179779,-0.0152860451489687,-0.999882817268372,3.10795537578783e-018,-0.0153084984049201,-0.999851822853088,0.00787284877151251,-0.0153095945715904,-0.999853849411011,3.75252097886875e-018,-0.017096733674407,-0.99982225894928,-0.00800701417028904,-0.0170685760676861,-0.99982225894928,-0.00800701417028904,-0.0170685760676861,-0.99989515542984,0.00787318963557482,0.0121545093134046,-0.99989515542984,0.00787318963557482,0.0121545093134046,-0.99989515542984,0.00787318963557482,0.0121545093134046,
  1434. -0.999902307987213,0.00787324644625187,0.0115486346185207,-0.999902307987213,0.00787324644625187,0.0115486346185207,-0.999902307987213,0.00787324644625187,0.0115486346185207,-0.999945759773254,-0.00787358917295933,0.0068311020731926,-0.99994570016861,0.00787358824163675,0.00683102617040277,-0.99994570016861,0.00787358824163675,0.00683102617040277,-0.999951660633087,0.00787363573908806,0.00590611575171351,-0.999951660633087,-0.00787363573908806,0.00590626010671258,-0.999858677387238,-0.0157458074390888,0.00590688129886985,-0.980618834495544,-4.43117477771105e-017,0.195925801992416,-0.980618834495544,-4.43117477771105e-017,0.195925801992416,-0.980618834495544,-4.43117477771105e-017,0.195925801992416,-0.979290008544922,4.52183079499665e-017,-0.202462643384933,-0.979290008544922,4.52183079499665e-017,-0.202462643384933,-0.979290008544922,4.52183079499665e-017,-0.202462643384933,0.94814270734787,6.89525053129995e-017,-0.317844957113266,0.94814270734787,6.89525053129995e-017,-0.317844957113266,0.94814270734787,6.89525053129995e-017,-0.317844957113266,0.997969448566437,1.39957718873053e-017,-0.0636942982673645,0.997969448566437,1.39957718873053e-017,-0.0636942982673645,0.997969448566437,1.39957718873053e-017,-0.0636942982673645,-0.989782869815826,0.091621994972229,0.109248742461205,-0.992868781089783,0.0899992436170578,-0.0781786441802979,-0.976181745529175,0.0912956371903419,-0.196810841560364,-0.988747239112854,-0.050401046872139,0.140849590301514,-0.995746195316315,-0.0483950637280941,-0.0784052163362503,-0.992710769176483,-0.0477022379636765,0.110679820179939,-0.00785982422530651,-0.999969065189362,0.000354266492649913,-0.00788679532706738,-0.999968826770782,0.000330835289787501,0.00780811998993158,-0.999968826770782,0.00119110103696585,-0.00793612841516733,-0.999967277050018,-0.0015842099674046,0.00780752813443542,-0.999967336654663,-0.00210279133170843,-0.00780271319672465,-0.999967932701111,-0.00180467462632805,0.00781557057052851,-0.999968886375427,-0.00105593644548208,-0.0156498644500971,-0.999876379966736,-0.00152751221321523,
  1435. -0.0157497636973858,-0.999875843524933,-0.000467786914668977,0.00763586675748229,-0.99996155500412,-0.00431522075086832,0.0158650930970907,-0.999869585037231,-0.00302555458620191,-0.0154585875570774,-0.999870121479034,-0.00456245988607407,0.999459981918335,-0.00967244245111942,-0.0314028933644295,0.996227324008942,-0.00995599664747715,0.0862090289592743,0.996225774288177,-0.00876409839838743,0.0863562971353531,0.994285106658936,0.0624160803854465,0.0866106674075127,0.997512459754944,0.0628531649708748,-0.0319126211106777,0.99101847410202,0.0638989433646202,-0.117471285164356,0.225652381777763,2.16503805075016e-016,-0.974207878112793,0.225652381777763,2.16503805075016e-016,-0.974207878112793,0.225652381777763,2.16503805075016e-016,-0.974207878112793,-0.157340928912163,2.19209863583257e-016,-0.987544357776642,-0.157340928912163,2.19209863583257e-016,-0.987544357776642,-0.157340928912163,2.19209863583257e-016,-0.987544357776642,0.283356010913849,-2.13259020377432e-016,0.959014892578125,0.283356010913849,-2.13259020377432e-016,0.959014892578125,0.283356010913849,-2.13259020377432e-016,0.959014892578125,0.00577167607843876,-2.21686548216359e-016,0.999983370304108,0.00577167607843876,-2.21686548216359e-016,0.999983370304108,0.00577167607843876,-2.21686548216359e-016,0.999983370304108,-0.107794485986233,-0.158437833189964,0.981467187404633,0.0762652531266212,-0.158463209867477,0.984415054321289,-0.0478396080434322,-0.156883612275124,0.986457765102386,-0.109942547976971,0.187521263957024,0.976088345050812,0.14642009139061,0.189016208052635,0.97099643945694,0.0785752087831497,0.187080129981041,0.979197084903717,0.0070058242417872,0.999957978725433,-0.00591571070253849,0.000606534827966243,0.999988436698914,-0.00477646198123693,0.00740494811907411,0.999958038330078,-0.00541180651634932,0.000313045515213162,0.999996900558472,-0.00246523413807154,0.00812298990786076,0.999965608119965,-0.00168076867703348,0.00750931864604354,0.999963045120239,-0.00420727441087365,-0.983503103256226,0.176998317241669,-0.0373269058763981,-0.983579456806183,0.17657196521759,0.0373332686722279,
  1436. -0.983174860477448,0.175910964608192,0.0492194555699825,-0.960237622261047,-0.276154905557632,-0.041016660630703,-0.960795104503632,-0.274361133575439,0.0399869009852409,-0.960746705532074,-0.274530619382858,-0.0399863310158253,-0.000802030845079571,0.999999701976776,2.21992075647412e-016,-0.00128382083494216,0.999968707561493,0.00780300842598081,-0.00123408471699804,0.999968826770782,-0.00779603281989694,-0.00217699655331671,0.999967575073242,0.0077537689357996,-0.00147956958971918,0.999967634677887,0.00792036112397909,-0.00220875185914338,0.999967634677887,-0.00773462699726224,0.984231054782867,-3.92940073156373e-017,0.176887631416321,0.984231054782867,-3.92940073156373e-017,0.176887631416321,0.984231054782867,-3.92940073156373e-017,0.176887631416321,0.984605312347412,3.88586059109689e-017,-0.174792498350143,0.984605312347412,3.88586059109689e-017,-0.174792498350143,0.984605312347412,3.88586059109689e-017,-0.174792498350143,-0.955567061901093,-6.37514252318376e-017,0.2947738468647,-0.955567061901093,-6.37514252318376e-017,0.2947738468647,-0.955567061901093,-6.37514252318376e-017,0.2947738468647,-0.999883413314819,3.68983433691734e-018,-0.0152765465900302,-0.999883413314819,3.68983433691734e-018,-0.0152765465900302,-0.999883413314819,3.68983433691734e-018,-0.0152765465900302,0.00472606113180518,0.999963700771332,0.00709230778738856,0.0019560419023037,0.999964714050293,0.0081690913066268,0.00319962343201041,0.999994814395905,-0.000304725981550291,-0.000234558407100849,0.999968707561493,0.00790833774954081,0.00172339484561235,0.999969065189362,-0.00767638627439737,0.00164380844216794,0.99999874830246,-0.00015655295283068,-0.0156511161476374,0.999876022338867,-0.00172290485352278,0.0077810101211071,0.999968647956848,-0.00147254706826061,7.15735041012522e-006,0.999999582767487,-0.000908982357941568,-0.0154570499435067,0.999866902828217,-0.00524121895432472,-0.0237521324306726,0.999711930751801,-0.00347695196978748,0.00756547087803483,0.999959409236908,-0.00489307893440127,0.0396391414105892,0.344588696956635,-0.93791651725769,
  1437. -0.03963902592659,0.3446064889431,-0.937909960746765,-0.03963902592659,0.3446064889431,-0.937909960746765,0.0371432602405548,-0.189090460538864,-0.98125696182251,0.0415889210999012,-0.187378644943237,-0.981407046318054,-0.0371592827141285,-0.188051387667656,-0.981456100940704,-0.990878343582153,0.0180436950176954,0.133546724915504,-0.997377038002014,0.0167508143931627,-0.0704164654016495,-0.961087465286255,0.0130513096228242,-0.275935769081116,-0.99057936668396,0.118674226105213,-0.0683296471834183,-0.984215974807739,0.118039533495903,0.131854221224785,-0.990071952342987,0.116345688700676,0.0788745284080505,0.238925337791443,-2.15724865635787e-016,0.971038043498993,0.238925337791443,-2.15724865635787e-016,0.971038043498993,0.238925337791443,-2.15724865635787e-016,0.971038043498993,-0.191274583339691,-2.18011616365358e-016,0.981536686420441,-0.191274583339691,-2.18011616365358e-016,0.981536686420441,-0.191274583339691,-2.18011616365358e-016,0.981536686420441,-0.327226549386978,2.10790078154863e-016,-0.944945931434631,-0.327226549386978,2.10790078154863e-016,-0.944945931434631,-0.327226549386978,2.10790078154863e-016,-0.944945931434631,-0.052225437015295,2.22813366734003e-016,-0.998635411262512,-0.052225437015295,2.22813366734003e-016,-0.998635411262512,-0.052225437015295,2.22813366734003e-016,-0.998635411262512,-0.000965434708632529,-0.999968230724335,0.00791177526116371,-0.00165291829034686,-0.999968230724335,0.00779567519202828,-0.000910596689209342,-0.999968230724335,-0.00791678577661514,-0.0035251930821687,-0.999963879585266,-0.00773494457826018,-0.00358267244882882,-0.999963998794556,0.00770447216928005,-0.00290617905557156,-0.999963879585266,0.00798814836889505,-0.111513234674931,0.161714166402817,0.980516850948334,0.0948279723525047,0.162371650338173,0.982162475585938,-0.163410976529121,0.164870038628578,0.972684383392334,0.0944457501173019,-0.037652924656868,0.994817793369293,-0.109739802777767,-0.0388102494180202,0.993202388286591,0.12644325196743,-0.0351056382060051,0.991352438926697,0.00168439815752208,-0.999967694282532,0.00786049850285053,
  1438. 0.00187873328104615,-0.999967694282532,-0.00781458895653486,0.00120102043729275,-0.999967753887177,0.0079399598762393,8.83130633155815e-005,-0.999969124794006,-0.00787099171429873,3.15358083753381e-005,-0.999969005584717,0.0078735239803791,-0.000272706121904776,-0.999969065189362,-0.0078608887270093,0.0627012774348259,-0.0196490958333015,-0.997838914394379,-0.0390374176204205,-0.0187772363424301,-0.999061286449432,-0.165917187929153,-0.0168735608458519,-0.985995292663574,-0.03999063372612,0.0438066124916077,-0.99823933839798,0.0631571933627129,0.0450863316655159,-0.996984660625458,0.109592974185944,0.0460182577371597,-0.992910742759705,-0.132398471236229,-0.208312436938286,-0.969059646129608,0.0872084647417068,-0.0200959667563438,-0.995987474918365,-0.120677679777145,-0.0128537435084581,-0.992608547210693,-0.119823820888996,-0.0111326733604074,-0.992732763290405,0.0865607708692551,-0.0186763182282448,-0.996071517467499,0.0506877452135086,-0.0945814028382301,-0.994225978851318,-0.0900876075029373,0.0112171238288283,0.995870769023895,0.086340606212616,0.00221861689351499,0.996263206005096,0.0791185796260834,-0.145372033119202,0.986208617687225,0.0754956305027008,0.0252179969102144,0.996827185153961,-0.0753634199500084,0.0432379543781281,0.996218264102936,-0.072052389383316,-0.0625676736235619,0.995436549186707,0.0200638845562935,2.21936449405579e-016,-0.999798715114594,0.0200638845562935,2.21936449405579e-016,-0.999798715114594,0.0200638845562935,2.21936449405579e-016,-0.999798715114594,0.00538443308323622,2.22146566516057e-016,-0.99998551607132,0.00538443308323622,2.22146566516057e-016,-0.99998551607132,0.00538443308323622,2.22146566516057e-016,-0.99998551607132,-0.0024120295420289,0.999997079372406,1.89923393918434e-005,-0.00239390134811401,0.999997138977051,2.21979462797432e-016,-0.0024120295420289,0.999997079372406,1.89923393918434e-005,-0.0483264662325382,0.998831689357758,2.21873967490829e-016,-0.0482813827693462,0.99883371591568,0.000380168406991288,-0.0483264662325382,0.998831689357758,2.21873967490829e-016,
  1439. -0.999998331069946,4.1375814639268e-019,-0.00188308383803815,-0.999998331069946,4.1375814639268e-019,-0.00188308383803815,-0.999998331069946,4.1375814639268e-019,-0.00188308383803815,-0.999998569488525,3.89007041308715e-019,-0.0017513136845082,-0.999998569488525,3.89007041308715e-019,-0.0017513136845082,-0.999998569488525,3.89007041308715e-019,-0.0017513136845082,-0.999997675418854,-0.00214935489930213,-4.96270007030909e-019,-0.999966681003571,-0.00214940332807601,0.00787375308573246,-0.999997675418854,-0.00214935489930213,-4.96270007030909e-019,-0.999966323375702,-0.00236052926629782,0.00787375029176474,-0.999997317790985,-0.00236047618091106,-4.96259822369617e-019,-0.999966323375702,-0.00236052926629782,0.00787375029176474,-0.09043088555336,-0.210839822888374,-0.973328709602356,0.0710303112864494,-0.00457363342866302,-0.997463762760162,-0.135749354958534,0.0266628842800856,-0.9903843998909,-0.135098069906235,0.0275623761117458,-0.990448772907257,0.0737989842891693,-0.00850186962634325,-0.997236907482147,0.0403087735176086,-0.0966206341981888,-0.994504749774933,-1,0,0.000136003262014128,-1,0,0.000136003262014128,-1,0,0.000136003262014128,-0.999999284744263,2.47584850859925e-019,-0.00119767407886684,-0.999999284744263,2.47584850859925e-019,-0.00119767407886684,-0.999999284744263,2.47584850859925e-019,-0.00119767407886684,-0.999997913837433,4.1615844358455e-019,-0.00204996019601822,-0.999997913837433,4.1615844358455e-019,-0.00204996019601822,-0.999997913837433,4.1615844358455e-019,-0.00204996019601822,-0.999999463558197,-2.49064909620329e-019,0.0011282340856269,-0.999999463558197,-2.49064909620329e-019,0.0011282340856269,-0.999999463558197,-2.49064909620329e-019,0.0011282340856269,0.0154030518606305,0.999881386756897,2.21993994706433e-016,0.0154030518606305,0.999881386756897,2.21993994706433e-016,0.0154030518606305,0.999881386756897,2.21993994706433e-016,0.00365542457439005,0.999993324279785,2.21716763469774e-016,0.00365542457439005,0.999993324279785,2.21716763469774e-016,0.00365542457439005,0.999993324279785,2.21716763469774e-016,
  1440. -0.117990180850029,-0.993013024330139,-0.00185811310075223,-0.118057779967785,-0.993004977703094,0.00185917771887034,-0.118028879165649,-0.993009746074677,-0.000929361267480999,0.0195151921361685,-0.999809503555298,-0.000307325884932652,0.0193314626812935,-0.999813139438629,0.000152216322021559,0.0195151921361685,-0.999809503555298,-0.000307325884932652,-0.401175051927567,-0.915762007236481,-0.0209465268999338,0.395414918661118,-0.918439507484436,-0.0107685290277004,-0.811320185661316,-0.554378628730774,0.185536682605743,0.395238876342773,-0.91845566034317,-0.0150143634527922,-0.400759309530258,-0.915782451629639,-0.027105214074254,0.488109081983566,-0.871851325035095,0.0403091385960579,-0.113536201417446,-0.252975434064865,-0.960787653923035,0.0972770899534225,-0.00091739185154438,-0.995257019996643,-0.17259156703949,0.0285921730101109,-0.984578430652618,-0.161379024386406,0.0446165502071381,-0.985883474349976,0.0898458287119865,0.00965709704905748,-0.995908856391907,0.0614342428743839,-0.108510375022888,-0.992195308208466,-0.00552768493071198,-2.2202207914259e-016,0.999984741210938,-0.00552768493071198,-2.2202207914259e-016,0.999984741210938,-0.00552768493071198,-2.2202207914259e-016,0.999984741210938,-0.000822656787931919,-2.22290641526429e-016,0.999999761581421,-0.000822656787931919,-2.22290641526429e-016,0.999999761581421,-0.000822656787931919,-2.22290641526429e-016,0.999999761581421,-0.00190197350457311,2.22174465663757e-016,-0.999998211860657,-0.00190197350457311,2.22174465663757e-016,-0.999998211860657,-0.00190197350457311,2.22174465663757e-016,-0.999998211860657,-0.000914714473765343,2.22045187260183e-016,-0.999999582767487,-0.000914714473765343,2.22045187260183e-016,-0.999999582767487,-0.000914714473765343,2.22045187260183e-016,-0.999999582767487,-0.103547506034374,0.994624197483063,0.000815334729850292,-0.103557236492634,0.994623184204102,-0.000815411331132054,-0.103557236492634,0.994623184204102,-0.000815411331132054,-0.559586465358734,0.828760266304016,-0.00440619280561805,-0.559537172317505,0.828793525695801,0.00440580490976572,
  1441. -0.559537172317505,0.828793525695801,0.00440580490976572,0.103305920958519,-0.994649410247803,-0.000813432561699301,0.103412844240665,-0.994638204574585,0.000814274302683771,0.103305920958519,-0.994649410247803,-0.000813432561699301,0.00914209987968206,-0.999958217144012,7.19851086614653e-005,0.00926810037344694,-0.999957144260406,-7.29771054466255e-005,0.00914209987968206,-0.999958217144012,7.19851086614653e-005,0.0404037907719612,0.00605853600427508,0.999165058135986,-0.12515726685524,0.00921376515179873,0.992094159126282,-0.104272238910198,-0.0713506191968918,0.991986095905304,-0.104280434548855,0.0547797083854675,0.993038177490234,0.0190121531486511,0.0546317286789417,0.998325645923615,0.059331588447094,-0.0386606492102146,0.997489392757416,0.0363611951470375,-0.051651768386364,-0.998003005981445,-0.232347920536995,0.179533913731575,-0.955919444561005,-0.122062899172306,-0.0545406863093376,-0.991022706031799,0.0262913480401039,-0.0723998546600342,-0.99702912569046,-0.11034481972456,-0.0781240165233612,-0.990818202495575,0.0738101825118065,0.00918676517903805,-0.997229993343353,-0.100173883140087,-0.277081102132797,-0.955610513687134,0.11112967133522,0.00972445029765368,-0.993758320808411,-0.0654206350445747,0.0302468575537205,-0.997399270534515,-0.048772107809782,0.0534175224602222,-0.997380495071411,0.0980138778686523,0.0341706424951553,-0.994598209857941,0.102486237883568,-0.0422952584922314,-0.993834853172302,-0.695051252841949,-0.714106142520905,-0.0834039524197578,0.707591235637665,-0.696312248706818,-0.120265930891037,0.784734189510345,-0.598921835422516,0.159639835357666,0.707435309886932,-0.696313142776489,-0.121175304055214,-0.695198953151703,-0.714097917079926,-0.0822350010275841,-0.745277047157288,-0.645588994026184,0.166664496064186,-0.00604207161813974,0.999981760978699,4.75753622595221e-005,-0.00603690510615706,0.999981880187988,-4.75346896564588e-005,-0.00603690510615706,0.999981880187988,-4.75346896564588e-005,-0.115616247057915,0.993293523788452,-0.000910364091396332,-0.11555178463459,0.993301033973694,0.000909856637008488,
  1442. -0.11555178463459,0.993301033973694,0.000909856637008488,-0.999981105327606,1.39140588504943e-018,-0.00614691479131579,-0.999981105327606,4.84394113300368e-005,-0.00615180609747767,-0.999981105327606,4.84394113300368e-005,-0.00615180609747767,-0.999990344047546,3.45818843925372e-005,-0.00439189886674285,-0.999990344047546,9.77680955128223e-019,-0.0043925978243351,-0.999990344047546,9.77680955128223e-019,-0.0043925978243351,0.141843363642693,-0.0059842923656106,0.989871025085449,-0.0586600080132484,0.210809379816055,0.975765645503998,-0.0758849829435349,-0.0177452508360147,0.996958673000336,-0.0612840913236141,-0.0365212745964527,0.997452080249786,0.106543175876141,0.082848958671093,0.990850448608398,0.130890160799026,-0.0252409651875496,0.99107551574707,0.0913246497511864,2.20958324874847e-016,-0.995821177959442,0.0913292169570923,-0.00784086529165506,-0.995789885520935,0.0913246497511864,2.20958324874847e-016,-0.995821177959442,-0.00329118012450635,-0.00787372887134552,-0.999963581562042,-0.00329136871732771,2.21559109462467e-016,-0.999994575977325,-0.00329118012450635,-0.00787372887134552,-0.999963581562042,0.0210006050765514,-0.999779462814331,-0.000165359160746448,0.021112872287631,-0.99977707862854,0.000166243029525504,0.0210006050765514,-0.999779462814331,-0.000165359160746448,-0.00555604975670576,-0.999984562397003,-4.37484341091476e-005,-0.00557790044695139,-0.999984443187714,4.39204632129986e-005,-0.00555604975670576,-0.999984562397003,-4.37484341091476e-005,0.0925007909536362,0.00754511868581176,0.995684027671814,-0.0407393649220467,0.00529436860233545,0.999155879020691,-0.0407602563500404,-0.0674122422933578,0.996892273426056,-0.0325050503015518,0.0240260306745768,0.999182760715485,0.0832350179553032,0.0272028651088476,0.996158599853516,0.0801018849015236,-0.0342626087367535,0.996197640895844,0.0585255697369576,-0.0420697219669819,0.997399091720581,-0.111732229590416,-0.0394567921757698,0.992954730987549,0.084738589823246,0.0577942617237568,0.994725704193115,-0.111111752688885,-0.040928777307272,0.992964863777161,
  1443. 0.060160506516695,-0.0384311228990555,0.997448623180389,-0.114320017397404,0.0542283691465855,0.991962790489197,-0.00350462202914059,0.999993860721588,2.22091032918453e-016,-0.00348616321571171,0.999993920326233,2.7450123525341e-005,-0.00350462202914059,0.999993860721588,2.22091032918453e-016,0.124704375863075,0.992193579673767,-0.000981924356892705,0.124822027981281,0.992179155349731,2.19539756446433e-016,0.12457138299942,0.99220871925354,-0.00196175393648446,-0.011580073274672,-2.22161786639328e-016,0.999932944774628,-0.011580073274672,-2.22161786639328e-016,0.999932944774628,-0.011580073274672,-2.22161786639328e-016,0.999932944774628,-0.00276696239598095,-2.22031687672586e-016,0.999996185302734,-0.00276696239598095,-2.22031687672586e-016,0.999996185302734,-0.00276696239598095,-2.22031687672586e-016,0.999996185302734,-0.117031536996365,-0.993128299713135,-2.20529765908206e-016,-0.117020934820175,-0.993129134178162,0.000921424711123109,-0.117020934820175,-0.993129134178162,0.000921424711123109,-0.010671959258616,-0.99994307756424,8.40313005028293e-005,-0.0107872122898698,-0.999941825866699,-2.21643574529176e-016,-0.0107872122898698,-0.999941825866699,-2.21643574529176e-016,0.00878919940441847,2.22186430004137e-016,-0.999961376190186,0.00878919940441847,2.22186430004137e-016,-0.999961376190186,0.00878919940441847,2.22186430004137e-016,-0.999961376190186,0.00253544212318957,2.22083647849944e-016,-0.999996781349182,0.00253544212318957,2.22083647849944e-016,-0.999996781349182,0.00253544212318957,2.22083647849944e-016,-0.999996781349182,-0.999993026256561,8.27645746551224e-019,-0.00373286264948547,-0.999993026256561,8.27645746551224e-019,-0.00373286264948547,-0.999993026256561,8.27645746551224e-019,-0.00373286264948547,-0.999986708164215,1.13787233896494e-018,-0.00515355216339231,-0.999986708164215,1.13787233896494e-018,-0.00515355216339231,-0.999986708164215,1.13787233896494e-018,-0.00515355216339231,0.018148610368371,0.999835312366486,2.22289079809433e-016,0.018148610368371,0.999835312366486,2.22289079809433e-016,0.018148610368371,0.999835312366486,2.22289079809433e-016,
  1444. -0.00862890109419823,0.999962866306305,2.22056913372546e-016,-0.00862890109419823,0.999962866306305,2.22056913372546e-016,-0.00862890109419823,0.999962866306305,2.22056913372546e-016,-0.999999046325684,3.10525980096668e-019,-0.00138363370206207,-0.999999046325684,3.10525980096668e-019,-0.00138363370206207,-0.999999046325684,3.10525980096668e-019,-0.00138363370206207,-0.999999165534973,2.87510635979963e-019,-0.00129452534019947,-0.999999165534973,2.87510635979963e-019,-0.00129452534019947,-0.999999165534973,2.87510635979963e-019,-0.00129452534019947,-2.23591105168452e-005,-1,-2.22046457809603e-016,-2.23591105168452e-005,-1,-2.22046457809603e-016,-2.23591105168452e-005,-1,-2.22046457809603e-016,-0.0231892038136721,-0.999731123447418,-2.21887599427324e-016,-0.0231892038136721,-0.999731123447418,-2.21887599427324e-016,-0.0231892038136721,-0.999731123447418,-2.21887599427324e-016,0.132402434945107,-0.208309203386307,0.969059884548187,-0.0872071906924248,-0.0200931951403618,0.99598753452301,0.120678648352623,-0.0128557058051229,0.992608368396759,0.119825266301632,-0.0111355576664209,0.992732644081116,-0.0865596532821655,-0.0186738837510347,0.996071636676788,-0.0506864115595818,-0.0945842117071152,0.994225800037384,-0.0791175365447998,-0.145372673869133,-0.986208498477936,0.0900879725813866,0.0112163126468658,-0.995870649814606,-0.086340568959713,0.00221869070082903,-0.996263206005096,-0.0754951387643814,0.0252190567553043,-0.996827304363251,0.0753635913133621,0.0432375818490982,-0.996218264102936,0.0720531493425369,-0.0625665113329887,-0.995436489582062,-0.0200582426041365,-2.21935496493513e-016,0.999798834323883,-0.0200582426041365,-2.21935496493513e-016,0.999798834323883,-0.0200582426041365,-2.21935496493513e-016,0.999798834323883,-0.00538512272760272,-2.22142225472202e-016,0.99998551607132,-0.00538512272760272,-2.22142225472202e-016,0.99998551607132,-0.00538512272760272,-2.22142225472202e-016,0.99998551607132,0.999968111515045,-0.00133282609749585,-0.00787376519292593,0.999999105930328,-0.00133279478177428,-3.30964553207693e-019,
  1445. 0.999968111515045,-0.00133282609749585,-0.00787376519292593,0.999997079372406,-0.00241886335425079,-4.95531696635418e-019,0.999966084957123,-0.00241892272606492,-0.00787374842911959,0.999997079372406,-0.00241886335425079,-4.95531696635418e-019,0.0206496436148882,2.22044459341244e-016,-0.999786794185638,0.0206496436148882,2.22044459341244e-016,-0.999786794185638,0.0206496436148882,2.22044459341244e-016,-0.999786794185638,0.00110201339703053,2.21989680132358e-016,-0.999999403953552,0.00110201339703053,2.21989680132358e-016,-0.999999403953552,0.00110201339703053,2.21989680132358e-016,-0.999999403953552,-0.00323132681660354,-0.999994874000549,2.54435162787559e-005,-0.0032304753549397,-0.999994874000549,-2.22038530110613e-016,-0.0032304753549397,-0.999994874000549,-2.22038530110613e-016,-0.0044806394726038,-0.999989986419678,-2.22107126544451e-016,-0.00448780553415418,-0.999989926815033,3.53370451193769e-005,-0.00448780553415418,-0.999989926815033,3.53370451193769e-005,-0.756631433963776,-0.516598284244537,0.400793075561523,-0.573988914489746,-0.81714254617691,-0.0530545860528946,0.582709968090057,-0.806812286376953,-0.097483403980732,0.583702802658081,-0.806794703006744,-0.0915072187781334,-0.573831975460052,-0.817145109176636,-0.0546898730099201,0.538595974445343,-0.839936256408691,0.0664943382143974,0.016977408900857,2.21986371409908e-016,-0.999855875968933,0.016977408900857,2.21986371409908e-016,-0.999855875968933,0.016977408900857,2.21986371409908e-016,-0.999855875968933,0.0303939953446388,2.22015395523241e-016,-0.999538004398346,0.0303939953446388,2.22015395523241e-016,-0.999538004398346,0.0303939953446388,2.22015395523241e-016,-0.999538004398346,-0.0108874225988984,-2.22002875317489e-016,0.999940752983093,-0.0108874225988984,-2.22002875317489e-016,0.999940752983093,-0.0108874225988984,-2.22002875317489e-016,0.999940752983093,-0.0155945727601647,-2.22285612268305e-016,0.999878406524658,-0.0155945727601647,-2.22285612268305e-016,0.999878406524658,-0.0155945727601647,-2.22285612268305e-016,0.999878406524658,-0.0176527108997107,0.999844193458557,-0.000138997696922161,
  1446. -0.017669390887022,0.999843955039978,-0.000278258143225685,-0.0176527108997107,0.999844193458557,-0.000138997696922161,-0.0588557571172714,0.998266160488129,-0.000926862354390323,-0.0588936097919941,0.998264133930206,-0.000463729258626699,-0.0588557571172714,0.998266160488129,-0.000926862354390323,0.0287225935608149,-0.999587416648865,-2.21986755221712e-016,0.0286817569285631,-0.999588370323181,0.000677522213663906,0.0286817569285631,-0.999588370323181,0.000677522213663906,-0.00641953106969595,-0.999979496002197,-0.000151642845594324,-0.00646010879427195,-0.999979138374329,-2.22182300718519e-016,-0.00646010879427195,-0.999979138374329,-2.22182300718519e-016,0.80258846282959,-0.56446248292923,-0.192960888147354,0.399542242288589,-0.916085839271545,0.0339525751769543,-0.39250573515892,-0.919670343399048,0.0120696648955345,-0.392301172018051,-0.91968047618866,0.0169577728956938,0.399554967880249,-0.916085302829742,0.0338160023093224,-0.500488758087158,-0.863656997680664,-0.0600638724863529,0.117298044264317,-0.268453061580658,0.956124544143677,-0.106219813227654,-0.00149449903983623,0.994341552257538,0.18814791738987,0.0329297222197056,0.98158860206604,0.176145911216736,0.0501508079469204,0.983085691928864,-0.0985579118132591,0.00953319855034351,0.995085656642914,-0.0657879114151001,-0.116064555943012,0.991060554981232,0.0073741371743381,-5.8064098993782e-005,-0.999972820281982,0.00742913736030459,5.84971166972537e-005,-0.999972403049469,0.0073741371743381,-5.8064098993782e-005,-0.999972820281982,0.00554258143529296,4.36423433711752e-005,-0.999984741210938,0.00548095116391778,-4.31571279477794e-005,-0.999984979629517,0.00554258143529296,4.36423433711752e-005,-0.999984741210938,0.00117337692063302,9.23919651540928e-006,0.999999403953552,0.00118983711581677,-9.36878677748609e-006,0.999999284744263,0.00118983711581677,-9.36878677748609e-006,0.999999284744263,-0.00057018653023988,4.48977698397357e-006,0.999999940395355,-0.000793727755080909,-6.24970516582835e-006,0.999999701976776,-0.000793727755080909,-6.24970516582835e-006,0.999999701976776,
  1447. 0.999987423419952,-0.00501987058669329,-1.16038623068467e-018,0.999987423419952,-0.00501987058669329,-1.16038623068467e-018,0.999987423419952,-0.00501987058669329,-1.16038623068467e-018,0.999991118907928,-0.0042185508646071,-9.94995603107759e-019,0.999991118907928,-0.0042185508646071,-9.94995603107759e-019,0.999991118907928,-0.0042185508646071,-9.94995603107759e-019,0.0130287846550345,-0.99991512298584,-2.22600814403802e-016,0.0130287846550345,-0.99991512298584,-2.22600814403802e-016,0.0130287846550345,-0.99991512298584,-2.22600814403802e-016,-0.013358760625124,-0.999910771846771,-2.2237428602997e-016,-0.013358760625124,-0.999910771846771,-2.2237428602997e-016,-0.013358760625124,-0.999910771846771,-2.2237428602997e-016,0.127911135554314,0.0394132286310196,-0.991002202033997,-0.0174267031252384,0.0501407608389854,-0.998590111732483,-0.0697964206337929,-0.0517898872494698,-0.996215999126434,-0.0358078815042973,0.0167445447295904,-0.99921840429306,0.139480829238892,0.00252810749225318,-0.990221560001373,0.101590074598789,-0.0739667341113091,-0.992072880268097,0.143170788884163,-0.065190277993679,0.987548649311066,-0.0408199019730091,-0.0604584887623787,0.997335731983185,0.251030206680298,0.196879103779793,0.947745978832245,-0.0289533510804176,-0.0848563238978386,0.995972454547882,0.129061922430992,-0.0928197354078293,0.987282991409302,-0.0821701362729073,0.00955852214246988,0.996572494506836,0.0491249673068523,-0.0440227389335632,0.997821986675262,-0.116072781383991,0.200882732868195,0.972714364528656,-0.0945459231734276,-0.0421491861343384,0.994627833366394,0.0593726299703121,-0.0218137409538031,0.997997522354126,-0.107382379472256,-0.022305017337203,0.993967533111572,0.0456002578139305,0.0658321380615234,0.996788203716278,-0.0490870103240013,-0.0737481042742729,0.996068120002747,0.121329702436924,0.114642433822155,0.985969662666321,0.10900703817606,-0.0811702013015747,0.99072140455246,0.119475319981575,-0.0713018774986267,0.990273535251617,-0.0292602609843016,0.105457425117493,0.99399334192276,-0.0611877664923668,-0.0612569153308868,0.996244788169861,
  1448. 0.0065440614707768,0.999978601932526,5.15280444233213e-005,0.00654218345880508,0.999978601932526,-5.15132560394704e-005,0.0065440614707768,0.999978601932526,5.15280444233213e-005,0.173672720789909,0.984802484512329,-0.00136750179808587,0.173748299479485,0.984789252281189,0.00136809679679573,0.173672720789909,0.984802484512329,-0.00136750179808587,0.999988079071045,3.86102947231848e-005,0.00490350835025311,0.999988079071045,3.86102947231848e-005,0.00490350835025311,0.999988079071045,3.86102947231848e-005,0.00490350835025311,0.999994993209839,2.49007225647802e-005,0.00316239171661437,0.999994993209839,2.49007225647802e-005,0.00316239171661437,0.999994993209839,2.49007225647802e-005,0.00316239171661437,0.496271908283234,-0.86717814207077,-0.0414307862520218,0.782699465751648,-0.526254057884216,0.332322806119919,-0.613098502159119,-0.789343357086182,-0.0323656536638737,0.493853837251663,-0.867307841777802,-0.0623339116573334,-0.611609101295471,-0.7894486784935,-0.052010677754879,-0.529071688652039,-0.846031725406647,0.0656772255897522,0.999990463256836,-3.44386025972199e-005,0.00437370222061872,0.999990463256836,-3.44386025972199e-005,0.00437370222061872,0.999990463256836,-3.44386025972199e-005,0.00437370222061872,0.999984800815582,-4.35597175965086e-005,0.00553208496421576,0.999984800815582,-4.35597175965086e-005,0.00553208496421576,0.999984800815582,-4.35597175965086e-005,0.00553208496421576,-0.0186327733099461,-0.999826371669769,0.000146714810398407,-0.0187448896467686,-0.999824285507202,-0.000147597485920414,-0.0186327733099461,-0.999826371669769,0.000146714810398407,0.00524246413260698,-0.999986350536346,4.12792614952195e-005,0.00527366297319531,-0.999986112117767,-4.1524886910338e-005,0.00524246413260698,-0.999986350536346,4.12792614952195e-005,0.0147382710129023,0.0252760443836451,-0.999571859836578,-0.107964627444744,0.0297034364193678,-0.993710875511169,-0.0993360430002213,-0.0338449701666832,-0.994478166103363,-0.117779158055782,0.0087997755035758,-0.99300080537796,0.0234363116323948,0.00550041301175952,-0.999710202217102,
  1449. 0.0210342146456242,-0.0688724964857101,-0.997403800487518,0.126484677195549,-0.0452845878899097,-0.990934371948242,-0.0668468624353409,-0.0438576936721802,-0.996798872947693,0.135945528745651,0.0651793628931046,-0.988569915294647,-0.0650111362338066,-0.0479050017893314,-0.996734023094177,0.127070754766464,-0.0438643135130405,-0.990923285484314,-0.0979464128613472,0.0675306022167206,-0.992897868156433,0.00270926835946739,0.999996423721313,2.13328003155766e-005,0.00266748224385083,0.999996542930603,-2.10038197110407e-005,0.00270926835946739,0.999996423721313,2.13328003155766e-005,-0.217500194907188,0.976058781147003,0.0017126000020653,-0.217621266841888,0.976031899452209,-0.00171355321072042,-0.217500194907188,0.976058781147003,0.0017126000020653,0.0232929531484842,2.21934636225676e-016,-0.999728679656982,0.0232929531484842,2.21934636225676e-016,-0.999728679656982,0.0232929531484842,2.21934636225676e-016,-0.999728679656982,0.00865546241402626,2.22000029816182e-016,-0.999962568283081,0.00865546241402626,2.22000029816182e-016,-0.999962568283081,0.00865546241402626,2.22000029816182e-016,-0.999962568283081,0.0993791520595551,-0.995049655437469,-2.20673483576553e-016,0.0993480831384659,-0.995052456855774,0.000782268412876874,0.0993791520595551,-0.995049655437469,-2.20673483576553e-016,0.0124723548069596,-0.999922215938568,9.82073979685083e-005,0.0123627353459597,-0.999923586845398,-2.23122374941074e-016,0.0124723548069596,-0.999922215938568,9.82073979685083e-005,-0.021697536110878,-2.22072027616699e-016,0.999764680862427,-0.021697536110878,-2.22072027616699e-016,0.999764680862427,-0.021697536110878,-2.22072027616699e-016,0.999764680862427,-0.00867192354053259,-2.22094182822225e-016,0.999962389469147,-0.00867192354053259,-2.22094182822225e-016,0.999962389469147,-0.00867192354053259,-2.22094182822225e-016,0.999962389469147,0.999882578849792,3.40443841402277e-018,-0.015331132337451,0.999882578849792,3.40443841402277e-018,-0.015331132337451,0.999882578849792,3.40443841402277e-018,-0.015331132337451,0.999902307987213,3.10436892744696e-018,-0.0139777818694711,
  1450. 0.999902307987213,3.10436892744696e-018,-0.0139777818694711,0.999902307987213,3.10436892744696e-018,-0.0139777818694711,0.00119944696780294,0.999999284744263,-1.88889243872836e-005,0.00119944696780294,0.999999284744263,-1.88889243872836e-005,0.00119944696780294,0.999999284744263,-1.88889243872836e-005,0.00882424786686897,0.999961078166962,-0.000138964533107355,0.00882424786686897,0.999961078166962,-0.000138964533107355,0.00882424786686897,0.999961078166962,-0.000138964533107355,0.99984884262085,3.85058530843845e-018,-0.0173922814428806,0.99984884262085,3.85058530843845e-018,-0.0173922814428806,0.99984884262085,3.85058530843845e-018,-0.0173922814428806,0.999844968318939,3.90604280542645e-018,-0.0176079515367746,0.999844968318939,3.90604280542645e-018,-0.0176079515367746,0.999844968318939,3.90604280542645e-018,-0.0176079515367746,0.000585225410759449,-0.999999821186066,-9.21615082916105e-006,0.000606406247243285,-0.999999821186066,-1.43239476528834e-005,0.000585225410759449,-0.999999821186066,-9.21615082916105e-006,-0.113458633422852,-0.993539094924927,0.00268012587912381,-0.113494336605072,-0.99353700876236,0.00178731232881546,-0.113458633422852,-0.993539094924927,0.00268012587912381,0.999547958374023,0,0.0300682000815868,0.999381303787231,-0.0231910143047571,0.0264422670006752,0.999547958374023,0,0.0300682000815868,0.999176263809204,0,0.0405807234346867,0.998773276805878,-0.0229016542434692,0.0439049787819386,0.998773276805878,-0.0229016542434692,0.0439049787819386,-0.999943733215332,0,0.0106071690097451,-0.999694466590881,0.0237240772694349,0.006936926394701,-0.999943733215332,0,0.0106071690097451,-0.999721109867096,0.0236188434064388,0.000215136009501293,-0.999992668628693,0,-0.00383309554308653,-0.999721109867096,0.0236188434064388,0.000215136009501293,0.997535824775696,-0.0549822673201561,0.0435806140303612,0.998216211795807,-0.0306328628212214,0.0512465722858906,0.997535824775696,-0.0549822673201561,0.0435806140303612,0.998022437095642,-0.0305687859654427,0.0549270063638687,0.996980786323547,-0.0549516938626766,0.0548598878085613,
  1451. 0.998238861560822,-0.0227174106985331,0.0548025630414486,-0.0550345741212368,-0.998484432697296,6.73550477033874e-019,-0.0314804539084435,-0.999504387378693,2.20159548403758e-019,-0.0550345741212368,-0.998484432697296,6.73550477033874e-019,-0.031474556773901,-0.999317646026611,-0.0193298440426588,-0.0550245083868504,-0.99830150604248,-0.0191466920077801,-0.0236109253019094,-0.999533176422119,-0.0193941611796618,0,-0.999995231628418,-0.00311810639686883,-0.0393394157290459,-0.999220907688141,-0.00316081033088267,0,-0.999995231628418,-0.00311810639686883,-0.0393310375511646,-0.999008655548096,0.0208521578460932,0,-0.999776303768158,0.0211515706032515,-0.047181248664856,-0.998669803142548,0.0207972005009651,-2.89549097942654e-006,0.999999940395355,0.000367353350156918,0.0393343046307564,0.999225974082947,0.000672380672767758,-2.89549097942654e-006,0.999999940395355,0.000367353350156918,0.00013734184904024,0.999847888946533,-0.017442112788558,0.0394700318574905,0.999070227146149,-0.0173424500972033,0.0473205149173737,0.998729467391968,-0.0173264946788549,-0.998773276805878,-0.0229016486555338,-0.0439053997397423,-0.999176263809204,0,-0.0405811369419098,-0.998773276805878,-0.0229016486555338,-0.0439053997397423,-0.999381363391876,-0.0231910441070795,-0.0264404527842999,-0.999548017978668,0,-0.0300663746893406,-0.999548017978668,0,-0.0300663746893406,0.999721109867096,0.0236188862472773,-0.000217828870518133,0.999992668628693,0,0.00383038492873311,0.999721109867096,0.0236188862472773,-0.000217828870518133,0.999943733215332,0,-0.0106090772897005,0.999694466590881,0.0237241070717573,-0.00693884491920471,0.999943733215332,0,-0.0106090772897005,-0.998022198677063,-0.0305687319487333,-0.0549298748373985,-0.996980726718903,-0.0549516938626766,-0.0548627749085426,-0.998238682746887,-0.0227173622697592,-0.0548054426908493,-0.997535824775696,-0.0549822673201561,-0.0435806140303612,-0.998216211795807,-0.0306328628212214,-0.0512465722858906,-0.997535824775696,-0.0549822673201561,-0.0435806140303612,0.031474556773901,-0.999317646026611,0.01932985894382,
  1452. 0.0550245083868504,-0.99830150604248,0.0191467087715864,0.0236109253019094,-0.999533176422119,0.0193941760808229,0.0550345741212368,-0.998484432697296,6.73550477033874e-019,0.0314804539084435,-0.999504387378693,2.20159548403758e-019,0.0550345741212368,-0.998484432697296,6.73550477033874e-019,0.000382171769160777,-0.00970719568431377,-0.999952912330627,0,-0.00814158096909523,-0.999966859817505,0.000473196676466614,-0.0100160092115402,-0.999949753284454,0,0.00703022908419371,-0.999975383281708,-0.000326492823660374,0.00829294417053461,-0.99996554851532,0,0.00703022908419371,-0.999975383281708,-0.0473205409944057,0.998729526996613,0.0173288770020008,-0.000137360344524495,0.999847948551178,0.0174444615840912,-0.039470050483942,0.999070227146149,0.0173448249697685,-0.039334312081337,0.999225854873657,-0.000670833047479391,2.8831470899604e-006,0.999999940395355,-0.000365785643225536,2.8831470899604e-006,0.999999940395355,-0.000365785643225536,0.00787099730223417,-0.99961656332016,-0.0265480354428291,0.00787099730223417,-0.99961656332016,-0.0265480354428291,0.00787099730223417,-0.99961656332016,-0.0265480354428291,0.0078683765605092,-0.999283969402313,-0.0370085127651691,0.0078683765605092,-0.999283969402313,-0.0370085127651691,0.0078683765605092,-0.999283969402313,-0.0370085127651691,0.00786163099110127,0.998427033424377,0.0555124171078205,0.00786163099110127,0.998427033424377,0.0555124171078205,0.00786163099110127,0.998427033424377,0.0555124171078205,0.00785822793841362,0.997995018959045,0.0628045797348022,0.00785822793841362,0.997995018959045,0.0628045797348022,0.00785822793841362,0.997995018959045,0.0628045797348022,-0.00779941584914923,0.0093995900824666,-0.999925434589386,-0.00787341967225075,0.00945534277707338,-0.999924302101135,-0.00779941584914923,0.0093995900824666,-0.999925434589386,-0.00787309650331736,-0.0130921239033341,-0.99988329410553,-0.0079753715544939,-0.0129882395267487,-0.999883949756622,-0.00787309650331736,-0.0130921239033341,-0.99988329410553,-0.00279040937311947,-0.935096561908722,-0.354382067918777,
  1453. -0.0101515566930175,-0.93515545129776,-0.354092419147491,-0.00279040937311947,-0.935096561908722,-0.354382067918777,0.000708954117726535,-0.995938241481781,0.0900372788310051,-0.00713171949610114,-0.995900630950928,0.0901724398136139,-0.00713171949610114,-0.995900630950928,0.0901724398136139,-0.0316799059510231,0.999415576457977,0.0128427688032389,-0.0234931875020266,0.99960857629776,0.0151903219521046,-0.0234931875020266,0.99960857629776,0.0151903219521046,-0.0222746562212706,0.989819169044495,0.140576913952827,-0.0334057100117207,0.989170014858246,0.142922803759575,-0.0334057100117207,0.989170014858246,0.142922803759575,0.00891592726111412,-0.044450294226408,0.998971819877625,-0.0150248883292079,-0.0448024980723858,0.99888288974762,0.0167759861797094,-0.0442640632390976,0.998879015445709,-0.0150061910971999,-0.0459384135901928,0.998831570148468,0.00893938913941383,-0.0454587750136852,0.998926222324371,-0.0150061910971999,-0.0459384135901928,0.998831570148468,-0.000466910802060738,-0.699655592441559,-0.714480102062225,-0.000189828802831471,-0.70105391740799,-0.713108241558075,-0.000466910802060738,-0.699655592441559,-0.714480102062225,0.00038218722329475,-0.719137132167816,-0.694868087768555,0.000867870752699673,-0.720749795436859,-0.69319474697113,0.00584206450730562,-0.718647480010986,-0.695349991321564,-0.0445519722998142,0.709860682487488,-0.702931642532349,-0.0222645979374647,0.713498592376709,-0.700302839279175,-0.0445519722998142,0.709860682487488,-0.702931642532349,-0.0222495328634977,0.679608821868896,-0.733237206935883,-0.0441052131354809,0.682592570781708,-0.729467034339905,-0.0164920520037413,0.681378901004791,-0.731745064258575,-0.000466901692561805,-0.699655711650848,-0.714479982852936,-0.000189827987924218,-0.701053977012634,-0.71310818195343,-0.000466901692561805,-0.699655711650848,-0.714479982852936,0.00038222165312618,-0.719138205051422,-0.694866955280304,0.000867943745106459,-0.72075092792511,-0.69319361448288,0.00584208965301514,-0.718648552894592,-0.695348918437958,-0.0445520244538784,0.70986407995224,-0.702928245067596,
  1454. -0.0222645979374647,0.713501870632172,-0.700299501419067,-0.0445520244538784,0.70986407995224,-0.702928245067596,-0.0222495254129171,0.679602444171906,-0.733243107795715,-0.0441051013767719,0.682586133480072,-0.729473054409027,-0.0164919979870319,0.681372404098511,-0.731751084327698,0.0236081071197987,-0.999406099319458,-0.02510248683393,0.0550167597830296,-0.998161494731903,-0.0254316758364439,0.0236081071197987,-0.999406099319458,-0.02510248683393,0.0236080996692181,-0.999413251876831,-0.0248145256191492,0.0550180301070213,-0.998184084892273,-0.0245272759348154,0.0550180301070213,-0.998184084892273,-0.0245272759348154,-0.0236091781407595,0.999457657337189,0.0229555387049913,-0.0552106350660324,0.998173117637634,0.0245407968759537,-0.0236091781407595,0.999457657337189,0.0229555387049913,-0.0548091568052769,0.998150706291199,-0.0262938886880875,-0.0236089304089546,0.999441981315613,-0.0236334670335054,-0.0548091568052769,0.998150706291199,-0.0262938886880875,0.0235145576298237,-0.995447218418121,-0.0923684537410736,0.0469871908426285,-0.994562089443207,-0.0929435566067696,0.0235145576298237,-0.995447218418121,-0.0923684537410736,0.0236112251877785,-0.999544262886047,-0.0188091695308685,0.0471832007169724,-0.998711168766022,-0.0187016669660807,0.0471832007169724,-0.998711168766022,-0.0187016669660807,-0.000317304453346878,0.0134326843544841,-0.999909818172455,0.00720646418631077,0.0141089633107185,-0.999874591827393,-0.000317304453346878,0.0134326843544841,-0.999909818172455,0.00693904515355825,0.0197536684572697,-0.999780893325806,-0.000472491752589121,0.0200019087642431,-0.999799847602844,0.00693904515355825,0.0197536684572697,-0.999780893325806,0.0157453212887049,-0.999827980995178,0.00980517361313105,0.0471891462802887,-0.998836755752563,0.00991383753716946,0.0157453212887049,-0.999827980995178,0.00980517361313105,0.0157304182648659,-0.998881459236145,-0.0445934422314167,0.0471454448997974,-0.997911989688873,-0.0441477820277214,0.0471454448997974,-0.997911989688873,-0.0441477820277214,-0.000418396346503869,0.0265681650489569,-0.99964702129364,
  1455. 0.0065720621496439,0.0274914409965277,-0.999600410461426,-0.000418396346503869,0.0265681650489569,-0.99964702129364,0.00648577976971865,0.0293092168867588,-0.999549448490143,-0.000467491539893672,0.0296857133507729,-0.999559283256531,0.00648577976971865,0.0293092168867588,-0.999549448490143,-0.999706625938416,-0.00557790789753199,-0.0235711894929409,-0.999489903450012,-0.00563836237415671,-0.03143560141325,-0.999951660633087,-0.00589174358174205,0.00787363573908806,-0.999969005584717,0.000413327041314915,0.00787377171218395,-0.999875962734222,0.000413348607253283,0.0157460775226355,-0.999721050262451,0.000186871591722593,-0.023616936057806,-0.999968945980072,0.000351884111296386,0.00787377078086138,-0.999875962734222,0.000351862632669508,0.0157460775226355,-0.999875962734222,0.000351862632669508,0.0157460775226355,-0.999469578266144,0.00809855759143829,-0.0315431244671345,-0.999841272830963,0.00821711216121912,-0.015810240060091,-0.999933123588562,0.00847020745277405,0.00787348952144384,-0.999876022338867,-0.000601747655309737,-0.0157413464039564,-0.999876022338867,-0.000434367742855102,0.0157460793852806,-0.999969005584717,-0.000434346176916733,0.00787377171218395,-0.999876022338867,5.51244811504148e-005,0.0157460793852806,-0.999969005584717,5.51281518710312e-005,0.00787377171218395,-0.999876022338867,5.51244811504148e-005,0.0157460793852806,-0.0694222301244736,-0.997547328472137,-0.00894796755164862,-0.0693027153611183,-0.997595071792603,0.00109138141851872,-0.0694991424679756,-0.997581958770752,-0.000547237228602171,0.700856685638428,-0.713216722011566,-0.0110371131449938,0.703730762004852,-0.710445642471313,0.00548828393220901,0.701522469520569,-0.712625920772552,-0.00552379991859198,-0.57225090265274,-0.820029079914093,0.00901182554662228,-0.572805523872375,-0.819678902626038,0.00451028067618608,-0.57225090265274,-0.820029079914093,0.00901182554662228,0.109702810645103,0.993962943553925,-0.00172760337591171,0.10996625572443,0.993933916091919,0.00173175218515098,0.10996625572443,0.993933916091919,0.00173175218515098,
  1456. -0.734664559364319,0.678331911563873,-0.0115695204585791,-0.732760488986969,0.680388748645782,0.0115395355969667,-0.733847677707672,0.679314076900482,1.40311391524479e-016,0.644640147686005,0.764486134052277,1.75607492664582e-016,0.643576979637146,0.765314400196075,-0.0101350713521242,0.643576979637146,0.765314400196075,-0.0101350713521242
  1457. }
  1458. TangentsW: *1086 {
  1459. 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,
  1460. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1461. }
  1462. }
  1463. LayerElementUV: 0 {
  1464. Version: 101
  1465. Name: "UVmap_0"
  1466. MappingInformationType: "ByPolygonVertex"
  1467. ReferenceInformationType: "IndexToDirect"
  1468. UV: *1556 {
  1469. a: 1.3017578125,-0.4248046875,2.01953125,-0.4658203125,2.017578125,-0.41015625,-1.412109375,2.1845703125,-1.49609375,2.2216796875,-1.49609375,2.15625,-1.2490234375,-0.9970703125,-0.79833984375,-0.96875,-1.2490234375,-0.951171875,-0.90380859375,-0.7216796875,-1.3525390625,-0.751953125,-0.90283203125,-0.7646484375,-1.6337890625,-0.158203125,-1.701171875,-0.1767578125,-1.6337890625,-0.1982421875,-1.5556640625,1.04171752929688,-1.6259765625,1.01631164550781,-1.552734375,0.999663591384888,-0.869140625,-0.4677734375,-1.392578125,-0.5146484375,-0.88037109375,-0.54296875,-1.4228515625,0.642578125,-0.89453125,0.684326171875,-1.416015625,0.710205078125,-0.89697265625,0.3173828125,-1.41015625,0.353515625,-1.4111328125,0.30517578125,-0.900390625,-0.142578125,-1.416015625,-0.1669921875,-0.900390625,-0.1953125,-1.5869140625,0.930908203125,-1.658203125,0.9031982421875,-1.5830078125,0.8818359375,-1.63671875,0.11669921875,-1.63671875,0.162109375,-1.7041015625,0.14013671875,-1.630859375,0.4951171875,-1.6982421875,0.4638671875,-1.6298828125,0.4462890625,-1.6455078125,0.31396484375,-1.626953125,0.3798828125,-1.6787109375,0.3798828125,-1.2490234375,-0.8857421875,-0.79833984375,-0.8583984375,-1.2490234375,-0.8408203125,-1.3525390625,-0.63671875,-0.90283203125,-0.6494140625,-0.90380859375,-0.6064453125,-1.63671875,-0.0947265625,-1.63671875,-0.0556640625,-1.7041015625,-0.0732421875,-1.55078125,1.150146484375,-1.62109375,1.12469482421875,-1.5478515625,1.1080322265625,-0.88916015625,-0.3525390625,-1.412109375,-0.3984375,-0.900390625,-0.4267578125,-1.384765625,0.767333984375,-0.85595703125,0.80908203125,-1.3779296875,0.8350830078125,-1.4111328125,0.181640625,-0.89697265625,0.193359375,-1.41015625,0.22998046875,-0.900390625,-0.2587890625,-1.416015625,-0.283203125,-0.900390625,-0.3115234375,-1.7001953125,0.786865234375,-1.6259765625,0.7655029296875,-1.62890625,0.8145751953125,-1.7041015625,0.03125,-1.63671875,0.0078125,-1.63671875,0.05322265625,-1.6953125,0.57861328125,-1.626953125,0.560791015625,-1.6279296875,0.60986328125,
  1470. -1.6875,0.27099609375,-1.6552734375,0.20556640625,-1.6357421875,0.27099609375,-1.5009765625,1.58447265625,-1.380859375,1.57568359375,-1.3828125,1.60302734375,-0.08233642578125,0.7637939453125,-0.83544921875,0.75048828125,-0.07379150390625,0.731689453125,-0.78466796875,0.84228515625,0.0258941650390625,0.84033203125,-0.7841796875,0.870361328125,-1.37109375,1.7021484375,-1.4853515625,1.68994140625,-1.3701171875,1.67626953125,-1.607421875,1.22607421875,-1.5263671875,1.2171630859375,-1.5283203125,1.240966796875,-1.6240234375,0.699462890625,-1.69921875,0.683837890625,-1.623046875,0.676513671875,-0.73193359375,2.1494140625,-1.37109375,2.1376953125,-0.73193359375,2.1279296875,-1.3603515625,2.224609375,-0.71875,2.2216796875,-1.357421875,2.2470703125,-1.59375,1.30126953125,-1.5087890625,1.315673828125,-1.5947265625,1.323486328125,-1.63671875,2.30078125,-1.5400390625,2.3115234375,-1.63671875,2.3212890625,0.05010986328125,-0.5859375,-0.7861328125,-0.5771484375,-0.79248046875,-0.5927734375,0.031585693359375,-0.4873046875,-0.7998046875,-0.49609375,0.0306549072265625,-0.5068359375,-1.421875,-1.109375,-1.126953125,-1.087890625,-1.4091796875,-1.064453125,-0.93408203125,-1.658203125,-1.2236328125,-1.69140625,-0.93310546875,-1.71875,-1.4169921875,-1.203125,-1.1318359375,-1.189453125,-1.4287109375,-1.162109375,-0.80419921875,-1.25,-1.1083984375,-1.275390625,-0.80517578125,-1.30859375,-1.587890625,-0.91796875,-1.29296875,-0.8955078125,-1.5751953125,-0.8720703125,-1.1318359375,-1.54296875,-1.421875,-1.576171875,-1.130859375,-1.60546875,-1.4169921875,-1.490234375,-1.1318359375,-1.478515625,-1.4287109375,-1.451171875,-0.8046875,-1.349609375,-1.1083984375,-1.375,-0.80517578125,-1.408203125,-0.685546875,1.931640625,-0.0234222412109375,1.9033203125,-0.02349853515625,1.9345703125,-0.0168304443359375,2.486328125,-0.67626953125,2.4921875,-0.67578125,2.4609375,-1.6630859375,-0.9130859375,-1.666015625,-0.9453125,-1.6162109375,-0.931640625,-1.5029296875,-1.578125,-1.453125,-1.564453125,-1.4990234375,-1.546875,-0.7314453125,2.337890625,-1.35546875,
  1471. 2.3369140625,-0.73193359375,2.310546875,-0.67578125,2.23046875,-0.016143798828125,2.2646484375,-0.6728515625,2.26171875,-1.6123046875,-0.27734375,-1.671875,-0.263671875,-1.669921875,-0.2958984375,-1.6767578125,-0.3896484375,-1.62109375,-0.3740234375,-1.6767578125,-0.3583984375,-0.68798828125,2.044921875,-0.024688720703125,2.0166015625,-0.0247802734375,2.0478515625,-0.0150833129882813,2.373046875,-0.67626953125,2.37890625,-0.67578125,2.3466796875,-1.623046875,-0.4716796875,-1.673828125,-0.4521484375,-1.67578125,-0.4873046875,-1.61328125,-1.029296875,-1.662109375,-1.0078125,-1.666015625,-1.04296875,-1.3955078125,2.6748046875,-0.70947265625,2.6748046875,-1.390625,2.7236328125,-1.33984375,1.93798828125,-0.70849609375,1.90576171875,-0.7255859375,1.9638671875,-0.68603515625,2.5673828125,-0.0201416015625,2.5927734375,-0.68994140625,2.619140625,-0.7109375,2.0869140625,-1.3447265625,2.0361328125,-0.72607421875,2.01953125,-1.5302734375,1.65283203125,-1.6025390625,1.7158203125,-1.59375,1.6533203125,-1.5361328125,1.71826171875,-1.529296875,1.58447265625,-1.5927734375,1.58544921875,-1.525390625,1.52294921875,-1.58984375,1.52294921875,1.357421875,-0.5380859375,2.01953125,-0.60546875,2.017578125,-0.5498046875,1.3505859375,-0.59765625,2.689453125,-0.3330078125,1.35546875,-0.2587890625,1.359375,-0.314453125,2.701171875,-0.2783203125,-1.505859375,2.35546875,-1.5068359375,2.2861328125,-1.4296875,2.287109375,-1.4326171875,2.3544921875,-1.4169921875,2.009765625,-1.419921875,2.0732421875,-1.48828125,2.0107421875,-1.48828125,2.076171875,2.6953125,-1.64453125,1.3427734375,-1.712890625,2.732421875,-1.705078125,1.3427734375,-1.6484375,2.724609375,0.7855224609375,1.3701171875,0.79345703125,2.728515625,0.727783203125,1.3720703125,0.8472900390625,1.3466796875,-1.248046875,2.6875,-1.30078125,2.7265625,-1.240234375,1.3466796875,-1.310546875,2.751953125,-0.7421875,1.3525390625,-0.6923828125,1.3515625,-0.751953125,2.76171875,-0.6845703125,2.7265625,-0.5556640625,2.744140625,-0.6123046875,-1.529296875,1.458251953125,-1.59375,1.458740234375,-1.591796875,
  1472. 1.396484375,-1.52734375,1.396240234375,-1.392578125,1.87353515625,-1.4677734375,1.931640625,-1.466796875,1.87255859375,-1.3876953125,1.93798828125,-1.4384765625,2.494140625,-1.50390625,2.4267578125,-1.4365234375,2.421875,-1.5107421875,2.4951171875,2.73828125,-0.9619140625,1.3994140625,-0.96875,2.720703125,-1.025390625,1.3837890625,-1.029296875,2.751953125,0.60986328125,1.416015625,0.600341796875,2.75,0.55126953125,1.4130859375,0.656005859375,2.720703125,-1.1015625,1.3974609375,-1.169921875,2.73828125,-1.162109375,1.39453125,-1.107421875,1.4375,-0.8349609375,2.74609375,-0.8779296875,2.744140625,-0.8232421875,1.4267578125,-0.892578125,2.7265625,-0.416015625,2.744140625,-0.47265625,1.4091796875,-0.126953125,2.734375,-0.1845703125,2.744140625,-0.1279296875,1.3701171875,-0.18359375,-1.6396484375,2.396484375,-1.56640625,2.443359375,-1.646484375,2.435546875,-1.5751953125,2.38671875,-1.615234375,1.9755859375,-1.556640625,1.91455078125,-1.546875,1.962890625,-1.61328125,1.9189453125,-0.0244903564453125,0.662841796875,-0.87060546875,0.586181640625,-0.020477294921875,0.5888671875,-0.86865234375,0.66162109375,0.12249755859375,-1.2265625,-0.78857421875,-1.2890625,0.12744140625,-1.29296875,-0.7763671875,-1.224609375,-0.77197265625,-0.9453125,0.12030029296875,-1.013671875,0.12078857421875,-0.9423828125,-0.7705078125,-1.01171875,-0.0164337158203125,0.07568359375,-0.861328125,-0.0029296875,-0.0171051025390625,0.0009765625,-0.8671875,0.068359375,-1.638671875,2.6591796875,-1.5673828125,2.703125,-1.64453125,2.697265625,-1.5751953125,2.646484375,-1.587890625,1.7861328125,-1.5224609375,1.8466796875,-1.5947265625,1.8330078125,-1.53125,1.78271484375,-0.833984375,-0.34765625,-0.00178909301757813,-0.41796875,-0.0089111328125,-0.34765625,-0.845703125,-0.421875,-0.01751708984375,0.2919921875,-0.00601577758789063,0.36572265625,-0.83984375,0.28955078125,-0.85205078125,0.36328125,0.332763671875,-1.50390625,-0.546875,-1.568359375,0.32568359375,-1.572265625,-0.56201171875,-1.501953125,0.134033203125,-0.802734375,-0.74658203125,-0.8046875,0.14599609375,
  1473. -0.873046875,-0.7490234375,-0.875,-1.638671875,2.5283203125,-1.5654296875,2.57421875,-1.6455078125,2.56640625,-1.5751953125,2.5166015625,-1.6259765625,2.0458984375,-1.5615234375,2.1064453125,-1.6328125,2.0908203125,-1.5693359375,2.0439453125,-0.0175933837890625,0.1435546875,-0.006103515625,0.21728515625,-0.83935546875,0.140625,-0.85107421875,0.2158203125,-0.84423828125,-0.6650390625,0.049285888671875,-0.7333984375,0.036224365234375,-0.6630859375,-0.84814453125,-0.734375,0.34033203125,-1.642578125,-0.55029296875,-1.7109375,0.32177734375,-1.712890625,-0.5615234375,-1.64453125,-0.84619140625,-0.2822265625,0.00486373901367188,-0.201171875,-0.84326171875,-0.2109375,-0.00171184539794922,-0.2783203125,-1.5107421875,2.580078125,-1.4404296875,2.626953125,-1.517578125,2.6171875,-1.447265625,2.5703125,-1.6318359375,2.232421875,-1.5703125,2.171875,-1.5625,2.220703125,-1.6279296875,2.1748046875,0.11529541015625,-1.36328125,-0.7734375,-1.4296875,0.1129150390625,-1.43359375,-0.77685546875,-1.36328125,-0.028778076171875,0.43994140625,-0.869140625,0.512939453125,-0.86181640625,0.44140625,-0.027008056640625,0.51416015625,0.117919921875,-1.083984375,-0.77685546875,-1.154296875,0.1192626953125,-1.150390625,-0.76513671875,-1.083984375,-0.8623046875,-0.1396484375,-0.0198822021484375,-0.068359375,-0.8623046875,-0.0693359375,-0.0169677734375,-0.1396484375,-1.3837890625,1.2017822265625,-1.4755859375,1.1943359375,-1.3828125,1.1748046875,-1.4755859375,1.1690673828125,-1.5791015625,-0.2939453125,-1.4609375,-0.3115234375,-1.4599609375,-0.291015625,-1.5791015625,-0.3125,0.186767578125,-1.076171875,1.2939453125,-0.96484375,0.1842041015625,-0.9697265625,1.294921875,-1.0703125,1.4091796875,1.2330322265625,2.7421875,1.255126953125,1.408203125,1.258056640625,2.7421875,1.22998046875,1.2919921875,-1.248046875,0.1854248046875,-1.13671875,0.1829833984375,-1.244140625,1.2939453125,-1.140625,2.744140625,1.4501953125,1.41015625,1.44677734375,2.744140625,1.425048828125,1.4091796875,1.422119140625,-1.3994140625,-0.677734375,-1.52734375,-0.6884765625,-1.3984375,
  1474. -0.7080078125,-1.5263671875,-0.7158203125,1.4111328125,2.5361328125,2.734375,2.6494140625,1.412109375,2.6572265625,2.740234375,2.5302734375,0.0321044921875,2.4013671875,1.3623046875,2.4130859375,0.030181884765625,2.52734375,1.361328125,2.529296875,1.4111328125,2.341796875,2.73828125,2.3623046875,1.4111328125,2.3671875,2.73828125,2.3388671875,1.353515625,2.7119140625,0.02716064453125,2.708984375,1.3505859375,2.689453125,0.0267181396484375,2.68359375,-1.5595703125,-0.5830078125,-1.4384765625,-0.607421875,-1.4384765625,-0.58203125,-1.5595703125,-0.6083984375,-1.466796875,0.2978515625,-1.568359375,0.28955078125,-1.4658203125,0.267578125,-1.5673828125,0.26171875,2.744140625,1.97412109375,1.4091796875,2.07421875,1.408203125,1.97802734375,2.740234375,2.0703125,1.4091796875,1.8095703125,2.744140625,1.90380859375,1.408203125,1.90576171875,2.73828125,1.8076171875,2.70703125,1.6142578125,1.408203125,1.64208984375,1.408203125,1.61669921875,2.72265625,1.63916015625,2.740234375,2.2705078125,1.4111328125,2.2421875,2.7421875,2.2451171875,1.4111328125,2.267578125,-1.4736328125,0.57861328125,-1.572265625,0.605712890625,-1.572265625,0.5771484375,-1.4736328125,0.6044921875,-1.4697265625,1.466796875,-1.380859375,1.4697265625,-1.3828125,1.49951171875,-1.4716796875,1.496826171875,-1.36328125,1.304443359375,-1.4560546875,1.30224609375,-1.36328125,1.275634765625,-1.4560546875,1.276123046875,-1.5810546875,-0.5087890625,-1.4599609375,-0.482421875,-1.58203125,-0.4794921875,-1.4599609375,-0.5087890625,1.3046875,1.02516174316406,0.0294647216796875,1.04910278320313,0.0296478271484375,1.02388000488281,1.30859375,1.05282592773438,2.728515625,1.07196044921875,1.3798828125,1.164306640625,1.3759765625,1.07672119140625,2.734375,1.1619873046875,-1.4033203125,0.995479583740234,-1.498046875,1.00092744827271,-1.4970703125,0.972412109375,-1.404296875,0.969390869140625,2.728515625,1.00846099853516,1.376953125,0.91571044921875,2.734375,0.9188232421875,1.373046875,1.00360107421875,1.3037109375,0.681396484375,0.034942626953125,0.65673828125,1.3037109375,0.6533203125,
  1475. 0.03485107421875,0.679931640625,-1.4599609375,-0.408203125,-1.580078125,-0.380859375,-1.5810546875,-0.4091796875,-1.4599609375,-0.3818359375,-1.435546875,0.8038330078125,-1.5341796875,0.7763671875,-1.435546875,0.7762451171875,-1.5341796875,0.8038330078125,1.353515625,1.5126953125,0.04290771484375,1.489990234375,1.353515625,1.4873046875,0.038909912109375,1.515625,1.30078125,-0.060546875,0.055145263671875,0.033203125,0.056549072265625,-0.0576171875,1.3037109375,0.02978515625,1.35546875,2.22265625,0.03802490234375,2.2470703125,0.0367431640625,2.2216796875,1.35546875,2.248046875,0.053985595703125,-0.2197265625,1.298828125,-0.1240234375,0.054595947265625,-0.12890625,1.30078125,-0.2138671875,0.035247802734375,1.300048828125,1.349609375,1.424072265625,0.033447265625,1.420654296875,1.3525390625,1.306640625,0.033447265625,1.673828125,1.35546875,1.69580078125,0.033660888671875,1.69921875,1.35546875,1.67041015625,1.3525390625,1.85498046875,0.03271484375,1.97412109375,0.03076171875,1.85498046875,1.35546875,1.97265625,1.35546875,2.06640625,0.02935791015625,2.0634765625,1.35546875,2.0419921875,0.029693603515625,2.0380859375,-1.4033203125,1.09710693359375,-1.494140625,1.08953857421875,-1.40234375,1.07012939453125,-1.494140625,1.06439208984375,-1.4599609375,-0.2041015625,-1.5791015625,-0.20703125,-1.4609375,-0.224609375,-1.5791015625,-0.2255859375,0.1900634765625,-0.90234375,1.2978515625,-0.791015625,0.1876220703125,-0.7958984375,1.2978515625,-0.8984375,1.4091796875,1.328857421875,2.7421875,1.35107421875,1.408203125,1.35400390625,2.7421875,1.325927734375,0.181640625,-1.41796875,1.291015625,-1.421875,0.18408203125,-1.310546875,1.2919921875,-1.314453125,1.41015625,1.54296875,2.744140625,1.52099609375,2.744140625,1.54638671875,1.41015625,1.51806640625,-1.466796875,0,-1.5830078125,-0.009765625,-1.4658203125,-0.02734375,-1.5830078125,-0.03515625,0.084716796875,-0.54296875,1.294921875,-0.5478515625,0.08563232421875,-0.431640625,1.2939453125,-0.439453125,0.0897216796875,-0.728515625,1.3046875,-0.6103515625,0.087890625,-0.61328125,1.3017578125,
  1476. -0.716796875,1.41015625,2.4375,2.73828125,2.4580078125,1.4111328125,2.462890625,2.740234375,2.4345703125,0.027191162109375,2.6171875,1.3515625,2.5966796875,1.3515625,2.619140625,0.0270843505859375,2.5927734375,-1.4638671875,0.1923828125,-1.5751953125,0.19140625,-1.46484375,0.1689453125,-1.5751953125,0.16748046875,-1.47265625,0.70654296875,-1.5693359375,0.698486328125,-1.4716796875,0.677734375,-1.5693359375,0.671875,0.036468505859375,0.2490234375,1.3115234375,0.33544921875,0.037628173828125,0.341796875,1.314453125,0.2431640625,1.3115234375,0.4052734375,0.03656005859375,0.49658203125,0.0380859375,0.404296875,1.3154296875,0.4970703125,1.408203125,1.712890625,2.744140625,1.70849609375,1.408203125,1.73828125,2.744140625,1.73583984375,2.744140625,2.1748046875,1.4091796875,2.146484375,2.744140625,2.1484375,1.4091796875,2.1708984375,-1.5263671875,0.8974609375,-1.4326171875,0.87255859375,-1.431640625,0.89801025390625,-1.52734375,0.8702392578125,-1.3720703125,1.80224609375,-1.453125,1.77197265625,-1.37109375,1.77490234375,-1.455078125,1.7998046875,-1.4716796875,0.50244140625,-1.5732421875,0.50439453125,-1.572265625,0.47412109375,-1.4716796875,0.4716796875,-1.5791015625,-0.1337890625,-1.4609375,-0.1337890625,-1.4609375,-0.107421875,-1.580078125,-0.1044921875,0.0296478271484375,0.9312744140625,1.3046875,0.9324951171875,0.029449462890625,0.95648193359375,1.30859375,0.960174560546875,0.04425048828125,-0.365234375,1.28515625,-0.3701171875,0.048126220703125,-0.28515625,1.291015625,-0.287109375,-1.470703125,0.3955078125,-1.5732421875,0.40185546875,-1.572265625,0.37060546875,-1.4716796875,0.3671875,1.2890625,0.18115234375,0.048583984375,0.095703125,1.294921875,0.0986328125,0.044952392578125,0.1767578125,1.3037109375,0.5888671875,0.03497314453125,0.564453125,1.3037109375,0.560546875,0.03485107421875,0.58740234375,-1.5830078125,0.09814453125,-1.46484375,0.07177734375,-1.46484375,0.09716796875,-1.5830078125,0.0703125,-1.4755859375,1.369873046875,-1.384765625,1.395263671875,-1.4755859375,1.395263671875,-1.3837890625,1.36962890625,1.353515625,
  1477. 1.6044921875,0.04376220703125,1.58154296875,1.353515625,1.57861328125,0.03924560546875,1.607421875,1.3798828125,0.21142578125,2.740234375,0.208984375,1.3779296875,0.31103515625,2.744140625,0.3076171875,0.038360595703125,2.3115234375,1.357421875,2.3125,0.04010009765625,2.3369140625,1.357421875,2.337890625,1.37890625,0.37646484375,2.740234375,0.48193359375,1.380859375,0.4765625,2.744140625,0.3837890625,0.0330810546875,0.7470703125,1.3134765625,0.867919921875,0.0313720703125,0.8646240234375,1.3173828125,0.7532958984375,0.033905029296875,1.765625,1.35546875,1.78759765625,0.033843994140625,1.791015625,1.35546875,1.76220703125,0.03228759765625,1.1173095703125,1.3203125,1.11712646484375,0.0341796875,1.2335205078125,1.3232421875,1.232177734375,1.35546875,2.158203125,0.0300140380859375,2.1298828125,1.35546875,2.1328125,0.0294952392578125,2.1552734375,-0.78173828125,1.60986328125,-1.326171875,1.60302734375,-0.7958984375,1.5341796875,-1.33984375,1.521484375,-0.7314453125,1.8515625,-1.2666015625,1.7939453125,-0.71826171875,1.7783203125,-1.279296875,1.8740234375,-0.904296875,0.09716796875,-1.41015625,0.05712890625,-0.89501953125,0.02099609375,-1.4091796875,0.10546875,-0.90576171875,0.4736328125,-1.4150390625,0.41552734375,-0.90576171875,0.41552734375,-1.4228515625,0.484375,-0.83837890625,0.965118408203125,-1.3486328125,0.9083251953125,-0.82958984375,0.89007568359375,-1.359375,0.979721069335938,-0.80712890625,1.2283935546875,-1.326171875,1.20458984375,-0.81494140625,1.1531982421875,-1.3359375,1.131103515625,-1.33984375,1.38671875,-0.7958984375,1.399169921875,-1.326171875,1.468017578125,-0.78173828125,1.474853515625,-1.3173828125,1.66943359375,-0.78271484375,1.72705078125,-1.330078125,1.74951171875,-0.76953125,1.65380859375,-1.4052734375,-0.06640625,-0.89990234375,-0.0263671875,-1.404296875,-0.017578125,-0.89013671875,-0.1025390625,-1.4150390625,0.5361328125,-0.90576171875,0.59423828125,-1.4228515625,0.605224609375,-0.90576171875,0.53662109375,-1.345703125,1.02938842773438,-0.8349609375,1.086181640625,-1.35546875,1.100830078125,
  1478. -0.826171875,1.01117706298828,-1.31640625,1.255859375,-0.79638671875,1.278076171875,-1.3076171875,1.329345703125,-0.78857421875,1.353271484375,-0.76318359375,1.20703125,-0.02471923828125,1.2337646484375,-0.73876953125,1.322021484375,-0.0067596435546875,1.34619140625,-0.736328125,1.386962890625,-0.02392578125,1.48388671875,-0.76220703125,1.501953125,-0.00431442260742188,1.37158203125,-0.7841796875,0.92877197265625,-0.0238037109375,1.00949859619141,-0.80322265625,1.01206207275391,-0.0104827880859375,0.91534423828125,-0.7509765625,1.05886840820313,-0.02362060546875,1.08935546875,-0.69873046875,1.1568603515625,-0.0121612548828125,1.156005859375,0.423095703125,-1.48828125,1.2919921875,-1.54296875,1.3095703125,-1.466796875,0.39892578125,-1.5625,1.2900390625,-1.611328125,0.423095703125,-1.66796875,1.3076171875,-1.689453125,0.39892578125,-1.591796875,-0.80615234375,-1.447265625,-1.1005859375,-1.51171875,-0.8056640625,-1.509765625,-1.1005859375,-1.44921875,-0.8017578125,-1.046875,-1.09765625,-1.111328125,-0.80224609375,-1.109375,-1.09375,-1.048828125,-0.607421875,-1.552734375,-0.90234375,-1.619140625,-0.60693359375,-1.615234375,-0.90185546875,-1.556640625,-0.8056640625,-1.146484375,-1.1015625,-1.2109375,-0.80615234375,-1.208984375,-1.09765625,-1.1484375,-0.6865234375,2.1162109375,-0.0247650146484375,2.1328125,-0.67822265625,2.1650390625,-0.016571044921875,2.1796875,-0.6767578125,1.78857421875,-0.0235137939453125,1.8369140625,-0.68603515625,1.8369140625,-0.0153961181640625,1.7900390625,-1.3623046875,2.40234375,-0.7294921875,2.4306640625,-1.3505859375,2.4638671875,-0.7216796875,2.4814453125,-1.3505859375,2.5537109375,-0.73388671875,2.5947265625,-1.3662109375,2.61328125,-0.724609375,2.5439453125,-0.7392578125,1.662109375,-0.0208740234375,1.6796875,-0.728515625,1.71435546875,-0.0100631713867188,1.7294921875,-0.72900390625,1.552734375,-0.021240234375,1.60546875,-0.74072265625,1.60498046875,-0.0105667114257813,1.55419921875,1.3828125,0.0087890625,1.283203125,-0.0712890625,2.033203125,-0.052734375,2.73828125,0.0107421875,2.744140625,
  1479. -0.0498046875,1.2890625,-1.498046875,1.3662109375,-1.568359375,2.0234375,-1.505859375,2.732421875,-1.568359375,2.744140625,-1.509765625,1.37109375,0.08203125,2.69140625,0.1396484375,1.3623046875,0.142578125,2.033203125,0.07763671875,2.744140625,0.08056640625,2.681640625,-1.435546875,1.35546875,-1.37890625,1.345703125,-1.439453125,2.0234375,-1.375,2.744140625,-1.376953125
  1480. }
  1481. UVIndex: *1086 {
  1482. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,186,189,187,190,191,192,191,193,192,194,195,196,195,194,197,198,199,200,199,198,201,202,203,204,204,205,202,206,207,208,207,209,208,210,211,212,211,210,213,214,215,216,215,214,217,218,219,220,219,218,221,222,223,224,223,222,225,226,195,227,195,226,196,228,229,230,228,230,231,232,233,234,232,235,233,236,237,238,236,239,237,240,241,242,243,242,241,244,245,246,245,244,247,248,249,250,249,248,251,252,253,254,253,252,255,256,1,257,1,256,2,258,259,260,259,258,261,262,263,264,265,263,262,266,267,268,269,267,266,270,271,272,273,271,270,274,275,276,274,277,275,278,279,280,278,281,279,282,283,284,283,282,285,286,287,288,289,287,286,290,291,292,290,293,291,294,295,296,294,297,295,298,299,300,299,301,300,302,303,304,305,303,302,306,307,308,307,309,308,310,311,312,313,311,310,314,315,316,314,317,315,318,319,320,319,321,320,322,323,324,322,325,323,326,327,328,326,329,327,330,331,332,331,330,333,334,335,336,337,335,334,338,339,340,341,339,338,342,343,344,345,343,342,346,347,348,347,346,349,350,351,352,351,350,353,354,355,356,355,354,357,358,359,360,360,359,361,362,363,364,363,362,365,366,367,368,367,366,369,370,371,372,371,370,373,374,375,376,375,374,377,378,379,380,381,380,379,382,383,384,384,383,385,386,387,388,387,386,389,390,391,392,393,392,391,394,395,396,395,394,397,398,399,400,401,400,399,402,403,404,403,402,405,406,407,408,408,407,409,410,411,412,411,410,413,414,415,
  1483. 416,415,414,417,418,419,420,419,418,421,422,423,424,423,422,425,426,427,428,427,426,429,430,431,432,430,432,433,434,435,436,436,435,437,438,439,440,439,438,441,442,443,444,443,442,445,446,447,448,447,446,449,450,451,452,452,453,450,454,455,456,455,454,457,458,459,460,459,458,461,462,463,464,463,462,465,466,467,468,467,466,469,470,471,472,471,470,473,474,475,476,475,474,477,478,479,480,479,478,481,482,483,484,483,482,485,486,487,488,487,486,489,490,491,492,491,490,493,494,495,496,495,494,497,498,499,500,501,500,499,502,503,504,504,503,505,506,507,508,508,507,509,510,511,512,511,510,513,514,515,516,515,514,517,518,519,520,521,520,519,522,523,524,523,522,525,526,527,528,528,527,529,530,531,532,533,532,531,534,535,536,535,534,537,538,539,540,539,538,541,542,543,544,543,542,545,546,547,548,548,547,549,550,551,552,552,551,553,554,555,556,555,554,557,558,559,560,559,558,561,562,563,564,565,564,563,566,567,568,567,566,569,570,571,572,571,570,573,574,575,576,575,574,577,578,579,580,578,580,581,582,583,584,584,585,582,586,587,588,589,588,587,590,591,592,593,592,591,594,595,596,594,596,597,598,599,600,599,598,601,602,603,604,603,602,605,606,607,608,607,606,609,610,611,612,611,610,613,614,615,616,615,614,617,618,619,620,621,620,619,622,623,624,625,624,623,626,627,628,627,626,629,630,631,632,631,630,633,634,635,636,635,634,637,638,639,640,641,640,639,642,643,644,643,642,645,646,647,648,648,647,649,650,651,652,651,650,653,654,655,656,655,654,657,658,659,660,659,658,661,662,663,664,663,662,665,666,667,668,668,667,669,670,671,672,672,671,673,674,675,676,675,674,677,678,679,680,679,678,681,682,683,684,683,682,685,686,687,688,687,686,689,690,691,692,692,691,693,694,695,696,696,695,697,698,699,700,699,698,701,702,703,704,703,702,705,706,707,708,708,707,709,710,711,712,711,710,713,714,715,716,715,714,717,718,719,720,719,718,721,722,723,724,723,722,725,726,727,728,727,726,729,730,731,732,731,730,733,734,735,736,736,735,737,738,739,740,739,738,741,742,743,744,744,743,745,746,747,748,747,746,749,750,751,752,752,751,753,754,755,756,755,754,
  1484. 757,758,759,760,760,761,758,760,762,761,763,764,765,764,766,765,767,765,766,768,769,770,769,768,771,769,771,772,773,774,775,774,773,776,776,773,777
  1485. }
  1486. }
  1487. LayerElementUV: 1 {
  1488. Version: 101
  1489. Name: "LightMapUV"
  1490. MappingInformationType: "ByPolygonVertex"
  1491. ReferenceInformationType: "IndexToDirect"
  1492. UV: *1556 {
  1493. a: 0.14501953125,0.7620849609375,0.2568359375,0.755126953125,0.256591796875,0.7646484375,0.314208984375,0.115234375,0.300537109375,0.12158203125,0.300537109375,0.11083984375,0.75634765625,0.13232421875,0.75244140625,0.22021484375,0.75,0.13232421875,0.2015380859375,0.2177734375,0.20556640625,0.13037109375,0.207275390625,0.2177734375,0.83984375,0.056640625,0.82763671875,0.05419921875,0.83984375,0.05078125,0.1470947265625,0.05712890625,0.13427734375,0.05322265625,0.147705078125,0.05078125,0.53662109375,0.23583984375,0.5439453125,0.1474609375,0.54833984375,0.23388671875,0.4423828125,0.3671875,0.53076171875,0.3740234375,0.443603515625,0.3779296875,0.78759765625,0.33203125,0.78173828125,0.24560546875,0.7890625,0.2451171875,0.87890625,0.23388671875,0.88232421875,0.14697265625,0.88671875,0.23388671875,0.435791015625,0.07275390625,0.42431640625,0.068359375,0.436279296875,0.06494140625,0.61279296875,0.04931640625,0.61279296875,0.056640625,0.60205078125,0.05322265625,0.7421875,0.07275390625,0.7314453125,0.06787109375,0.7421875,0.06494140625,0.367919921875,0.0458984375,0.37109375,0.056640625,0.36279296875,0.056640625,0.78857421875,0.13232421875,0.78466796875,0.22021484375,0.7822265625,0.13232421875,0.479736328125,0.13037109375,0.4814453125,0.2177734375,0.4755859375,0.2177734375,0.8720703125,0.05078125,0.8720703125,0.056640625,0.85986328125,0.05419921875,0.308349609375,0.05712890625,0.295654296875,0.05322265625,0.308837890625,0.05078125,0.37548828125,0.23583984375,0.382568359375,0.1474609375,0.386962890625,0.23388671875,0.4423828125,0.3994140625,0.53076171875,0.40625,0.443603515625,0.41015625,0.8212890625,0.2451171875,0.81982421875,0.33203125,0.81396484375,0.24560546875,0.6689453125,0.23388671875,0.6728515625,0.14697265625,0.67724609375,0.23388671875,0.39208984375,0.068359375,0.404052734375,0.06494140625,0.403564453125,0.07275390625,0.63427734375,0.05322265625,0.64501953125,0.04931640625,0.64501953125,0.056640625,0.56982421875,0.06787109375,0.5810546875,0.06494140625,0.5810546875,0.07275390625,0.45947265625,
  1494. 0.056640625,0.46484375,0.0458984375,0.4677734375,0.056640625,0.261474609375,0.0693359375,0.280029296875,0.06787109375,0.27978515625,0.07275390625,0.943359375,0.22509765625,0.94580078125,0.11181640625,0.94873046875,0.2265625,0.447998046875,0.2255859375,0.4482421875,0.3544921875,0.443359375,0.22607421875,0.344482421875,0.056640625,0.32666015625,0.05419921875,0.344482421875,0.05224609375,0.923828125,0.0546875,0.9384765625,0.05322265625,0.93798828125,0.056640625,0.0828857421875,0.04052734375,0.06927490234375,0.0380859375,0.08294677734375,0.037109375,0.040313720703125,0.20166015625,0.04180908203125,0.07470703125,0.043060302734375,0.20166015625,0.5107421875,0.09619140625,0.51123046875,0.220703125,0.5078125,0.09716796875,0.89501953125,0.0517578125,0.9091796875,0.05419921875,0.89501953125,0.0556640625,0.2015380859375,0.037109375,0.21630859375,0.0390625,0.2015380859375,0.04052734375,0.81640625,0.220703125,0.81494140625,0.09521484375,0.8173828125,0.09423828125,0.008056640625,0.2021484375,0.00954437255859375,0.07666015625,0.0114593505859375,0.20166015625,0.2958984375,0.1474609375,0.343505859375,0.15087890625,0.298095703125,0.15478515625,0.11773681640625,0.20361328125,0.0711669921875,0.1982421875,0.117919921875,0.19384765625,0.14208984375,0.07666015625,0.1400146484375,0.12255859375,0.1357421875,0.07470703125,0.279052734375,0.1708984375,0.23046875,0.1669921875,0.279052734375,0.16162109375,0.2314453125,0.13134765625,0.279052734375,0.134765625,0.233642578125,0.138671875,0.441650390625,0.203125,0.447021484375,0.15673828125,0.451416015625,0.20361328125,0.57177734375,0.13232421875,0.61767578125,0.13427734375,0.56982421875,0.138671875,0.11798095703125,0.1708984375,0.06915283203125,0.1669921875,0.11785888671875,0.16162109375,0.31689453125,0.17578125,0.321533203125,0.2822265625,0.31640625,0.2822265625,0.978515625,0.267578125,0.9775390625,0.1611328125,0.982421875,0.1611328125,0.234130859375,0.04052734375,0.2337646484375,0.03564453125,0.2418212890625,0.03759765625,0.49169921875,0.03564453125,0.49951171875,0.03759765625,0.4921875,0.041015625,
  1495. 0.413818359375,0.2666015625,0.4140625,0.16552734375,0.418212890625,0.26611328125,0.14501953125,0.20947265625,0.139404296875,0.31591796875,0.139892578125,0.2099609375,0.1156005859375,0.0380859375,0.10601806640625,0.0400390625,0.10626220703125,0.03515625,0.26611328125,0.03564453125,0.27490234375,0.0380859375,0.26611328125,0.04052734375,0.34912109375,0.17578125,0.353759765625,0.2822265625,0.3486328125,0.2822265625,0.849609375,0.25146484375,0.8486328125,0.14501953125,0.853515625,0.14501953125,0.1785888671875,0.03759765625,0.169677734375,0.04052734375,0.1693115234375,0.03564453125,0.404052734375,0.03759765625,0.3955078125,0.041015625,0.394775390625,0.03564453125,0.00634002685546875,0.26025390625,0.11724853515625,0.26025390625,0.00726318359375,0.26806640625,0.63916015625,0.11181640625,0.64404296875,0.22216796875,0.63525390625,0.21875,0.17626953125,0.111328125,0.172119140625,0.21923828125,0.16796875,0.11083984375,0.11724853515625,0.23779296875,0.0064697265625,0.22998046875,0.11456298828125,0.2275390625,0.40576171875,0.09375,0.394287109375,0.10400390625,0.395751953125,0.09375,0.405029296875,0.1044921875,0.74462890625,0.1044921875,0.73388671875,0.1044921875,0.7451171875,0.0947265625,0.734375,0.0947265625,0.6376953125,0.7666015625,0.74072265625,0.755126953125,0.740234375,0.7646484375,0.63623046875,0.756591796875,0.84375,0.818359375,0.63720703125,0.8309326171875,0.6376953125,0.821533203125,0.845703125,0.82763671875,0.07318115234375,0.10498046875,0.072998046875,0.09375,0.085693359375,0.09375,0.0850830078125,0.10498046875,0.343017578125,0.1103515625,0.342529296875,0.12109375,0.331787109375,0.1103515625,0.33154296875,0.12158203125,0.36279296875,0.733642578125,0.153076171875,0.72216796875,0.36865234375,0.7236328125,0.153076171875,0.73291015625,0.70361328125,0.933349609375,0.49169921875,0.93463134765625,0.7041015625,0.92376708984375,0.4921875,0.943572998046875,0.153076171875,0.7969970703125,0.36181640625,0.787841796875,0.367919921875,0.798095703125,0.1531982421875,0.7864990234375,0.98583984375,0.751220703125,0.9775390625,0.535400390625,
  1496. 0.98779296875,0.53515625,0.9765625,0.7530517578125,0.8505859375,0.763671875,0.853515625,0.754150390625,0.77685546875,0.10498046875,0.76611328125,0.10498046875,0.76611328125,0.09521484375,0.77685546875,0.09521484375,0.89111328125,0.109375,0.87890625,0.119140625,0.87890625,0.109375,0.8916015625,0.1201171875,0.375244140625,0.12060546875,0.364501953125,0.10986328125,0.37548828125,0.10888671875,0.36328125,0.12109375,0.853515625,0.798095703125,0.64453125,0.7969970703125,0.85107421875,0.7874755859375,0.64208984375,0.78662109375,0.2247314453125,0.9345703125,0.0153350830078125,0.9329833984375,0.2247314453125,0.92486572265625,0.0147933959960938,0.942230224609375,0.36669921875,0.70166015625,0.160888671875,0.68994140625,0.369384765625,0.691162109375,0.160400390625,0.700439453125,0.64990234375,0.7314453125,0.85107421875,0.724365234375,0.85107421875,0.7333984375,0.6484375,0.721923828125,0.366943359375,0.763671875,0.369873046875,0.754150390625,0.1614990234375,0.82958984375,0.366943359375,0.8199462890625,0.368408203125,0.829345703125,0.155517578125,0.820068359375,0.66943359375,0.111328125,0.681640625,0.11962890625,0.66845703125,0.1181640625,0.68017578125,0.109375,0.2349853515625,0.1044921875,0.244384765625,0.09326171875,0.245849609375,0.10205078125,0.2353515625,0.09423828125,0.378662109375,0.65234375,0.38916015625,0.48974609375,0.388671875,0.653076171875,0.37890625,0.490234375,0.63525390625,0.636962890625,0.470703125,0.627685546875,0.6357421875,0.626953125,0.472900390625,0.636962890625,0.64990234375,0.60498046875,0.8115234375,0.5947265625,0.8115234375,0.605224609375,0.64990234375,0.594970703125,0.87841796875,0.65185546875,0.88916015625,0.490234375,0.888671875,0.651611328125,0.8798828125,0.4892578125,0.7021484375,0.111328125,0.71337890625,0.11962890625,0.701171875,0.1181640625,0.71240234375,0.109375,0.267333984375,0.09326171875,0.277587890625,0.1044921875,0.26611328125,0.10205078125,0.276123046875,0.0927734375,0.91162109375,0.49560546875,0.9208984375,0.65478515625,0.91162109375,0.6533203125,0.92138671875,0.49365234375,0.82958984375,
  1497. 0.65966796875,0.83154296875,0.669677734375,0.67138671875,0.6591796875,0.6689453125,0.669189453125,0.1856689453125,0.638671875,0.1951904296875,0.47998046875,0.1954345703125,0.63720703125,0.1854248046875,0.47705078125,0.63623046875,0.605224609375,0.4765625,0.60498046875,0.63818359375,0.59521484375,0.47607421875,0.5947265625,0.84716796875,0.111328125,0.85888671875,0.11962890625,0.84619140625,0.1181640625,0.857421875,0.109375,0.10638427734375,0.09375,0.11669921875,0.10498046875,0.10528564453125,0.10205078125,0.115478515625,0.09326171875,0.65185546875,0.65966796875,0.654296875,0.669677734375,0.494140625,0.6591796875,0.49169921875,0.66943359375,0.00891876220703125,0.60498046875,0.1708984375,0.594970703125,0.16845703125,0.605224609375,0.00824737548828125,0.594970703125,0.217529296875,0.639892578125,0.2275390625,0.47900390625,0.2279052734375,0.636474609375,0.2178955078125,0.47705078125,0.9541015625,0.49365234375,0.94287109375,0.656005859375,0.9443359375,0.494140625,0.95361328125,0.65478515625,0.54052734375,0.11181640625,0.5517578125,0.1201171875,0.53955078125,0.1181640625,0.55078125,0.10986328125,0.202392578125,0.1044921875,0.2120361328125,0.09326171875,0.2132568359375,0.10205078125,0.2030029296875,0.09375,0.166259765625,0.63720703125,0.00580215454101563,0.62744140625,0.165771484375,0.626708984375,0.00516510009765625,0.63720703125,0.8564453125,0.66748046875,0.8466796875,0.505859375,0.8564453125,0.50732421875,0.84619140625,0.66796875,0.8115234375,0.63720703125,0.6494140625,0.626953125,0.8115234375,0.627685546875,0.6513671875,0.63720703125,0.45361328125,0.490234375,0.44384765625,0.6513671875,0.444091796875,0.490234375,0.45361328125,0.65185546875,0.216064453125,0.07275390625,0.2012939453125,0.07177734375,0.21630859375,0.068359375,0.201416015625,0.0673828125,0.76611328125,0.072265625,0.78125,0.068359375,0.78125,0.07275390625,0.76611328125,0.068359375,0.474609375,0.68212890625,0.45947265625,0.8951416015625,0.460205078125,0.681640625,0.473876953125,0.89532470703125,0.9794921875,0.294921875,0.97607421875,0.508056640625,0.9755859375,
  1498. 0.294921875,0.97998046875,0.508056640625,0.8505859375,0.88031005859375,0.6376953125,0.89532470703125,0.63720703125,0.88092041015625,0.85107421875,0.89471435546875,0.6572265625,0.47607421875,0.44384765625,0.4755859375,0.6572265625,0.47216796875,0.44384765625,0.4716796875,0.44775390625,0.10498046875,0.427490234375,0.103515625,0.447998046875,0.10009765625,0.427490234375,0.0986328125,0.2498779296875,0.97235107421875,0.463134765625,0.990585327148438,0.25,0.991981506347656,0.4638671875,0.971405029296875,0.0082855224609375,0.971359252929688,0.223388671875,0.973236083984375,0.00797271728515625,0.991531372070313,0.2232666015625,0.991943359375,0.044342041015625,0.32568359375,0.040985107421875,0.539794921875,0.040313720703125,0.32568359375,0.04486083984375,0.539794921875,0.3466796875,0.5234375,0.34716796875,0.31005859375,0.350341796875,0.52294921875,0.351318359375,0.31005859375,0.1697998046875,0.0693359375,0.1737060546875,0.0888671875,0.1695556640625,0.0888671875,0.173828125,0.0693359375,0.363037109375,0.0888671875,0.3466796875,0.08740234375,0.363037109375,0.083984375,0.3466796875,0.0830078125,0.55615234375,0.911376953125,0.5400390625,0.696533203125,0.5556640625,0.6962890625,0.541015625,0.9107666015625,0.9912109375,0.777099609375,0.97607421875,0.991966247558594,0.9755859375,0.77685546875,0.99169921875,0.99127197265625,0.1092529296875,0.534423828125,0.10479736328125,0.32568359375,0.10888671875,0.3251953125,0.10528564453125,0.537109375,0.9111328125,0.4755859375,0.91552734375,0.26171875,0.9150390625,0.47607421875,0.91162109375,0.26171875,0.0885009765625,0.068359375,0.07220458984375,0.07275390625,0.072265625,0.06787109375,0.0885009765625,0.072265625,0.94384765625,0.08349609375,0.95849609375,0.083984375,0.95849609375,0.0888671875,0.943359375,0.08837890625,0.98974609375,0.07275390625,0.97509765625,0.072265625,0.98974609375,0.06787109375,0.97509765625,0.06787109375,0.48095703125,0.0849609375,0.4765625,0.10498046875,0.47607421875,0.0849609375,0.48095703125,0.10498046875,0.81884765625,0.5703125,0.81494140625,0.35791015625,0.81884765625,
  1499. 0.35791015625,0.814453125,0.57080078125,0.365478515625,0.87994384765625,0.15380859375,0.89520263671875,0.153076171875,0.8807373046875,0.366455078125,0.894775390625,0.119384765625,0.07177734375,0.1048583984375,0.07275390625,0.10491943359375,0.06787109375,0.1192626953125,0.0673828125,0.572265625,0.90887451171875,0.58740234375,0.697021484375,0.5869140625,0.909912109375,0.57275390625,0.696533203125,0.943359375,0.47412109375,0.947265625,0.26220703125,0.94775390625,0.47412109375,0.94384765625,0.26220703125,0.318115234375,0.08447265625,0.29833984375,0.08837890625,0.29833984375,0.083984375,0.318115234375,0.08837890625,0.0548095703125,0.056640625,0.039794921875,0.0517578125,0.054840087890625,0.0517578125,0.039764404296875,0.056640625,0.87939453125,0.47607421875,0.8828125,0.2626953125,0.88330078125,0.47607421875,0.87890625,0.26220703125,0.95751953125,0.89483642578125,0.943359375,0.68115234375,0.95703125,0.681396484375,0.94384765625,0.895263671875,0.576171875,0.44384765625,0.572265625,0.2294921875,0.57666015625,0.22900390625,0.572265625,0.44384765625,0.40966796875,0.68115234375,0.39501953125,0.89483642578125,0.395751953125,0.681396484375,0.40869140625,0.89520263671875,0.491943359375,0.9720458984375,0.70458984375,0.991943359375,0.49169921875,0.99139404296875,0.705078125,0.973098754882813,0.318359375,0.3115234375,0.31494140625,0.5244140625,0.314453125,0.3115234375,0.319091796875,0.5244140625,0.94677734375,0.97247314453125,0.73388671875,0.99169921875,0.73388671875,0.972503662109375,0.947265625,0.991477966308594,0.2176513671875,0.4599609375,0.2181396484375,0.24658203125,0.2218017578125,0.4599609375,0.2222900390625,0.24658203125,0.2484130859375,0.07275390625,0.233642578125,0.07177734375,0.24853515625,0.068359375,0.233642578125,0.0673828125,0.8134765625,0.07275390625,0.79833984375,0.072265625,0.8134765625,0.068359375,0.79833984375,0.068359375,0.4423828125,0.68212890625,0.42724609375,0.8951416015625,0.427978515625,0.681640625,0.441650390625,0.89532470703125,0.476318359375,0.504150390625,0.689453125,0.5078125,0.47607421875,0.508056640625,
  1500. 0.689453125,0.503662109375,0.89306640625,0.681640625,0.8935546875,0.89495849609375,0.87841796875,0.68212890625,0.87939453125,0.895263671875,0.37939453125,0.2626953125,0.383056640625,0.47607421875,0.37890625,0.47607421875,0.383544921875,0.2626953125,0.9111328125,0.10498046875,0.91259765625,0.08740234375,0.916015625,0.10498046875,0.91748046875,0.08740234375,0.12109375,0.69677734375,0.121826171875,0.91046142578125,0.10479736328125,0.697021484375,0.10589599609375,0.91033935546875,0.07354736328125,0.697021484375,0.056365966796875,0.91229248046875,0.0567626953125,0.69677734375,0.07183837890625,0.91180419921875,0.07659912109375,0.32568359375,0.0732421875,0.53955078125,0.07257080078125,0.32568359375,0.0770263671875,0.539794921875,0.41162109375,0.2939453125,0.4150390625,0.507080078125,0.41162109375,0.507080078125,0.415771484375,0.2939453125,0.70166015625,0.0888671875,0.70166015625,0.072265625,0.70556640625,0.0888671875,0.7060546875,0.072265625,0.68408203125,0.0888671875,0.66943359375,0.08740234375,0.6845703125,0.083984375,0.66943359375,0.0830078125,0.61865234375,0.6962890625,0.60546875,0.91082763671875,0.6044921875,0.696533203125,0.61962890625,0.911376953125,0.92529296875,0.89459228515625,0.9111328125,0.68017578125,0.92529296875,0.680419921875,0.9111328125,0.895263671875,0.4755859375,0.536376953125,0.69091796875,0.53564453125,0.4755859375,0.54052734375,0.69091796875,0.5400390625,0.8466796875,0.4921875,0.85107421875,0.27783203125,0.8505859375,0.4921875,0.84716796875,0.27783203125,0.5078125,0.07177734375,0.52294921875,0.06787109375,0.52294921875,0.07177734375,0.5078125,0.0673828125,0.0208740234375,0.056640625,0.008453369140625,0.05126953125,0.021087646484375,0.0517578125,0.00809478759765625,0.05615234375,0.86328125,0.0888671875,0.845703125,0.0888671875,0.84619140625,0.08447265625,0.86328125,0.083984375,0.572265625,0.10009765625,0.59130859375,0.10009765625,0.59130859375,0.10400390625,0.572265625,0.1044921875,0.0126190185546875,0.32568359375,0.0124282836914063,0.537841796875,0.00868988037109375,0.32568359375,0.00811004638671875,
  1501. 0.53857421875,0.63671875,0.8507080078125,0.84912109375,0.85009765625,0.6376953125,0.8629150390625,0.85009765625,0.8626708984375,0.541015625,0.0888671875,0.5400390625,0.07177734375,0.544921875,0.07177734375,0.54541015625,0.0888671875,0.365478515625,0.8631591796875,0.15380859375,0.85009765625,0.36669921875,0.8505859375,0.153076171875,0.8624267578125,0.185546875,0.4580078125,0.1893310546875,0.24609375,0.18994140625,0.4580078125,0.1856689453125,0.24609375,0.62060546875,0.08837890625,0.6396484375,0.08447265625,0.6396484375,0.08837890625,0.62060546875,0.083984375,0.66845703125,0.0517578125,0.681640625,0.056640625,0.66845703125,0.056640625,0.681640625,0.0517578125,0.685546875,0.47607421875,0.689453125,0.26318359375,0.68994140625,0.47607421875,0.68505859375,0.26220703125,0.50830078125,0.697509765625,0.5087890625,0.91094970703125,0.49169921875,0.697265625,0.492431640625,0.911376953125,0.60888671875,0.22900390625,0.60888671875,0.44384765625,0.6044921875,0.2294921875,0.6044921875,0.44384765625,0.0254669189453125,0.697265625,0.008056640625,0.91094970703125,0.00893402099609375,0.697509765625,0.0242919921875,0.91131591796875,0.250244140625,0.9246826171875,0.462890625,0.943572998046875,0.2498779296875,0.94305419921875,0.46337890625,0.9256591796875,0.7216796875,0.32763671875,0.71826171875,0.54052734375,0.71728515625,0.32763671875,0.72216796875,0.54052734375,0.73388671875,0.92510986328125,0.94677734375,0.925048828125,0.73388671875,0.943328857421875,0.947265625,0.943115234375,0.74951171875,0.4599609375,0.75439453125,0.2470703125,0.75390625,0.4599609375,0.75048828125,0.24658203125,0.7490234375,0.574951171875,0.75,0.4873046875,0.76123046875,0.572509765625,0.76318359375,0.48486328125,0.1375732421875,0.427734375,0.1468505859375,0.341796875,0.1494140625,0.4296875,0.1339111328125,0.33984375,0.54150390625,0.34716796875,0.54736328125,0.26123046875,0.55322265625,0.3486328125,0.5400390625,0.26171875,0.25,0.31494140625,0.2587890625,0.2294921875,0.2587890625,0.31494140625,0.248291015625,0.22802734375,0.71728515625,0.298828125,0.72607421875,0.212890625,
  1502. 0.72900390625,0.30029296875,0.71533203125,0.21142578125,0.2471923828125,0.42919921875,0.2509765625,0.341796875,0.2587890625,0.427734375,0.26220703125,0.34033203125,0.79541015625,0.48486328125,0.79345703125,0.572509765625,0.78271484375,0.4873046875,0.78125,0.574951171875,0.646484375,0.35791015625,0.63720703125,0.44384765625,0.6337890625,0.35595703125,0.6494140625,0.44580078125,0.64404296875,0.2451171875,0.63818359375,0.3310546875,0.63671875,0.24560546875,0.64990234375,0.33251953125,0.291259765625,0.2294921875,0.2822265625,0.31494140625,0.280517578125,0.22802734375,0.291015625,0.31494140625,0.00811767578125,0.2900390625,0.0936279296875,0.298828125,0.006378173828125,0.30078125,0.0950927734375,0.287109375,0.29443359375,0.34033203125,0.291015625,0.427734375,0.283203125,0.341796875,0.279541015625,0.42919921875,0.3642578125,0.54345703125,0.3603515625,0.6689453125,0.346923828125,0.54736328125,0.343017578125,0.671875,0.329833984375,0.547607421875,0.31494140625,0.6689453125,0.312255859375,0.543212890625,0.33203125,0.67236328125,0.00754928588867188,0.56005859375,0.1336669921875,0.57275390625,0.00437164306640625,0.572998046875,0.1358642578125,0.557861328125,0.4267578125,0.532470703125,0.422119140625,0.6533203125,0.411865234375,0.541015625,0.412109375,0.6552734375,0.15380859375,0.451171875,0.1640625,0.57275390625,0.1497802734375,0.5751953125,0.1676025390625,0.44775390625,0.603515625,0.572265625,0.48193359375,0.56201171875,0.60595703125,0.55810546875,0.478515625,0.575927734375,0.27880859375,0.2041015625,0.2315673828125,0.193359375,0.279052734375,0.19384765625,0.231689453125,0.203125,0.1348876953125,0.18701171875,0.1455078125,0.1396484375,0.14501953125,0.18701171875,0.13525390625,0.14013671875,0.61767578125,0.2041015625,0.5703125,0.193359375,0.61767578125,0.19384765625,0.5703125,0.203125,0.69921875,0.18701171875,0.7099609375,0.1396484375,0.70947265625,0.18701171875,0.69970703125,0.14013671875,0.91943359375,0.12744140625,0.9169921875,0.23388671875,0.91162109375,0.12890625,0.9091796875,0.2353515625,0.4833984375,0.24169921875,0.4755859375,
  1503. 0.34716796875,0.4755859375,0.240234375,0.483154296875,0.34814453125,0.79345703125,0.35791015625,0.7890625,0.4599609375,0.78369140625,0.35986328125,0.78076171875,0.46142578125,0.6259765625,0.564453125,0.7255859375,0.571044921875,0.62353515625,0.573974609375,0.72705078125,0.56298828125,0.517578125,0.240234375,0.5146484375,0.3466796875,0.5087890625,0.24169921875,0.505859375,0.3486328125,0.443603515625,0.4345703125,0.548828125,0.44384765625,0.44189453125,0.44384765625,0.55029296875,0.43505859375,0.64111328125,0.701171875,0.62548828125,0.6875,0.74267578125,0.690673828125,0.8525390625,0.701416015625,0.85302734375,0.691162109375,-0.000696182250976563,0.6708984375,0.0113296508789063,0.658935546875,0.11322021484375,0.66943359375,0.22265625,0.65869140625,0.224609375,0.6689453125,0.26025390625,0.45556640625,0.25048828125,0.661376953125,0.25,0.4541015625,0.260986328125,0.558837890625,0.260498046875,0.66943359375,0.292236328125,0.659912109375,0.28271484375,0.45458984375,0.29296875,0.453125,0.2822265625,0.55810546875,0.28271484375,0.669677734375
  1504. }
  1505. UVIndex: *1086 {
  1506. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,186,189,187,190,191,192,191,193,192,194,195,196,195,194,197,198,199,200,199,198,201,202,203,204,204,205,202,206,207,208,207,209,208,210,211,212,211,210,213,214,215,216,215,214,217,218,219,220,219,218,221,222,223,224,223,222,225,226,195,227,195,226,196,228,229,230,228,230,231,232,233,234,232,235,233,236,237,238,236,239,237,240,241,242,243,242,241,244,245,246,245,244,247,248,249,250,249,248,251,252,253,254,253,252,255,256,1,257,1,256,2,258,259,260,259,258,261,262,263,264,265,263,262,266,267,268,269,267,266,270,271,272,273,271,270,274,275,276,274,277,275,278,279,280,278,281,279,282,283,284,283,282,285,286,287,288,289,287,286,290,291,292,290,293,291,294,295,296,294,297,295,298,299,300,299,301,300,302,303,304,305,303,302,306,307,308,307,309,308,310,311,312,313,311,310,314,315,316,314,317,315,318,319,320,319,321,320,322,323,324,322,325,323,326,327,328,326,329,327,330,331,332,331,330,333,334,335,336,337,335,334,338,339,340,341,339,338,342,343,344,345,343,342,346,347,348,347,346,349,350,351,352,351,350,353,354,355,356,355,354,357,358,359,360,360,359,361,362,363,364,363,362,365,366,367,368,367,366,369,370,371,372,371,370,373,374,375,376,375,374,377,378,379,380,381,380,379,382,383,384,384,383,385,386,387,388,387,386,389,390,391,392,393,392,391,394,395,396,395,394,397,398,399,400,401,400,399,402,403,404,403,402,405,406,407,408,408,407,409,410,411,412,411,410,413,414,415,
  1507. 416,415,414,417,418,419,420,419,418,421,422,423,424,423,422,425,426,427,428,427,426,429,430,431,432,430,432,433,434,435,436,436,435,437,438,439,440,439,438,441,442,443,444,443,442,445,446,447,448,447,446,449,450,451,452,452,453,450,454,455,456,455,454,457,458,459,460,459,458,461,462,463,464,463,462,465,466,467,468,467,466,469,470,471,472,471,470,473,474,475,476,475,474,477,478,479,480,479,478,481,482,483,484,483,482,485,486,487,488,487,486,489,490,491,492,491,490,493,494,495,496,495,494,497,498,499,500,501,500,499,502,503,504,504,503,505,506,507,508,508,507,509,510,511,512,511,510,513,514,515,516,515,514,517,518,519,520,521,520,519,522,523,524,523,522,525,526,527,528,528,527,529,530,531,532,533,532,531,534,535,536,535,534,537,538,539,540,539,538,541,542,543,544,543,542,545,546,547,548,548,547,549,550,551,552,552,551,553,554,555,556,555,554,557,558,559,560,559,558,561,562,563,564,565,564,563,566,567,568,567,566,569,570,571,572,571,570,573,574,575,576,575,574,577,578,579,580,578,580,581,582,583,584,584,585,582,586,587,588,589,588,587,590,591,592,593,592,591,594,595,596,594,596,597,598,599,600,599,598,601,602,603,604,603,602,605,606,607,608,607,606,609,610,611,612,611,610,613,614,615,616,615,614,617,618,619,620,621,620,619,622,623,624,625,624,623,626,627,628,627,626,629,630,631,632,631,630,633,634,635,636,635,634,637,638,639,640,641,640,639,642,643,644,643,642,645,646,647,648,648,647,649,650,651,652,651,650,653,654,655,656,655,654,657,658,659,660,659,658,661,662,663,664,663,662,665,666,667,668,668,667,669,670,671,672,672,671,673,674,675,676,675,674,677,678,679,680,679,678,681,682,683,684,683,682,685,686,687,688,687,686,689,690,691,692,692,691,693,694,695,696,696,695,697,698,699,700,699,698,701,702,703,704,703,702,705,706,707,708,708,707,709,710,711,712,711,710,713,714,715,716,715,714,717,718,719,720,719,718,721,722,723,724,723,722,725,726,727,728,727,726,729,730,731,732,731,730,733,734,735,736,736,735,737,738,739,740,739,738,741,742,743,744,744,743,745,746,747,748,747,746,749,750,751,752,752,751,753,754,755,756,755,754,
  1508. 757,758,759,760,760,761,758,760,762,761,763,764,765,764,766,765,767,765,766,768,769,770,769,768,771,769,771,772,773,774,775,774,773,776,776,773,777
  1509. }
  1510. }
  1511. LayerElementSmoothing: 0 {
  1512. Version: 102
  1513. Name: ""
  1514. MappingInformationType: "ByEdge"
  1515. ReferenceInformationType: "Direct"
  1516. Smoothing: *543 {
  1517. 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
  1518. }
  1519. }
  1520. LayerElementMaterial: 0 {
  1521. Version: 101
  1522. Name: ""
  1523. MappingInformationType: "AllSame"
  1524. ReferenceInformationType: "IndexToDirect"
  1525. Materials: *1 {
  1526. a: 0
  1527. }
  1528. }
  1529. Layer: 0 {
  1530. Version: 100
  1531. LayerElement: {
  1532. Type: "LayerElementNormal"
  1533. TypedIndex: 0
  1534. }
  1535. LayerElement: {
  1536. Type: "LayerElementBinormal"
  1537. TypedIndex: 0
  1538. }
  1539. LayerElement: {
  1540. Type: "LayerElementTangent"
  1541. TypedIndex: 0
  1542. }
  1543. LayerElement: {
  1544. Type: "LayerElementMaterial"
  1545. TypedIndex: 0
  1546. }
  1547. LayerElement: {
  1548. Type: "LayerElementSmoothing"
  1549. TypedIndex: 0
  1550. }
  1551. LayerElement: {
  1552. Type: "LayerElementUV"
  1553. TypedIndex: 0
  1554. }
  1555. }
  1556. Layer: 1 {
  1557. Version: 100
  1558. LayerElement: {
  1559. Type: "LayerElementBinormal"
  1560. TypedIndex: 1
  1561. }
  1562. LayerElement: {
  1563. Type: "LayerElementTangent"
  1564. TypedIndex: 1
  1565. }
  1566. LayerElement: {
  1567. Type: "LayerElementUV"
  1568. TypedIndex: 1
  1569. }
  1570. }
  1571. }
  1572. Geometry: 2267733746336, "Geometry::", "Mesh" {
  1573. Vertices: *24 {
  1574. a: -144.904907226563,85.3290405273438,71.634521484375,144.360229492188,85.3290405273438,71.634521484375,-144.904907226563,105.07691192627,71.634521484375,144.360229492188,105.07691192627,71.634521484375,-144.904907226563,105.07691192627,-70.486328125,144.360229492188,105.07691192627,-70.486328125,-144.904907226563,85.3290405273438,-70.486328125,144.360229492188,85.3290405273438,-70.486328125
  1575. }
  1576. PolygonVertexIndex: *24 {
  1577. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1578. }
  1579. Edges: *12 {
  1580. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1581. }
  1582. GeometryVersion: 124
  1583. LayerElementNormal: 0 {
  1584. Version: 102
  1585. Name: ""
  1586. MappingInformationType: "ByPolygonVertex"
  1587. ReferenceInformationType: "Direct"
  1588. Normals: *72 {
  1589. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  1590. }
  1591. NormalsW: *24 {
  1592. 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
  1593. }
  1594. }
  1595. LayerElementBinormal: 0 {
  1596. Version: 102
  1597. Name: "map1"
  1598. MappingInformationType: "ByPolygonVertex"
  1599. ReferenceInformationType: "Direct"
  1600. Binormals: *72 {
  1601. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,-0,1,0,0,1,-0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
  1602. }
  1603. BinormalsW: *24 {
  1604. 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
  1605. }
  1606. }
  1607. LayerElementTangent: 0 {
  1608. Version: 102
  1609. Name: "map1"
  1610. MappingInformationType: "ByPolygonVertex"
  1611. ReferenceInformationType: "Direct"
  1612. Tangents: *72 {
  1613. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,0,-1,0,-0,-1,0,0,-1,0,-0,1,0,-0,1,0,-0,1,0,-0,1
  1614. }
  1615. TangentsW: *24 {
  1616. 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
  1617. }
  1618. }
  1619. LayerElementUV: 0 {
  1620. Version: 101
  1621. Name: "map1"
  1622. MappingInformationType: "ByPolygonVertex"
  1623. ReferenceInformationType: "IndexToDirect"
  1624. UV: *28 {
  1625. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1626. }
  1627. UVIndex: *24 {
  1628. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1629. }
  1630. }
  1631. LayerElementSmoothing: 0 {
  1632. Version: 102
  1633. Name: ""
  1634. MappingInformationType: "ByEdge"
  1635. ReferenceInformationType: "Direct"
  1636. Smoothing: *12 {
  1637. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1638. }
  1639. }
  1640. LayerElementMaterial: 0 {
  1641. Version: 101
  1642. Name: ""
  1643. MappingInformationType: "AllSame"
  1644. ReferenceInformationType: "IndexToDirect"
  1645. Materials: *1 {
  1646. a: 0
  1647. }
  1648. }
  1649. Layer: 0 {
  1650. Version: 100
  1651. LayerElement: {
  1652. Type: "LayerElementNormal"
  1653. TypedIndex: 0
  1654. }
  1655. LayerElement: {
  1656. Type: "LayerElementBinormal"
  1657. TypedIndex: 0
  1658. }
  1659. LayerElement: {
  1660. Type: "LayerElementTangent"
  1661. TypedIndex: 0
  1662. }
  1663. LayerElement: {
  1664. Type: "LayerElementMaterial"
  1665. TypedIndex: 0
  1666. }
  1667. LayerElement: {
  1668. Type: "LayerElementSmoothing"
  1669. TypedIndex: 0
  1670. }
  1671. LayerElement: {
  1672. Type: "LayerElementUV"
  1673. TypedIndex: 0
  1674. }
  1675. }
  1676. }
  1677. Geometry: 2267733751456, "Geometry::", "Mesh" {
  1678. Vertices: *24 {
  1679. a: -144.262451171875,185.90788269043,70.5224609375,145.228149414063,185.90788269043,70.5224609375,-144.262451171875,205.102355957031,70.5224609375,145.228149414063,205.102355957031,70.5224609375,-144.262451171875,205.102355957031,-69.756103515625,145.228149414063,205.102355957031,-69.756103515625,-144.262451171875,185.90788269043,-69.756103515625,145.228149414063,185.90788269043,-69.756103515625
  1680. }
  1681. PolygonVertexIndex: *24 {
  1682. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1683. }
  1684. Edges: *12 {
  1685. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1686. }
  1687. GeometryVersion: 124
  1688. LayerElementNormal: 0 {
  1689. Version: 102
  1690. Name: ""
  1691. MappingInformationType: "ByPolygonVertex"
  1692. ReferenceInformationType: "Direct"
  1693. Normals: *72 {
  1694. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  1695. }
  1696. NormalsW: *24 {
  1697. 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
  1698. }
  1699. }
  1700. LayerElementBinormal: 0 {
  1701. Version: 102
  1702. Name: "map1"
  1703. MappingInformationType: "ByPolygonVertex"
  1704. ReferenceInformationType: "Direct"
  1705. Binormals: *72 {
  1706. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,-0,1,0,0,1,-0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
  1707. }
  1708. BinormalsW: *24 {
  1709. 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
  1710. }
  1711. }
  1712. LayerElementTangent: 0 {
  1713. Version: 102
  1714. Name: "map1"
  1715. MappingInformationType: "ByPolygonVertex"
  1716. ReferenceInformationType: "Direct"
  1717. Tangents: *72 {
  1718. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,0,-1,0,-0,-1,0,0,-1,0,-0,1,0,-0,1,0,-0,1,0,-0,1
  1719. }
  1720. TangentsW: *24 {
  1721. 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
  1722. }
  1723. }
  1724. LayerElementUV: 0 {
  1725. Version: 101
  1726. Name: "map1"
  1727. MappingInformationType: "ByPolygonVertex"
  1728. ReferenceInformationType: "IndexToDirect"
  1729. UV: *28 {
  1730. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1731. }
  1732. UVIndex: *24 {
  1733. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1734. }
  1735. }
  1736. LayerElementSmoothing: 0 {
  1737. Version: 102
  1738. Name: ""
  1739. MappingInformationType: "ByEdge"
  1740. ReferenceInformationType: "Direct"
  1741. Smoothing: *12 {
  1742. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1743. }
  1744. }
  1745. LayerElementMaterial: 0 {
  1746. Version: 101
  1747. Name: ""
  1748. MappingInformationType: "AllSame"
  1749. ReferenceInformationType: "IndexToDirect"
  1750. Materials: *1 {
  1751. a: 0
  1752. }
  1753. }
  1754. Layer: 0 {
  1755. Version: 100
  1756. LayerElement: {
  1757. Type: "LayerElementNormal"
  1758. TypedIndex: 0
  1759. }
  1760. LayerElement: {
  1761. Type: "LayerElementBinormal"
  1762. TypedIndex: 0
  1763. }
  1764. LayerElement: {
  1765. Type: "LayerElementTangent"
  1766. TypedIndex: 0
  1767. }
  1768. LayerElement: {
  1769. Type: "LayerElementMaterial"
  1770. TypedIndex: 0
  1771. }
  1772. LayerElement: {
  1773. Type: "LayerElementSmoothing"
  1774. TypedIndex: 0
  1775. }
  1776. LayerElement: {
  1777. Type: "LayerElementUV"
  1778. TypedIndex: 0
  1779. }
  1780. }
  1781. }
  1782. Geometry: 2267733762208, "Geometry::", "Mesh" {
  1783. Vertices: *24 {
  1784. a: -136.63525390625,-2.71590995788574,-66.859619140625,-122.207275390625,-2.71590995788574,-66.859619140625,-136.63525390625,213.107650756836,-66.859619140625,-122.207275390625,213.107650756836,-66.859619140625,-136.63525390625,213.107635498047,-83.2073974609375,-122.207275390625,213.107635498047,-83.2073974609375,-136.63525390625,-2.71590995788574,-83.2073974609375,-122.207275390625,-2.71590995788574,-83.2073974609375
  1785. }
  1786. PolygonVertexIndex: *24 {
  1787. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1788. }
  1789. Edges: *12 {
  1790. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1791. }
  1792. GeometryVersion: 124
  1793. LayerElementNormal: 0 {
  1794. Version: 102
  1795. Name: ""
  1796. MappingInformationType: "ByPolygonVertex"
  1797. ReferenceInformationType: "Direct"
  1798. Normals: *72 {
  1799. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,1,-1.03508466509084e-006,0,1,-1.03508466509084e-006,0,1,-1.03508466509084e-006,0,1,-1.03508466509084e-006,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0
  1800. }
  1801. NormalsW: *24 {
  1802. 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
  1803. }
  1804. }
  1805. LayerElementBinormal: 0 {
  1806. Version: 102
  1807. Name: "map1"
  1808. MappingInformationType: "ByPolygonVertex"
  1809. ReferenceInformationType: "Direct"
  1810. Binormals: *72 {
  1811. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-1.03508466509084e-006,-1,0,-1.03508466509084e-006,-1,0,-1.03508466509084e-006,-1,0,-1.03508466509084e-006,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,0,1,-4.66693052203482e-007,0,1,-9.33386104406964e-007,0,1,-4.66693080625191e-007,0,1,0,0,1,-4.66693052203482e-007,0,1,-9.33386161250382e-007,0,1,-4.66693052203482e-007
  1812. }
  1813. BinormalsW: *24 {
  1814. 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
  1815. }
  1816. }
  1817. LayerElementTangent: 0 {
  1818. Version: 102
  1819. Name: "map1"
  1820. MappingInformationType: "ByPolygonVertex"
  1821. ReferenceInformationType: "Direct"
  1822. Tangents: *72 {
  1823. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,-4.66693052203482e-007,-1,0,-9.33386104406964e-007,-1,0,-4.66693052203482e-007,-1,0,-0,1,0,4.66693052203482e-007,1,0,9.33386104406964e-007,1,0,4.66693052203482e-007,1
  1824. }
  1825. TangentsW: *24 {
  1826. 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
  1827. }
  1828. }
  1829. LayerElementUV: 0 {
  1830. Version: 101
  1831. Name: "map1"
  1832. MappingInformationType: "ByPolygonVertex"
  1833. ReferenceInformationType: "IndexToDirect"
  1834. UV: *28 {
  1835. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1836. }
  1837. UVIndex: *24 {
  1838. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1839. }
  1840. }
  1841. LayerElementSmoothing: 0 {
  1842. Version: 102
  1843. Name: ""
  1844. MappingInformationType: "ByEdge"
  1845. ReferenceInformationType: "Direct"
  1846. Smoothing: *12 {
  1847. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1848. }
  1849. }
  1850. LayerElementMaterial: 0 {
  1851. Version: 101
  1852. Name: ""
  1853. MappingInformationType: "AllSame"
  1854. ReferenceInformationType: "IndexToDirect"
  1855. Materials: *1 {
  1856. a: 0
  1857. }
  1858. }
  1859. Layer: 0 {
  1860. Version: 100
  1861. LayerElement: {
  1862. Type: "LayerElementNormal"
  1863. TypedIndex: 0
  1864. }
  1865. LayerElement: {
  1866. Type: "LayerElementBinormal"
  1867. TypedIndex: 0
  1868. }
  1869. LayerElement: {
  1870. Type: "LayerElementTangent"
  1871. TypedIndex: 0
  1872. }
  1873. LayerElement: {
  1874. Type: "LayerElementMaterial"
  1875. TypedIndex: 0
  1876. }
  1877. LayerElement: {
  1878. Type: "LayerElementSmoothing"
  1879. TypedIndex: 0
  1880. }
  1881. LayerElement: {
  1882. Type: "LayerElementUV"
  1883. TypedIndex: 0
  1884. }
  1885. }
  1886. }
  1887. Geometry: 2267733760160, "Geometry::", "Mesh" {
  1888. Vertices: *24 {
  1889. a: 121.945434570313,-2.71590995788574,-67.758056640625,136.373413085938,-2.71590995788574,-67.758056640625,121.945434570313,213.107650756836,-67.758056640625,136.373413085938,213.107650756836,-67.758056640625,121.945434570313,213.107635498047,-84.1058349609375,136.373413085938,213.107635498047,-84.1058349609375,121.945434570313,-2.71590995788574,-84.1058349609375,136.373413085938,-2.71590995788574,-84.1058349609375
  1890. }
  1891. PolygonVertexIndex: *24 {
  1892. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1893. }
  1894. Edges: *12 {
  1895. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1896. }
  1897. GeometryVersion: 124
  1898. LayerElementNormal: 0 {
  1899. Version: 102
  1900. Name: ""
  1901. MappingInformationType: "ByPolygonVertex"
  1902. ReferenceInformationType: "Direct"
  1903. Normals: *72 {
  1904. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,1,-1.03508466509084e-006,0,1,-1.03508466509084e-006,0,1,-1.03508466509084e-006,0,1,-1.03508466509084e-006,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0
  1905. }
  1906. NormalsW: *24 {
  1907. 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
  1908. }
  1909. }
  1910. LayerElementBinormal: 0 {
  1911. Version: 102
  1912. Name: "map1"
  1913. MappingInformationType: "ByPolygonVertex"
  1914. ReferenceInformationType: "Direct"
  1915. Binormals: *72 {
  1916. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-1.03508466509084e-006,-1,0,-1.03508466509084e-006,-1,0,-1.03508466509084e-006,-1,0,-1.03508466509084e-006,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,0,1,-4.66693052203482e-007,0,1,-9.33386104406964e-007,0,1,-4.66693080625191e-007,0,1,0,0,1,-4.66693052203482e-007,0,1,-9.33386161250382e-007,0,1,-4.66693052203482e-007
  1917. }
  1918. BinormalsW: *24 {
  1919. 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
  1920. }
  1921. }
  1922. LayerElementTangent: 0 {
  1923. Version: 102
  1924. Name: "map1"
  1925. MappingInformationType: "ByPolygonVertex"
  1926. ReferenceInformationType: "Direct"
  1927. Tangents: *72 {
  1928. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,-4.66693052203482e-007,-1,0,-9.33386104406964e-007,-1,0,-4.66693052203482e-007,-1,0,-0,1,0,4.66693052203482e-007,1,0,9.33386104406964e-007,1,0,4.66693052203482e-007,1
  1929. }
  1930. TangentsW: *24 {
  1931. 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
  1932. }
  1933. }
  1934. LayerElementUV: 0 {
  1935. Version: 101
  1936. Name: "map1"
  1937. MappingInformationType: "ByPolygonVertex"
  1938. ReferenceInformationType: "IndexToDirect"
  1939. UV: *28 {
  1940. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1941. }
  1942. UVIndex: *24 {
  1943. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1944. }
  1945. }
  1946. LayerElementSmoothing: 0 {
  1947. Version: 102
  1948. Name: ""
  1949. MappingInformationType: "ByEdge"
  1950. ReferenceInformationType: "Direct"
  1951. Smoothing: *12 {
  1952. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1953. }
  1954. }
  1955. LayerElementMaterial: 0 {
  1956. Version: 101
  1957. Name: ""
  1958. MappingInformationType: "AllSame"
  1959. ReferenceInformationType: "IndexToDirect"
  1960. Materials: *1 {
  1961. a: 0
  1962. }
  1963. }
  1964. Layer: 0 {
  1965. Version: 100
  1966. LayerElement: {
  1967. Type: "LayerElementNormal"
  1968. TypedIndex: 0
  1969. }
  1970. LayerElement: {
  1971. Type: "LayerElementBinormal"
  1972. TypedIndex: 0
  1973. }
  1974. LayerElement: {
  1975. Type: "LayerElementTangent"
  1976. TypedIndex: 0
  1977. }
  1978. LayerElement: {
  1979. Type: "LayerElementMaterial"
  1980. TypedIndex: 0
  1981. }
  1982. LayerElement: {
  1983. Type: "LayerElementSmoothing"
  1984. TypedIndex: 0
  1985. }
  1986. LayerElement: {
  1987. Type: "LayerElementUV"
  1988. TypedIndex: 0
  1989. }
  1990. }
  1991. }
  1992. Geometry: 2267733760672, "Geometry::", "Mesh" {
  1993. Vertices: *24 {
  1994. a: 121.945434570313,-2.71590995788574,85.006103515625,136.373413085938,-2.71590995788574,85.006103515625,121.945434570313,213.107650756836,85.006103515625,136.373413085938,213.107650756836,85.006103515625,121.945434570313,213.107635498047,68.658447265625,136.373413085938,213.107635498047,68.658447265625,121.945434570313,-2.71590995788574,68.658447265625,136.373413085938,-2.71590995788574,68.658447265625
  1995. }
  1996. PolygonVertexIndex: *24 {
  1997. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1998. }
  1999. Edges: *12 {
  2000. a: 0,2,6,10,3,1,7,5,11,9,15,13
  2001. }
  2002. GeometryVersion: 124
  2003. LayerElementNormal: 0 {
  2004. Version: 102
  2005. Name: ""
  2006. MappingInformationType: "ByPolygonVertex"
  2007. ReferenceInformationType: "Direct"
  2008. Normals: *72 {
  2009. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,1,-1.03509216842212e-006,0,1,-1.03509216842212e-006,0,1,-1.03509216842212e-006,0,1,-1.03509216842212e-006,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0
  2010. }
  2011. NormalsW: *24 {
  2012. 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
  2013. }
  2014. }
  2015. LayerElementBinormal: 0 {
  2016. Version: 102
  2017. Name: "map1"
  2018. MappingInformationType: "ByPolygonVertex"
  2019. ReferenceInformationType: "Direct"
  2020. Binormals: *72 {
  2021. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-1.03509216842212e-006,-1,0,-1.03509216842212e-006,-1,0,-1.03509216842212e-006,-1,0,-1.03509216842212e-006,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,0,1,-4.66696548073742e-007,0,1,-9.33393096147483e-007,0,1,-4.66696548073742e-007,0,1,0,0,1,-4.66696576495451e-007,0,1,-9.33393096147483e-007,0,1,-4.66696548073742e-007
  2022. }
  2023. BinormalsW: *24 {
  2024. 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
  2025. }
  2026. }
  2027. LayerElementTangent: 0 {
  2028. Version: 102
  2029. Name: "map1"
  2030. MappingInformationType: "ByPolygonVertex"
  2031. ReferenceInformationType: "Direct"
  2032. Tangents: *72 {
  2033. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,-4.66696548073742e-007,-1,0,-9.33393096147483e-007,-1,0,-4.66696548073742e-007,-1,0,-0,1,0,4.66696548073742e-007,1,0,9.33393096147483e-007,1,0,4.66696548073742e-007,1
  2034. }
  2035. TangentsW: *24 {
  2036. 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
  2037. }
  2038. }
  2039. LayerElementUV: 0 {
  2040. Version: 101
  2041. Name: "map1"
  2042. MappingInformationType: "ByPolygonVertex"
  2043. ReferenceInformationType: "IndexToDirect"
  2044. UV: *28 {
  2045. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  2046. }
  2047. UVIndex: *24 {
  2048. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  2049. }
  2050. }
  2051. LayerElementSmoothing: 0 {
  2052. Version: 102
  2053. Name: ""
  2054. MappingInformationType: "ByEdge"
  2055. ReferenceInformationType: "Direct"
  2056. Smoothing: *12 {
  2057. a: 0,0,0,0,0,0,0,0,0,0,0,0
  2058. }
  2059. }
  2060. LayerElementMaterial: 0 {
  2061. Version: 101
  2062. Name: ""
  2063. MappingInformationType: "AllSame"
  2064. ReferenceInformationType: "IndexToDirect"
  2065. Materials: *1 {
  2066. a: 0
  2067. }
  2068. }
  2069. Layer: 0 {
  2070. Version: 100
  2071. LayerElement: {
  2072. Type: "LayerElementNormal"
  2073. TypedIndex: 0
  2074. }
  2075. LayerElement: {
  2076. Type: "LayerElementBinormal"
  2077. TypedIndex: 0
  2078. }
  2079. LayerElement: {
  2080. Type: "LayerElementTangent"
  2081. TypedIndex: 0
  2082. }
  2083. LayerElement: {
  2084. Type: "LayerElementMaterial"
  2085. TypedIndex: 0
  2086. }
  2087. LayerElement: {
  2088. Type: "LayerElementSmoothing"
  2089. TypedIndex: 0
  2090. }
  2091. LayerElement: {
  2092. Type: "LayerElementUV"
  2093. TypedIndex: 0
  2094. }
  2095. }
  2096. }
  2097. Geometry: 2267733776032, "Geometry::", "Mesh" {
  2098. Vertices: *24 {
  2099. a: -135.794921875,-2.71590995788574,83.17041015625,-121.366943359375,-2.71590995788574,83.17041015625,-135.794921875,213.107650756836,83.17041015625,-121.366943359375,213.107650756836,83.17041015625,-135.794921875,213.107635498047,66.8226318359375,-121.366943359375,213.107635498047,66.8226318359375,-135.794921875,-2.71590995788574,66.8226318359375,-121.366943359375,-2.71590995788574,66.8226318359375
  2100. }
  2101. PolygonVertexIndex: *24 {
  2102. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  2103. }
  2104. Edges: *12 {
  2105. a: 0,2,6,10,3,1,7,5,11,9,15,13
  2106. }
  2107. GeometryVersion: 124
  2108. LayerElementNormal: 0 {
  2109. Version: 102
  2110. Name: ""
  2111. MappingInformationType: "ByPolygonVertex"
  2112. ReferenceInformationType: "Direct"
  2113. Normals: *72 {
  2114. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0.999999940395355,-1.03508409665665e-006,0,0.999999940395355,-1.03508409665665e-006,0,0.999999940395355,-1.03508409665665e-006,0,0.999999940395355,-1.03508409665665e-006,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  2115. }
  2116. NormalsW: *24 {
  2117. 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
  2118. }
  2119. }
  2120. LayerElementBinormal: 0 {
  2121. Version: 102
  2122. Name: "map1"
  2123. MappingInformationType: "ByPolygonVertex"
  2124. ReferenceInformationType: "Direct"
  2125. Binormals: *72 {
  2126. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-1.03508421034348e-006,-1,0,-1.03508421034348e-006,-1,0,-1.03508421034348e-006,-1,0,-1.03508421034348e-006,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,0,1,-4.66693052203482e-007,0,1,-9.33386104406964e-007,0,1,-4.66693052203482e-007,0,1,0,0,1,-4.66693052203482e-007,0,1,-9.33386104406964e-007,0,1,-4.66693052203482e-007
  2127. }
  2128. BinormalsW: *24 {
  2129. 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
  2130. }
  2131. }
  2132. LayerElementTangent: 0 {
  2133. Version: 102
  2134. Name: "map1"
  2135. MappingInformationType: "ByPolygonVertex"
  2136. ReferenceInformationType: "Direct"
  2137. Tangents: *72 {
  2138. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,-4.66693052203482e-007,-1,0,-9.33386104406964e-007,-1,0,-4.66693052203482e-007,-1,0,-0,1,0,4.66693052203482e-007,1,0,9.33386104406964e-007,1,0,4.66693052203482e-007,1
  2139. }
  2140. TangentsW: *24 {
  2141. 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
  2142. }
  2143. }
  2144. LayerElementUV: 0 {
  2145. Version: 101
  2146. Name: "map1"
  2147. MappingInformationType: "ByPolygonVertex"
  2148. ReferenceInformationType: "IndexToDirect"
  2149. UV: *28 {
  2150. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  2151. }
  2152. UVIndex: *24 {
  2153. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  2154. }
  2155. }
  2156. LayerElementSmoothing: 0 {
  2157. Version: 102
  2158. Name: ""
  2159. MappingInformationType: "ByEdge"
  2160. ReferenceInformationType: "Direct"
  2161. Smoothing: *12 {
  2162. a: 0,0,0,0,0,0,0,0,0,0,0,0
  2163. }
  2164. }
  2165. LayerElementMaterial: 0 {
  2166. Version: 101
  2167. Name: ""
  2168. MappingInformationType: "AllSame"
  2169. ReferenceInformationType: "IndexToDirect"
  2170. Materials: *1 {
  2171. a: 0
  2172. }
  2173. }
  2174. Layer: 0 {
  2175. Version: 100
  2176. LayerElement: {
  2177. Type: "LayerElementNormal"
  2178. TypedIndex: 0
  2179. }
  2180. LayerElement: {
  2181. Type: "LayerElementBinormal"
  2182. TypedIndex: 0
  2183. }
  2184. LayerElement: {
  2185. Type: "LayerElementTangent"
  2186. TypedIndex: 0
  2187. }
  2188. LayerElement: {
  2189. Type: "LayerElementMaterial"
  2190. TypedIndex: 0
  2191. }
  2192. LayerElement: {
  2193. Type: "LayerElementSmoothing"
  2194. TypedIndex: 0
  2195. }
  2196. LayerElement: {
  2197. Type: "LayerElementUV"
  2198. TypedIndex: 0
  2199. }
  2200. }
  2201. }
  2202. Geometry: 2267733761184, "Geometry::", "Mesh" {
  2203. Vertices: *24 {
  2204. a: 132.120239257813,108.729522705078,88.127197265625,139.272705078125,108.729522705078,88.127197265625,132.120239257813,127.232147216797,88.127197265625,139.272705078125,127.232147216797,88.127197265625,132.120239257813,136.538833618164,-89.0078125,139.272705078125,136.538833618164,-89.0078125,132.120239257813,119.486877441406,-89.0078125,139.272705078125,119.486877441406,-89.0078125
  2205. }
  2206. PolygonVertexIndex: *24 {
  2207. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  2208. }
  2209. Edges: *12 {
  2210. a: 0,2,6,10,3,1,7,5,11,9,15,13
  2211. }
  2212. GeometryVersion: 124
  2213. LayerElementNormal: 0 {
  2214. Version: 102
  2215. Name: ""
  2216. MappingInformationType: "ByPolygonVertex"
  2217. ReferenceInformationType: "Direct"
  2218. Normals: *72 {
  2219. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0.99862265586853,0.0524676963686943,0,0.99862265586853,0.0524676963686943,0,0.99862265586853,0.0524676963686943,0,0.99862265586853,0.0524676963686943,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,-0.99816107749939,-0.0606179498136044,0,-0.99816107749939,-0.0606179498136044,0,-0.99816107749939,-0.0606179498136044,0,-0.99816107749939,-0.0606179498136044,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  2220. }
  2221. NormalsW: *24 {
  2222. 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
  2223. }
  2224. }
  2225. LayerElementBinormal: 0 {
  2226. Version: 102
  2227. Name: "map1"
  2228. MappingInformationType: "ByPolygonVertex"
  2229. ReferenceInformationType: "Direct"
  2230. Binormals: *72 {
  2231. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,0.0524676963686943,-0.99862265586853,0,0.0524676963686943,-0.99862265586853,0,0.0524676963686943,-0.99862265586853,0,0.0524676963686943,-0.99862265586853,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.0606179498136044,0.99816107749939,0,-0.0606179498136044,0.99816107749939,0,-0.0606179498136044,0.99816107749939,0,-0.0606179498136044,0.99816107749939,-0,0.998161017894745,0.0606180131435394,-0,0.998400151729584,0.0565433278679848,-0,0.998622596263886,0.0524677075445652,-0,0.998400151729584,0.0565433278679848,0,0.998400151729584,0.0565433278679848,0,0.998161017894745,0.0606180131435394,0,0.998400151729584,0.0565433278679848,0,0.998622596263886,0.0524677075445652
  2232. }
  2233. BinormalsW: *24 {
  2234. 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
  2235. }
  2236. }
  2237. LayerElementTangent: 0 {
  2238. Version: 102
  2239. Name: "map1"
  2240. MappingInformationType: "ByPolygonVertex"
  2241. ReferenceInformationType: "Direct"
  2242. Tangents: *72 {
  2243. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0,0.0606180131435394,-0.998161017894745,0,0.0565433353185654,-0.998400270938873,0,0.0524677149951458,-0.998622715473175,0,0.0565433353185654,-0.998400270938873,0,-0.0565433353185654,0.998400270938873,0,-0.0606180131435394,0.998161017894745,0,-0.0565433353185654,0.998400270938873,0,-0.0524677149951458,0.998622715473175
  2244. }
  2245. TangentsW: *24 {
  2246. 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
  2247. }
  2248. }
  2249. LayerElementUV: 0 {
  2250. Version: 101
  2251. Name: "map1"
  2252. MappingInformationType: "ByPolygonVertex"
  2253. ReferenceInformationType: "IndexToDirect"
  2254. UV: *28 {
  2255. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  2256. }
  2257. UVIndex: *24 {
  2258. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  2259. }
  2260. }
  2261. LayerElementSmoothing: 0 {
  2262. Version: 102
  2263. Name: ""
  2264. MappingInformationType: "ByEdge"
  2265. ReferenceInformationType: "Direct"
  2266. Smoothing: *12 {
  2267. a: 0,0,0,0,0,0,0,0,0,0,0,0
  2268. }
  2269. }
  2270. LayerElementMaterial: 0 {
  2271. Version: 101
  2272. Name: ""
  2273. MappingInformationType: "AllSame"
  2274. ReferenceInformationType: "IndexToDirect"
  2275. Materials: *1 {
  2276. a: 0
  2277. }
  2278. }
  2279. Layer: 0 {
  2280. Version: 100
  2281. LayerElement: {
  2282. Type: "LayerElementNormal"
  2283. TypedIndex: 0
  2284. }
  2285. LayerElement: {
  2286. Type: "LayerElementBinormal"
  2287. TypedIndex: 0
  2288. }
  2289. LayerElement: {
  2290. Type: "LayerElementTangent"
  2291. TypedIndex: 0
  2292. }
  2293. LayerElement: {
  2294. Type: "LayerElementMaterial"
  2295. TypedIndex: 0
  2296. }
  2297. LayerElement: {
  2298. Type: "LayerElementSmoothing"
  2299. TypedIndex: 0
  2300. }
  2301. LayerElement: {
  2302. Type: "LayerElementUV"
  2303. TypedIndex: 0
  2304. }
  2305. }
  2306. }
  2307. Geometry: 2267733747360, "Geometry::", "Mesh" {
  2308. Vertices: *24 {
  2309. a: -139.827026367188,105.326995849609,88.127197265625,-131.455078125,105.326995849609,88.127197265625,-139.827026367188,144.397476196289,88.127197265625,-131.455078125,144.397476196289,88.127197265625,-139.827026367188,141.100341796875,-89.0078125,-131.455078125,141.100341796875,-89.0078125,-139.827026367188,107.877006530762,-89.0078125,-131.455078125,107.877006530762,-89.0078125
  2310. }
  2311. PolygonVertexIndex: *24 {
  2312. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  2313. }
  2314. Edges: *12 {
  2315. a: 0,2,6,10,3,1,7,5,11,9,15,13
  2316. }
  2317. GeometryVersion: 124
  2318. LayerElementNormal: 0 {
  2319. Version: 102
  2320. Name: ""
  2321. MappingInformationType: "ByPolygonVertex"
  2322. ReferenceInformationType: "Direct"
  2323. Normals: *72 {
  2324. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0.999826788902283,-0.0186104290187359,0,0.999826788902283,-0.0186104290187359,0,0.999826788902283,-0.0186104290187359,0,0.999826788902283,-0.0186104290187359,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.99989640712738,-0.0143943401053548,0,-0.99989640712738,-0.0143943401053548,0,-0.99989640712738,-0.0143943401053548,0,-0.99989640712738,-0.0143943401053548,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0
  2325. }
  2326. NormalsW: *24 {
  2327. 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
  2328. }
  2329. }
  2330. LayerElementBinormal: 0 {
  2331. Version: 102
  2332. Name: "map1"
  2333. MappingInformationType: "ByPolygonVertex"
  2334. ReferenceInformationType: "Direct"
  2335. Binormals: *72 {
  2336. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-0.0186104290187359,-0.999826788902283,0,-0.0186104290187359,-0.999826788902283,0,-0.0186104290187359,-0.999826788902283,0,-0.0186104290187359,-0.999826788902283,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.0143943401053548,0.99989640712738,0,-0.0143943401053548,0.99989640712738,0,-0.0143943401053548,0.99989640712738,0,-0.0143943401053548,0.99989640712738,0,0.999997854232788,-0.00210833176970482,-0,0.999896466732025,0.0143943689763546,0,0.999997854232788,-0.00210833176970482,0,0.999826788902283,-0.0186104569584131,0,0.999896466732025,0.0143943689763546,0,0.999997854232788,-0.00210833176970482,0,0.999826788902283,-0.0186104569584131,0,0.999997854232788,-0.00210833176970482
  2337. }
  2338. BinormalsW: *24 {
  2339. 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
  2340. }
  2341. }
  2342. LayerElementTangent: 0 {
  2343. Version: 102
  2344. Name: "map1"
  2345. MappingInformationType: "ByPolygonVertex"
  2346. ReferenceInformationType: "Direct"
  2347. Tangents: *72 {
  2348. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.00210833176970482,-0.999997854232788,-0,0.014394368045032,-0.99989640712738,0,-0.00210833176970482,-0.999997854232788,0,-0.0186104569584131,-0.999826788902283,0,-0.014394368045032,0.99989640712738,0,0.00210833176970482,0.999997854232788,0,0.0186104569584131,0.999826788902283,0,0.00210833176970482,0.999997854232788
  2349. }
  2350. TangentsW: *24 {
  2351. 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
  2352. }
  2353. }
  2354. LayerElementUV: 0 {
  2355. Version: 101
  2356. Name: "map1"
  2357. MappingInformationType: "ByPolygonVertex"
  2358. ReferenceInformationType: "IndexToDirect"
  2359. UV: *28 {
  2360. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  2361. }
  2362. UVIndex: *24 {
  2363. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  2364. }
  2365. }
  2366. LayerElementSmoothing: 0 {
  2367. Version: 102
  2368. Name: ""
  2369. MappingInformationType: "ByEdge"
  2370. ReferenceInformationType: "Direct"
  2371. Smoothing: *12 {
  2372. a: 0,0,0,0,0,0,0,0,0,0,0,0
  2373. }
  2374. }
  2375. LayerElementMaterial: 0 {
  2376. Version: 101
  2377. Name: ""
  2378. MappingInformationType: "AllSame"
  2379. ReferenceInformationType: "IndexToDirect"
  2380. Materials: *1 {
  2381. a: 0
  2382. }
  2383. }
  2384. Layer: 0 {
  2385. Version: 100
  2386. LayerElement: {
  2387. Type: "LayerElementNormal"
  2388. TypedIndex: 0
  2389. }
  2390. LayerElement: {
  2391. Type: "LayerElementBinormal"
  2392. TypedIndex: 0
  2393. }
  2394. LayerElement: {
  2395. Type: "LayerElementTangent"
  2396. TypedIndex: 0
  2397. }
  2398. LayerElement: {
  2399. Type: "LayerElementMaterial"
  2400. TypedIndex: 0
  2401. }
  2402. LayerElement: {
  2403. Type: "LayerElementSmoothing"
  2404. TypedIndex: 0
  2405. }
  2406. LayerElement: {
  2407. Type: "LayerElementUV"
  2408. TypedIndex: 0
  2409. }
  2410. }
  2411. }
  2412. Geometry: 2267733761696, "Geometry::", "Mesh" {
  2413. Vertices: *24 {
  2414. a: -135.848022460938,24.3981399536133,68.399658203125,-124.61962890625,24.3981399536133,68.399658203125,-135.848022460938,39.0370330810547,68.399658203125,-124.61962890625,39.0370330810547,68.399658203125,-135.848022460938,39.0370330810547,-63.4156494140625,-124.61962890625,39.0370330810547,-63.4156494140625,-135.848022460938,24.3981399536133,-63.4156494140625,-124.61962890625,24.3981399536133,-63.4156494140625
  2415. }
  2416. PolygonVertexIndex: *24 {
  2417. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  2418. }
  2419. Edges: *12 {
  2420. a: 0,2,6,10,3,1,7,5,11,9,15,13
  2421. }
  2422. GeometryVersion: 124
  2423. LayerElementNormal: 0 {
  2424. Version: 102
  2425. Name: ""
  2426. MappingInformationType: "ByPolygonVertex"
  2427. ReferenceInformationType: "Direct"
  2428. Normals: *72 {
  2429. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  2430. }
  2431. NormalsW: *24 {
  2432. 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
  2433. }
  2434. }
  2435. LayerElementBinormal: 0 {
  2436. Version: 102
  2437. Name: "map1"
  2438. MappingInformationType: "ByPolygonVertex"
  2439. ReferenceInformationType: "Direct"
  2440. Binormals: *72 {
  2441. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,-0,1,0,0,1,-0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
  2442. }
  2443. BinormalsW: *24 {
  2444. 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
  2445. }
  2446. }
  2447. LayerElementTangent: 0 {
  2448. Version: 102
  2449. Name: "map1"
  2450. MappingInformationType: "ByPolygonVertex"
  2451. ReferenceInformationType: "Direct"
  2452. Tangents: *72 {
  2453. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,0,-1,0,-0,-1,0,0,-1,0,-0,1,0,-0,1,0,-0,1,0,-0,1
  2454. }
  2455. TangentsW: *24 {
  2456. 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
  2457. }
  2458. }
  2459. LayerElementUV: 0 {
  2460. Version: 101
  2461. Name: "map1"
  2462. MappingInformationType: "ByPolygonVertex"
  2463. ReferenceInformationType: "IndexToDirect"
  2464. UV: *28 {
  2465. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  2466. }
  2467. UVIndex: *24 {
  2468. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  2469. }
  2470. }
  2471. LayerElementSmoothing: 0 {
  2472. Version: 102
  2473. Name: ""
  2474. MappingInformationType: "ByEdge"
  2475. ReferenceInformationType: "Direct"
  2476. Smoothing: *12 {
  2477. a: 0,0,0,0,0,0,0,0,0,0,0,0
  2478. }
  2479. }
  2480. LayerElementMaterial: 0 {
  2481. Version: 101
  2482. Name: ""
  2483. MappingInformationType: "AllSame"
  2484. ReferenceInformationType: "IndexToDirect"
  2485. Materials: *1 {
  2486. a: 0
  2487. }
  2488. }
  2489. Layer: 0 {
  2490. Version: 100
  2491. LayerElement: {
  2492. Type: "LayerElementNormal"
  2493. TypedIndex: 0
  2494. }
  2495. LayerElement: {
  2496. Type: "LayerElementBinormal"
  2497. TypedIndex: 0
  2498. }
  2499. LayerElement: {
  2500. Type: "LayerElementTangent"
  2501. TypedIndex: 0
  2502. }
  2503. LayerElement: {
  2504. Type: "LayerElementMaterial"
  2505. TypedIndex: 0
  2506. }
  2507. LayerElement: {
  2508. Type: "LayerElementSmoothing"
  2509. TypedIndex: 0
  2510. }
  2511. LayerElement: {
  2512. Type: "LayerElementUV"
  2513. TypedIndex: 0
  2514. }
  2515. }
  2516. }
  2517. Geometry: 2267733747872, "Geometry::", "Mesh" {
  2518. Vertices: *24 {
  2519. a: 123.262573242188,24.3981399536133,68.399658203125,134.490966796875,24.3981399536133,68.399658203125,123.262573242188,39.0370330810547,68.399658203125,134.490966796875,39.0370330810547,68.399658203125,123.262573242188,39.0370330810547,-63.4156494140625,134.490966796875,39.0370330810547,-63.4156494140625,123.262573242188,24.3981399536133,-63.4156494140625,134.490966796875,24.3981399536133,-63.4156494140625
  2520. }
  2521. PolygonVertexIndex: *24 {
  2522. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  2523. }
  2524. Edges: *12 {
  2525. a: 0,2,6,10,3,1,7,5,11,9,15,13
  2526. }
  2527. GeometryVersion: 124
  2528. LayerElementNormal: 0 {
  2529. Version: 102
  2530. Name: ""
  2531. MappingInformationType: "ByPolygonVertex"
  2532. ReferenceInformationType: "Direct"
  2533. Normals: *72 {
  2534. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  2535. }
  2536. NormalsW: *24 {
  2537. 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
  2538. }
  2539. }
  2540. LayerElementBinormal: 0 {
  2541. Version: 102
  2542. Name: "map1"
  2543. MappingInformationType: "ByPolygonVertex"
  2544. ReferenceInformationType: "Direct"
  2545. Binormals: *72 {
  2546. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,-0,1,0,0,1,-0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0
  2547. }
  2548. BinormalsW: *24 {
  2549. 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
  2550. }
  2551. }
  2552. LayerElementTangent: 0 {
  2553. Version: 102
  2554. Name: "map1"
  2555. MappingInformationType: "ByPolygonVertex"
  2556. ReferenceInformationType: "Direct"
  2557. Tangents: *72 {
  2558. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,0,-1,0,-0,-1,0,0,-1,0,-0,1,0,-0,1,0,-0,1,0,-0,1
  2559. }
  2560. TangentsW: *24 {
  2561. 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
  2562. }
  2563. }
  2564. LayerElementUV: 0 {
  2565. Version: 101
  2566. Name: "map1"
  2567. MappingInformationType: "ByPolygonVertex"
  2568. ReferenceInformationType: "IndexToDirect"
  2569. UV: *28 {
  2570. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  2571. }
  2572. UVIndex: *24 {
  2573. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  2574. }
  2575. }
  2576. LayerElementSmoothing: 0 {
  2577. Version: 102
  2578. Name: ""
  2579. MappingInformationType: "ByEdge"
  2580. ReferenceInformationType: "Direct"
  2581. Smoothing: *12 {
  2582. a: 0,0,0,0,0,0,0,0,0,0,0,0
  2583. }
  2584. }
  2585. LayerElementMaterial: 0 {
  2586. Version: 101
  2587. Name: ""
  2588. MappingInformationType: "AllSame"
  2589. ReferenceInformationType: "IndexToDirect"
  2590. Materials: *1 {
  2591. a: 0
  2592. }
  2593. }
  2594. Layer: 0 {
  2595. Version: 100
  2596. LayerElement: {
  2597. Type: "LayerElementNormal"
  2598. TypedIndex: 0
  2599. }
  2600. LayerElement: {
  2601. Type: "LayerElementBinormal"
  2602. TypedIndex: 0
  2603. }
  2604. LayerElement: {
  2605. Type: "LayerElementTangent"
  2606. TypedIndex: 0
  2607. }
  2608. LayerElement: {
  2609. Type: "LayerElementMaterial"
  2610. TypedIndex: 0
  2611. }
  2612. LayerElement: {
  2613. Type: "LayerElementSmoothing"
  2614. TypedIndex: 0
  2615. }
  2616. LayerElement: {
  2617. Type: "LayerElementUV"
  2618. TypedIndex: 0
  2619. }
  2620. }
  2621. }
  2622. Model: 2268468982464, "Model::SM_Rack_02", "Null" {
  2623. Version: 232
  2624. Properties70: {
  2625. P: "RotationActive", "bool", "", "",1
  2626. P: "InheritType", "enum", "", "",1
  2627. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2628. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2629. }
  2630. Shading: Y
  2631. Culling: "CullingOff"
  2632. }
  2633. Model: 2268469014944, "Model::LOD_Group_SM_Rack_02", "LodGroup" {
  2634. Version: 232
  2635. Properties70: {
  2636. P: "RotationActive", "bool", "", "",1
  2637. P: "InheritType", "enum", "", "",1
  2638. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2639. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2640. }
  2641. Shading: Y
  2642. Culling: "CullingOff"
  2643. }
  2644. Model: 2268468984784, "Model::SM_Rack_02_LOD0", "Mesh" {
  2645. Version: 232
  2646. Properties70: {
  2647. P: "RotationActive", "bool", "", "",1
  2648. P: "InheritType", "enum", "", "",1
  2649. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2650. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2651. P: "currentUVSet", "KString", "", "U", "map1"
  2652. }
  2653. Shading: T
  2654. Culling: "CullingOff"
  2655. }
  2656. Model: 2268469017264, "Model::SM_Rack_02_LOD1", "Mesh" {
  2657. Version: 232
  2658. Properties70: {
  2659. P: "RotationPivot", "Vector3D", "Vector", "",0,-7.57306469012171e-029,0
  2660. P: "ScalingPivot", "Vector3D", "Vector", "",0,-7.57306469012171e-029,0
  2661. P: "RotationActive", "bool", "", "",1
  2662. P: "InheritType", "enum", "", "",1
  2663. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2664. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2665. P: "currentUVSet", "KString", "", "U", "map1"
  2666. }
  2667. Shading: T
  2668. Culling: "CullingOff"
  2669. }
  2670. Model: 2268468987104, "Model::SM_Rack_02_LOD2", "Mesh" {
  2671. Version: 232
  2672. Properties70: {
  2673. P: "RotationPivot", "Vector3D", "Vector", "",0,-7.57306469012171e-029,0
  2674. P: "ScalingPivot", "Vector3D", "Vector", "",0,-7.57306469012171e-029,0
  2675. P: "RotationActive", "bool", "", "",1
  2676. P: "InheritType", "enum", "", "",1
  2677. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2678. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2679. P: "currentUVSet", "KString", "", "U", "map1"
  2680. }
  2681. Shading: T
  2682. Culling: "CullingOff"
  2683. }
  2684. Model: 2268469042784, "Model::UCX_SM_Rack_02_LOD0_010", "Mesh" {
  2685. Version: 232
  2686. Properties70: {
  2687. P: "RotationActive", "bool", "", "",1
  2688. P: "InheritType", "enum", "", "",1
  2689. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2690. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2691. P: "currentUVSet", "KString", "", "U", "map1"
  2692. }
  2693. Shading: T
  2694. Culling: "CullingOff"
  2695. }
  2696. Model: 2268469045104, "Model::UCX_SM_Rack_02_LOD0_01", "Mesh" {
  2697. Version: 232
  2698. Properties70: {
  2699. P: "RotationActive", "bool", "", "",1
  2700. P: "InheritType", "enum", "", "",1
  2701. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2702. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2703. P: "currentUVSet", "KString", "", "U", "map1"
  2704. }
  2705. Shading: T
  2706. Culling: "CullingOff"
  2707. }
  2708. Model: 2268469047424, "Model::UCX_SM_Rack_02_LOD0_02", "Mesh" {
  2709. Version: 232
  2710. Properties70: {
  2711. P: "RotationActive", "bool", "", "",1
  2712. P: "InheritType", "enum", "", "",1
  2713. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2714. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2715. P: "currentUVSet", "KString", "", "U", "map1"
  2716. }
  2717. Shading: T
  2718. Culling: "CullingOff"
  2719. }
  2720. Model: 2268469019584, "Model::UCX_SM_Rack_02_LOD0_03", "Mesh" {
  2721. Version: 232
  2722. Properties70: {
  2723. P: "RotationActive", "bool", "", "",1
  2724. P: "InheritType", "enum", "", "",1
  2725. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2726. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2727. P: "currentUVSet", "KString", "", "U", "map1"
  2728. }
  2729. Shading: T
  2730. Culling: "CullingOff"
  2731. }
  2732. Model: 2268469026544, "Model::UCX_SM_Rack_02_LOD0_04", "Mesh" {
  2733. Version: 232
  2734. Properties70: {
  2735. P: "RotationActive", "bool", "", "",1
  2736. P: "InheritType", "enum", "", "",1
  2737. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2738. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2739. P: "currentUVSet", "KString", "", "U", "map1"
  2740. }
  2741. Shading: T
  2742. Culling: "CullingOff"
  2743. }
  2744. Model: 2268469024224, "Model::UCX_SM_Rack_02_LOD0_05", "Mesh" {
  2745. Version: 232
  2746. Properties70: {
  2747. P: "RotationActive", "bool", "", "",1
  2748. P: "InheritType", "enum", "", "",1
  2749. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2750. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2751. P: "currentUVSet", "KString", "", "U", "map1"
  2752. }
  2753. Shading: T
  2754. Culling: "CullingOff"
  2755. }
  2756. Model: 2268469028864, "Model::UCX_SM_Rack_02_LOD0_06", "Mesh" {
  2757. Version: 232
  2758. Properties70: {
  2759. P: "RotationActive", "bool", "", "",1
  2760. P: "InheritType", "enum", "", "",1
  2761. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2762. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2763. P: "currentUVSet", "KString", "", "U", "map1"
  2764. }
  2765. Shading: T
  2766. Culling: "CullingOff"
  2767. }
  2768. Model: 2268468859504, "Model::UCX_SM_Rack_02_LOD0_07", "Mesh" {
  2769. Version: 232
  2770. Properties70: {
  2771. P: "RotationActive", "bool", "", "",1
  2772. P: "InheritType", "enum", "", "",1
  2773. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2774. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2775. P: "currentUVSet", "KString", "", "U", "map1"
  2776. }
  2777. Shading: T
  2778. Culling: "CullingOff"
  2779. }
  2780. Model: 2268468891984, "Model::UCX_SM_Rack_02_LOD0_08", "Mesh" {
  2781. Version: 232
  2782. Properties70: {
  2783. P: "RotationActive", "bool", "", "",1
  2784. P: "InheritType", "enum", "", "",1
  2785. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2786. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2787. P: "currentUVSet", "KString", "", "U", "map1"
  2788. }
  2789. Shading: T
  2790. Culling: "CullingOff"
  2791. }
  2792. Model: 2268468894304, "Model::UCX_SM_Rack_02_LOD0_09", "Mesh" {
  2793. Version: 232
  2794. Properties70: {
  2795. P: "RotationActive", "bool", "", "",1
  2796. P: "InheritType", "enum", "", "",1
  2797. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2798. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2799. P: "currentUVSet", "KString", "", "U", "map1"
  2800. }
  2801. Shading: T
  2802. Culling: "CullingOff"
  2803. }
  2804. Material: 2267913037280, "Material::MI_Wood_01", "" {
  2805. Version: 102
  2806. ShadingModel: "phong"
  2807. MultiLayer: 0
  2808. Properties70: {
  2809. P: "AmbientColor", "Color", "", "A",0,0,0
  2810. P: "DiffuseColor", "Color", "", "A",1,1,1
  2811. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  2812. P: "TransparencyFactor", "Number", "", "A",1
  2813. P: "SpecularColor", "Color", "", "A",0,0,0
  2814. P: "ReflectionFactor", "Number", "", "A",0.5
  2815. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  2816. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  2817. P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
  2818. P: "Specular", "Vector3D", "Vector", "",0,0,0
  2819. P: "Shininess", "double", "Number", "",20
  2820. P: "Opacity", "double", "Number", "",1
  2821. P: "Reflectivity", "double", "Number", "",0
  2822. }
  2823. }
  2824. Material: 2267913044480, "Material::phong1", "" {
  2825. Version: 102
  2826. ShadingModel: "phong"
  2827. MultiLayer: 0
  2828. Properties70: {
  2829. P: "AmbientColor", "Color", "", "A",0,0,0
  2830. P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
  2831. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  2832. P: "TransparencyFactor", "Number", "", "A",1
  2833. P: "SpecularColor", "Color", "", "A",0,0,0
  2834. P: "ReflectionFactor", "Number", "", "A",0.5
  2835. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  2836. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  2837. P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
  2838. P: "Specular", "Vector3D", "Vector", "",0,0,0
  2839. P: "Shininess", "double", "Number", "",20
  2840. P: "Opacity", "double", "Number", "",1
  2841. P: "Reflectivity", "double", "Number", "",0
  2842. }
  2843. }
  2844. Video: 2268161667552, "Video::file93", "Clip" {
  2845. Type: "Clip"
  2846. Properties70: {
  2847. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
  2848. }
  2849. UseMipMap: 0
  2850. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
  2851. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
  2852. }
  2853. Video: 2268161665152, "Video::file94", "Clip" {
  2854. Type: "Clip"
  2855. Properties70: {
  2856. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
  2857. }
  2858. UseMipMap: 0
  2859. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
  2860. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
  2861. }
  2862. Texture: 2267913051200, "Texture::file93", "" {
  2863. Type: "TextureVideoClip"
  2864. Version: 202
  2865. TextureName: "Texture::file93"
  2866. Properties70: {
  2867. P: "CurrentTextureBlendMode", "enum", "", "",0
  2868. P: "UVSet", "KString", "", "", "UVmap_0"
  2869. P: "UseMaterial", "bool", "", "",1
  2870. }
  2871. Media: "Video::file93"
  2872. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
  2873. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
  2874. ModelUVTranslation: 0,0
  2875. ModelUVScaling: 1,1
  2876. Texture_Alpha_Source: "None"
  2877. Cropping: 0,0,0,0
  2878. }
  2879. Texture: 2267913041120, "Texture::file94", "" {
  2880. Type: "TextureVideoClip"
  2881. Version: 202
  2882. TextureName: "Texture::file94"
  2883. Properties70: {
  2884. P: "CurrentTextureBlendMode", "enum", "", "",0
  2885. P: "UVSet", "KString", "", "", "UVmap_0"
  2886. P: "UseMaterial", "bool", "", "",1
  2887. }
  2888. Media: "Video::file94"
  2889. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
  2890. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
  2891. ModelUVTranslation: 0,0
  2892. ModelUVScaling: 1,1
  2893. Texture_Alpha_Source: "None"
  2894. Cropping: 0,0,0,0
  2895. }
  2896. Texture: 2267913045440, "Texture::file55", "" {
  2897. Type: "TextureVideoClip"
  2898. Version: 202
  2899. TextureName: "Texture::file55"
  2900. Properties70: {
  2901. P: "CurrentTextureBlendMode", "enum", "", "",0
  2902. P: "UVSet", "KString", "", "", "map1"
  2903. P: "UseMaterial", "bool", "", "",1
  2904. }
  2905. Media: ""
  2906. FileName: ""
  2907. RelativeFilename: ""
  2908. ModelUVTranslation: 0,0
  2909. ModelUVScaling: 1,1
  2910. Texture_Alpha_Source: "None"
  2911. Cropping: 0,0,0,0
  2912. }
  2913. AnimationStack: 2268201127392, "AnimStack::Take 001", "" {
  2914. Properties70: {
  2915. P: "LocalStart", "KTime", "Time", "",1539538600
  2916. P: "LocalStop", "KTime", "Time", "",46186158000
  2917. P: "ReferenceStart", "KTime", "Time", "",1539538600
  2918. P: "ReferenceStop", "KTime", "Time", "",46186158000
  2919. }
  2920. }
  2921. AnimationLayer: 2268260245680, "AnimLayer::BaseLayer", "" {
  2922. }
  2923. }
  2924. ; Object connections
  2925. ;------------------------------------------------------------------
  2926. Connections: {
  2927. ;Model::SM_Rack_02, Model::RootNode
  2928. C: "OO",2268468982464,0
  2929. ;AnimLayer::BaseLayer, AnimStack::Take 001
  2930. C: "OO",2268260245680,2268201127392
  2931. ;NodeAttribute::, Model::SM_Rack_02
  2932. C: "OO",2268336199136,2268468982464
  2933. ;Model::LOD_Group_SM_Rack_02, Model::SM_Rack_02
  2934. C: "OO",2268469014944,2268468982464
  2935. ;Model::UCX_SM_Rack_02_LOD0_010, Model::SM_Rack_02
  2936. C: "OO",2268469042784,2268468982464
  2937. ;Model::UCX_SM_Rack_02_LOD0_01, Model::SM_Rack_02
  2938. C: "OO",2268469045104,2268468982464
  2939. ;Model::UCX_SM_Rack_02_LOD0_02, Model::SM_Rack_02
  2940. C: "OO",2268469047424,2268468982464
  2941. ;Model::UCX_SM_Rack_02_LOD0_03, Model::SM_Rack_02
  2942. C: "OO",2268469019584,2268468982464
  2943. ;Model::UCX_SM_Rack_02_LOD0_04, Model::SM_Rack_02
  2944. C: "OO",2268469026544,2268468982464
  2945. ;Model::UCX_SM_Rack_02_LOD0_05, Model::SM_Rack_02
  2946. C: "OO",2268469024224,2268468982464
  2947. ;Model::UCX_SM_Rack_02_LOD0_06, Model::SM_Rack_02
  2948. C: "OO",2268469028864,2268468982464
  2949. ;Model::UCX_SM_Rack_02_LOD0_07, Model::SM_Rack_02
  2950. C: "OO",2268468859504,2268468982464
  2951. ;Model::UCX_SM_Rack_02_LOD0_08, Model::SM_Rack_02
  2952. C: "OO",2268468891984,2268468982464
  2953. ;Model::UCX_SM_Rack_02_LOD0_09, Model::SM_Rack_02
  2954. C: "OO",2268468894304,2268468982464
  2955. ;NodeAttribute::, Model::LOD_Group_SM_Rack_02
  2956. C: "OO",2268523567472,2268469014944
  2957. ;Model::SM_Rack_02_LOD0, Model::LOD_Group_SM_Rack_02
  2958. C: "OO",2268468984784,2268469014944
  2959. ;Model::SM_Rack_02_LOD1, Model::LOD_Group_SM_Rack_02
  2960. C: "OO",2268469017264,2268469014944
  2961. ;Model::SM_Rack_02_LOD2, Model::LOD_Group_SM_Rack_02
  2962. C: "OO",2268468987104,2268469014944
  2963. ;Texture::file93, Material::MI_Wood_01
  2964. C: "OP",2267913051200,2267913037280, "DiffuseColor"
  2965. ;Texture::file94, Material::MI_Wood_01
  2966. C: "OP",2267913041120,2267913037280, "NormalMap"
  2967. ;Video::file93, Texture::file93
  2968. C: "OO",2268161667552,2267913051200
  2969. ;Video::file94, Texture::file94
  2970. C: "OO",2268161665152,2267913041120
  2971. ;Geometry::, Model::SM_Rack_02_LOD0
  2972. C: "OO",2267733746848,2268468984784
  2973. ;Material::MI_Wood_01, Model::SM_Rack_02_LOD0
  2974. C: "OO",2267913037280,2268468984784
  2975. ;Geometry::, Model::SM_Rack_02_LOD1
  2976. C: "OO",2267733767840,2268469017264
  2977. ;Material::MI_Wood_01, Model::SM_Rack_02_LOD1
  2978. C: "OO",2267913037280,2268469017264
  2979. ;Geometry::, Model::SM_Rack_02_LOD2
  2980. C: "OO",2267733758112,2268468987104
  2981. ;Material::MI_Wood_01, Model::SM_Rack_02_LOD2
  2982. C: "OO",2267913037280,2268468987104
  2983. ;Texture::file55, Material::phong1
  2984. C: "OP",2267913045440,2267913044480, "NormalMap"
  2985. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_010
  2986. C: "OO",2267733746336,2268469042784
  2987. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_010
  2988. C: "OO",2267913044480,2268469042784
  2989. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_01
  2990. C: "OO",2267733751456,2268469045104
  2991. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_01
  2992. C: "OO",2267913044480,2268469045104
  2993. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_02
  2994. C: "OO",2267733762208,2268469047424
  2995. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_02
  2996. C: "OO",2267913044480,2268469047424
  2997. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_03
  2998. C: "OO",2267733760160,2268469019584
  2999. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_03
  3000. C: "OO",2267913044480,2268469019584
  3001. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_04
  3002. C: "OO",2267733760672,2268469026544
  3003. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_04
  3004. C: "OO",2267913044480,2268469026544
  3005. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_05
  3006. C: "OO",2267733776032,2268469024224
  3007. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_05
  3008. C: "OO",2267913044480,2268469024224
  3009. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_06
  3010. C: "OO",2267733761184,2268469028864
  3011. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_06
  3012. C: "OO",2267913044480,2268469028864
  3013. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_07
  3014. C: "OO",2267733747360,2268468859504
  3015. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_07
  3016. C: "OO",2267913044480,2268468859504
  3017. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_08
  3018. C: "OO",2267733761696,2268468891984
  3019. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_08
  3020. C: "OO",2267913044480,2268468891984
  3021. ;Geometry::, Model::UCX_SM_Rack_02_LOD0_09
  3022. C: "OO",2267733747872,2268468894304
  3023. ;Material::phong1, Model::UCX_SM_Rack_02_LOD0_09
  3024. C: "OO",2267913044480,2268468894304
  3025. }
  3026. ;Takes section
  3027. ;----------------------------------------------------
  3028. Takes: {
  3029. Current: "Take 001"
  3030. Take: "Take 001" {
  3031. FileName: "Take_001.tak"
  3032. LocalTime: 1539538600,46186158000
  3033. ReferenceTime: 1539538600,46186158000
  3034. }
  3035. }