SM_Wall_Thick_Curved_01.fbx 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  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: 32
  15. Second: 35
  16. Millisecond: 745
  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_Wall_Thick_Curved_01.fbx"
  33. P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Wall_Thick_Curved_01.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:32:35.745"
  39. P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Wall_Thick_Curved_01.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:32:35.745"
  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: 2268255713152, "", "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: 33
  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: 1
  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: 12
  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: 11
  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: 2
  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: 2268336200368, "NodeAttribute::", "Null" {
  307. Properties70: {
  308. P: "Look", "enum", "", "",0
  309. }
  310. TypeFlags: "Null"
  311. }
  312. Geometry: 2267733789344, "Geometry::", "Mesh" {
  313. Vertices: *24 {
  314. a: 328.580078125,0,-428.44189453125,429.4453125,600,-278.137451171875,238.44140625,0,-333.326171875,311.720703125,600,-221.181884765625,429.4453125,0,-278.137451171875,328.580078125,600,-428.44189453125,311.720703125,0,-221.181884765625,238.44140625,600,-333.326171875
  315. }
  316. PolygonVertexIndex: *24 {
  317. a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
  318. }
  319. Edges: *12 {
  320. a: 1,3,0,7,4,11,15,13,2,9,6,5
  321. }
  322. GeometryVersion: 124
  323. LayerElementNormal: 0 {
  324. Version: 102
  325. Name: ""
  326. MappingInformationType: "ByVertice"
  327. ReferenceInformationType: "Direct"
  328. Normals: *24 {
  329. a: 0.274676650762558,-0.144383549690247,-0.950634598731995,0.98598849773407,0.14626707136631,0.0802043601870537,-0.979811906814575,-0.183346942067146,-0.0797018930315971,-0.273017466068268,0.18066494166851,0.944892346858978,0.98598849773407,-0.146267026662827,0.0802043601870537,0.274676650762558,0.14438359439373,-0.950634598731995,-0.273017466068268,-0.180664882063866,0.944892346858978,-0.979811906814575,0.183347031474113,-0.0797018930315971
  330. }
  331. NormalsW: *8 {
  332. a: 1,1,1,1,1,1,1,1
  333. }
  334. }
  335. LayerElementBinormal: 0 {
  336. Version: 102
  337. Name: "map1"
  338. MappingInformationType: "ByPolygonVertex"
  339. ReferenceInformationType: "Direct"
  340. Binormals: *72 {
  341. a: -0.154182359576225,0.982609987258911,0.103467598557472,0.154182314872742,0.982609987258911,-0.10346756875515,0.155411750078201,0.98232901096344,-0.104292623698711,-0.155411794781685,0.98232901096344,0.104292638599873,0.192342028021812,0.973246216773987,-0.125683516263962,-0.192341968417168,0.973246335983276,0.125683471560478,-0.0469734556972981,0.983539342880249,0.174481704831123,0.0469734668731689,0.983539342880249,-0.174481764435768,-0.106498025357723,0.922011911869049,-0.372226148843765,-0.0576676949858665,-0.984408557415009,-0.166175737977028,-0.128835543990135,-0.883919239044189,-0.449542462825775,-0.0479777902364731,0.978428065776825,-0.200939759612083,0.0576676651835442,-0.984408557415009,0.166175708174706,0.10649798065424,0.922011911869049,0.372226119041443,0.0479777604341507,0.978428065776825,0.200939685106277,0.128835454583168,-0.883919239044189,0.449542373418808,-0.12191616743803,0.960018217563629,-0.251995265483856,0.0469734668731689,0.983539342880249,-0.174481764435768,-0.0469734556972981,0.983539342880249,0.174481704831123,0.121916130185127,0.960018217563629,0.251995176076889,0.168959692120552,0.972530007362366,0.160118669271469,0.219745472073555,0.953071415424347,0.208247020840645,-0.219745427370071,0.953071475028992,-0.208246976137161,-0.168959647417068,0.972530126571655,-0.160118609666824
  342. }
  343. BinormalsW: *24 {
  344. 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
  345. }
  346. }
  347. LayerElementTangent: 0 {
  348. Version: 102
  349. Name: "map1"
  350. MappingInformationType: "ByPolygonVertex"
  351. ReferenceInformationType: "Direct"
  352. Tangents: *72 {
  353. a: 0.0636757835745811,0.114383965730667,-0.991393804550171,0.0636757835745811,-0.114383928477764,-0.991393804550171,-0.948894083499908,0.119093045592308,-0.292261719703674,-0.948894143104553,-0.119093097746372,-0.292261749505997,-0.0545257925987244,0.138476237654686,0.9888636469841,-0.0545257925987244,-0.13847616314888,0.9888636469841,0.960861504077911,-0.00325170042924583,0.277009874582291,0.960861504077911,0.00325170811265707,0.277009874582291,0.128393515944481,-0.358469098806381,-0.924670219421387,0.95980578660965,-0.10046549141407,0.262067764997482,0.152872532606125,0.430198550224304,-0.889696180820465,0.960811972618103,0.10019388794899,0.258459985256195,0.95980578660965,0.100465446710587,0.262067764997482,0.128393530845642,0.358469069004059,-0.924670219421387,0.960811972618103,-0.100193843245506,0.258459985256195,0.152872562408447,-0.430198460817337,-0.889696180820465,0.113856062293053,-0.238686218857765,-0.96439915895462,0.960861504077911,0.00325170811265707,0.277009874582291,0.960861504077911,-0.00325170042924583,0.277009874582291,0.113856062293053,0.238686144351959,-0.96439915895462,-0.106869846582413,-0.143419772386551,0.983874797821045,-0.936090171337128,0.266098290681839,-0.230058893561363,-0.936090111732483,-0.266098201274872,-0.230058863759041,-0.106869868934155,0.143419712781906,0.983874917030334
  354. }
  355. TangentsW: *24 {
  356. 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
  357. }
  358. }
  359. LayerElementUV: 0 {
  360. Version: 101
  361. Name: "map1"
  362. MappingInformationType: "ByPolygonVertex"
  363. ReferenceInformationType: "IndexToDirect"
  364. UV: *44 {
  365. a: 0.00959655176848173,0.990196049213409,0.00959655176848173,0.00980386231094599,0.215432330965996,0.00980386231094599,0.215432330965996,0.990196049213409,0.23879012465477,0.990196049213409,0.23879012465477,0.00980386231094599,0.355288296937943,0.00980386231094599,0.355288296937943,0.990196049213409,0.772254645824432,0.0484199374914169,0.634124636650085,0.254255712032318,0.563217580318451,0.183349058032036,0.679715752601624,0.00980386231094599,0.831113576889038,0.273798108100891,0.969243586063385,0.479633897542953,0.876704692840576,0.518249988555908,0.760206520557404,0.344704777002335,0.447827160358429,0.990196049213409,0.447827160358429,0.00980386231094599,0.54061359167099,0.990196049213409,0.469706922769547,0.990196049213409,0.469706922769547,0.00980386231094599,0.54061359167099,0.00980386231094599
  366. }
  367. UVIndex: *24 {
  368. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,19,20,21
  369. }
  370. }
  371. LayerElementSmoothing: 0 {
  372. Version: 102
  373. Name: ""
  374. MappingInformationType: "ByEdge"
  375. ReferenceInformationType: "Direct"
  376. Smoothing: *12 {
  377. a: 1,1,1,1,1,1,1,1,1,1,1,1
  378. }
  379. }
  380. LayerElementMaterial: 0 {
  381. Version: 101
  382. Name: ""
  383. MappingInformationType: "AllSame"
  384. ReferenceInformationType: "IndexToDirect"
  385. Materials: *1 {
  386. a: 0
  387. }
  388. }
  389. Layer: 0 {
  390. Version: 100
  391. LayerElement: {
  392. Type: "LayerElementNormal"
  393. TypedIndex: 0
  394. }
  395. LayerElement: {
  396. Type: "LayerElementBinormal"
  397. TypedIndex: 0
  398. }
  399. LayerElement: {
  400. Type: "LayerElementTangent"
  401. TypedIndex: 0
  402. }
  403. LayerElement: {
  404. Type: "LayerElementMaterial"
  405. TypedIndex: 0
  406. }
  407. LayerElement: {
  408. Type: "LayerElementSmoothing"
  409. TypedIndex: 0
  410. }
  411. LayerElement: {
  412. Type: "LayerElementUV"
  413. TypedIndex: 0
  414. }
  415. }
  416. }
  417. Geometry: 2267733799072, "Geometry::", "Mesh" {
  418. Vertices: *24 {
  419. a: 177.841796875,0,-529.08251953125,327.984375,600,-429.036376953125,129.056640625,0,-408.3408203125,238.068359375,600,-333.705078125,327.984375,0,-429.036376953125,177.841796875,600,-529.08251953125,238.068359375,0,-333.705078125,129.056640625,600,-408.3408203125
  420. }
  421. PolygonVertexIndex: *24 {
  422. a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
  423. }
  424. Edges: *12 {
  425. a: 1,3,0,7,4,11,15,13,2,9,6,5
  426. }
  427. GeometryVersion: 124
  428. LayerElementNormal: 0 {
  429. Version: 102
  430. Name: ""
  431. MappingInformationType: "ByVertice"
  432. ReferenceInformationType: "Direct"
  433. Normals: *24 {
  434. a: -0.102399557828903,-0.143936112523079,-0.984274685382843,0.945605993270874,0.14443926513195,-0.291490167379379,-0.939510405063629,-0.182881087064743,0.289611130952835,0.10177381336689,0.180689260363579,0.978260397911072,0.945605993270874,-0.14443926513195,-0.291490167379379,-0.102399557828903,0.143936112523079,-0.984274685382843,0.10177381336689,-0.180689260363579,0.978260397911072,-0.939510405063629,0.182881087064743,0.289611130952835
  435. }
  436. NormalsW: *8 {
  437. a: 1,1,1,1,1,1,1,1
  438. }
  439. }
  440. LayerElementBinormal: 0 {
  441. Version: 102
  442. Name: "map1"
  443. MappingInformationType: "ByPolygonVertex"
  444. ReferenceInformationType: "Direct"
  445. Binormals: *72 {
  446. a: -0.157203763723373,0.987348794937134,-0.0207241531461477,0.157203763723373,0.987348794937134,0.0207241494208574,0.102883145213127,0.982637166976929,-0.154400154948235,-0.102883145213127,0.982637166976929,0.154400154948235,0.175268530845642,0.983133673667908,-0.0522422827780247,-0.175268530845642,0.983133673667908,0.0522422827780247,-0.132367625832558,0.972162902355194,0.193333953619003,0.132367625832558,0.972162902355194,-0.193333953619003,-0.163600951433182,0.985617935657501,-0.0423345565795898,-0.499066203832626,-0.863369822502136,-0.0743348747491837,-0.206646338105202,-0.976954698562622,-0.0534504391252995,-0.365620493888855,0.921336770057678,-0.132137686014175,-0.499066203832626,0.863369822502136,-0.0743348747491837,-0.163600951433182,-0.985617935657501,-0.0423345565795898,-0.365620493888855,-0.921336770057678,-0.132137686014175,-0.206646338105202,0.976954698562622,-0.0534504391252995,-0.157203763723373,0.987348794937134,-0.0207241531461477,-0.171408459544182,0.971844434738159,-0.16167163848877,0.171408459544182,0.971844434738159,0.16167163848877,0.157203763723373,0.987348794937134,0.0207241494208574,0.175268530845642,0.983133673667908,-0.0522422827780247,0.27487987279892,0.95504230260849,0.111064001917839,-0.27487987279892,0.95504230260849,-0.111064001917839,-0.175268530845642,0.983133673667908,0.0522422827780247
  447. }
  448. BinormalsW: *24 {
  449. 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
  450. }
  451. }
  452. LayerElementTangent: 0 {
  453. Version: 102
  454. Name: "map1"
  455. MappingInformationType: "ByPolygonVertex"
  456. ReferenceInformationType: "Direct"
  457. Tangents: *72 {
  458. a: -0.284809023141861,-0.0654202252626419,-0.956349313259125,-0.284809052944183,0.0654202252626419,-0.956349313259125,-0.989408612251282,0.117075763642788,0.0858129560947418,-0.989408612251282,-0.117075763642788,0.0858129560947418,0.294280558824539,-0.00167754874564707,0.955717623233795,0.294280558824539,0.00167754874564707,0.955717623233795,0.98596203327179,0.149166360497475,-0.0750232711434364,0.98596203327179,-0.149166360497475,-0.0750232711434364,-0.28118309378624,-0.0877198651432991,-0.955636620521545,0.860492467880249,-0.483606308698654,-0.160242557525635,-0.273161858320236,0.110064320266247,-0.955650806427002,0.925183057785034,0.344223886728287,-0.159831792116165,-0.860492467880249,-0.483606308698654,0.160242557525635,0.28118309378624,-0.0877198651432991,0.955636620521545,-0.925183057785034,0.344223886728287,0.159831792116165,0.273161858320236,0.110064320266247,0.955650806427002,-0.284809023141861,-0.0654202252626419,-0.956349313259125,0.979929208755493,0.151228159666061,-0.129880040884018,0.979929208755493,-0.151228159666061,-0.129880040884018,-0.284809052944183,0.0654202252626419,-0.956349313259125,0.294280558824539,-0.00167754874564707,0.955717623233795,-0.956010103225708,0.259184390306473,0.13736118376255,-0.956010103225708,-0.259184390306473,0.13736118376255,0.294280558824539,0.00167754874564707,0.955717623233795
  459. }
  460. TangentsW: *24 {
  461. 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
  462. }
  463. }
  464. LayerElementUV: 0 {
  465. Version: 101
  466. Name: "map1"
  467. MappingInformationType: "ByPolygonVertex"
  468. ReferenceInformationType: "IndexToDirect"
  469. UV: *40 {
  470. a: 0.0800928771495819,0.990196049213409,0.0800928771495819,0.00980386231094599,0.217102289199829,0.00980386231094599,0.217102289199829,0.990196049213409,0.330960839986801,0.990196049213409,0.330960839986801,0.00980386231094599,0.446460396051407,0.00980386231094599,0.446460396051407,0.990196049213409,0.538629770278931,0.00980386231094599,0.675639569759369,0.215418145060539,0.582994878292084,0.253790348768234,0.467492431402206,0.0804868787527084,0.696673929691315,0.215418145060539,0.833683729171753,0.00980386231094599,0.9048210978508,0.0804868787527084,0.7893186211586,0.253790348768234,0.00895867496728897,0.990196049213409,0.00895867496728897,0.00980386231094599,0.238316774368286,0.990196049213409,0.238316774368286,0.00980386231094599
  471. }
  472. UVIndex: *24 {
  473. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
  474. }
  475. }
  476. LayerElementSmoothing: 0 {
  477. Version: 102
  478. Name: ""
  479. MappingInformationType: "ByEdge"
  480. ReferenceInformationType: "Direct"
  481. Smoothing: *12 {
  482. a: 1,1,1,1,1,1,1,1,1,1,1,1
  483. }
  484. }
  485. LayerElementMaterial: 0 {
  486. Version: 101
  487. Name: ""
  488. MappingInformationType: "AllSame"
  489. ReferenceInformationType: "IndexToDirect"
  490. Materials: *1 {
  491. a: 0
  492. }
  493. }
  494. Layer: 0 {
  495. Version: 100
  496. LayerElement: {
  497. Type: "LayerElementNormal"
  498. TypedIndex: 0
  499. }
  500. LayerElement: {
  501. Type: "LayerElementBinormal"
  502. TypedIndex: 0
  503. }
  504. LayerElement: {
  505. Type: "LayerElementTangent"
  506. TypedIndex: 0
  507. }
  508. LayerElement: {
  509. Type: "LayerElementMaterial"
  510. TypedIndex: 0
  511. }
  512. LayerElement: {
  513. Type: "LayerElementSmoothing"
  514. TypedIndex: 0
  515. }
  516. LayerElement: {
  517. Type: "LayerElementUV"
  518. TypedIndex: 0
  519. }
  520. }
  521. }
  522. Geometry: 2267733795488, "Geometry::", "Mesh" {
  523. Vertices: *24 {
  524. a: -0.232421875,0,-564.273193359375,176.857421875,600,-529.353759765625,-0.201171875,0,-434.550048828125,128.375,600,-408.510986328125,176.857421875,0,-529.353759765625,-0.232421875,600,-564.273193359375,128.375,0,-408.510986328125,-0.201171875,600,-434.550048828125
  525. }
  526. PolygonVertexIndex: *24 {
  527. a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
  528. }
  529. Edges: *12 {
  530. a: 1,3,0,7,4,11,15,13,2,9,6,5
  531. }
  532. GeometryVersion: 124
  533. LayerElementNormal: 0 {
  534. Version: 102
  535. Name: ""
  536. MappingInformationType: "ByVertice"
  537. ReferenceInformationType: "Direct"
  538. Normals: *24 {
  539. a: -0.46717643737793,-0.143055066466331,-0.872514426708221,0.763188242912292,0.143073096871376,-0.630137979984283,-0.75825822353363,-0.181889861822128,0.626067519187927,0.464228928089142,0.181067883968353,0.867009818553925,0.763188242912292,-0.143073111772537,-0.630137979984283,-0.46717643737793,0.14305505156517,-0.872514426708221,0.464228928089142,-0.181067883968353,0.867009818553925,-0.75825822353363,0.181889832019806,0.626067519187927
  540. }
  541. NormalsW: *8 {
  542. a: 1,1,1,1,1,1,1,1
  543. }
  544. }
  545. LayerElementBinormal: 0 {
  546. Version: 102
  547. Name: "map1"
  548. MappingInformationType: "ByPolygonVertex"
  549. ReferenceInformationType: "Direct"
  550. Binormals: *72 {
  551. a: 0.0355254262685776,-0.98299503326416,-0.180163025856018,-0.035525418817997,-0.98299503326416,0.18016305565834,-0.0355313345789909,-0.982989370822906,0.180193021893501,0.0355313271284103,-0.982989370822906,-0.18019300699234,0.0459639467298985,0.972818553447723,-0.226961582899094,-0.0459639355540276,0.972818434238434,0.226961582899094,-0.0461389496922493,0.972608208656311,0.227825731039047,0.0461389496922493,0.972608208656311,-0.227825731039047,-0.201120182871819,0.979336619377136,-0.0212268382310867,-0.29291307926178,-0.956139087677002,7.0556990976911e-005,-0.254008948802948,-0.966831922531128,-0.0267502591013908,-0.274507284164429,0.960094153881073,-0.0535264909267426,-0.292913138866425,0.956139147281647,7.05644561094232e-005,-0.20112019777298,-0.979336619377136,-0.0212268382310867,-0.274507284164429,-0.960094153881073,-0.0535264909267426,-0.25400897860527,0.966831922531128,-0.026750274002552,-0.268354862928391,0.95728474855423,-0.10766464471817,-0.216800451278687,0.972333252429962,-0.0869808942079544,0.216800451278687,0.972333252429962,0.0869808942079544,0.268354892730713,0.95728474855423,0.10766463726759,0.233217388391495,0.972424685955048,-5.61848355573602e-005,0.29291307926178,0.956139087677002,-7.0556990976911e-005,-0.292913138866425,0.956139147281647,7.05644561094232e-005,-0.233217418193817,0.972424685955048,5.61848355573602e-005
  552. }
  553. BinormalsW: *24 {
  554. 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
  555. }
  556. }
  557. LayerElementTangent: 0 {
  558. Version: 102
  559. Name: "map1"
  560. MappingInformationType: "ByPolygonVertex"
  561. ReferenceInformationType: "Direct"
  562. Tangents: *72 {
  563. a: 0.645198881626129,-0.115112386643887,0.755293011665344,0.645198881626129,0.115112401545048,0.755293011665344,0.883449912071228,-0.115183532238007,-0.454146504402161,0.883449912071228,0.115183517336845,-0.454146504402161,0.650332033634186,0.143318936228752,0.746007978916168,0.650332033634186,-0.143318966031075,0.746007978916168,0.884512662887573,0.145766213536263,-0.443158626556396,0.884512662887573,-0.145766213536263,-0.443158626556396,-0.614080190658569,-0.142933532595634,-0.776192963123322,0.83423513174057,-0.25560387969017,-0.488588392734528,-0.600436449050903,0.179310351610184,-0.779309868812561,0.842102944850922,0.213151961565018,-0.49540776014328,-0.834235012531281,-0.25560387969017,0.488588333129883,0.614080190658569,-0.142933547496796,0.776192963123322,-0.842102944850922,0.213151976466179,0.495407789945602,0.600436449050903,0.179310381412506,0.779309868812561,-0.58781760931015,-0.251268982887268,-0.768982648849487,0.858771979808807,0.147589102387428,-0.490640759468079,0.858771979808807,-0.147589102387428,-0.490640759468079,-0.58781760931015,0.251268982887268,-0.768982648849487,0.60881370306015,-0.145967215299606,0.779768824577332,-0.83423513174057,0.25560387969017,0.488588392734528,-0.834235012531281,-0.25560387969017,0.488588333129883,0.60881370306015,0.145967230200768,0.779768824577332
  564. }
  565. TangentsW: *24 {
  566. 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
  567. }
  568. }
  569. LayerElementUV: 0 {
  570. Version: 101
  571. Name: "map1"
  572. MappingInformationType: "ByPolygonVertex"
  573. ReferenceInformationType: "IndexToDirect"
  574. UV: *48 {
  575. a: 0.246304228901863,0.00956071261316538,0.246304228901863,0.965637862682343,0.00980119127780199,0.965637862682343,0.00980119127780199,0.00956071261316538,0.2692990899086,0.965637862682343,0.2692990899086,0.00956071261316538,0.468636512756348,0.00956071261316538,0.468636512756348,0.965637862682343,0.815962791442871,0.00956071261316538,0.862595856189728,0.246063753962517,0.764808475971222,0.246063753962517,0.725512683391571,0.0467263422906399,0.853104174137115,0.502531051635742,0.899743258953094,0.266027987003326,0.990193367004395,0.303193628787994,0.950897574424744,0.502531051635742,0.58200865983963,0.965637862682343,0.491557031869888,0.965637862682343,0.491557031869888,0.00956071261316538,0.58200865983963,0.00956071261316538,0.702426016330719,0.965637862682343,0.604635834693909,0.965637862682343,0.604635834693909,0.00956071261316538,0.702426016330719,0.00956071261316538
  576. }
  577. UVIndex: *24 {
  578. 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
  579. }
  580. }
  581. LayerElementSmoothing: 0 {
  582. Version: 102
  583. Name: ""
  584. MappingInformationType: "ByEdge"
  585. ReferenceInformationType: "Direct"
  586. Smoothing: *12 {
  587. a: 1,1,1,1,1,1,1,1,1,1,1,1
  588. }
  589. }
  590. LayerElementMaterial: 0 {
  591. Version: 101
  592. Name: ""
  593. MappingInformationType: "AllSame"
  594. ReferenceInformationType: "IndexToDirect"
  595. Materials: *1 {
  596. a: 0
  597. }
  598. }
  599. Layer: 0 {
  600. Version: 100
  601. LayerElement: {
  602. Type: "LayerElementNormal"
  603. TypedIndex: 0
  604. }
  605. LayerElement: {
  606. Type: "LayerElementBinormal"
  607. TypedIndex: 0
  608. }
  609. LayerElement: {
  610. Type: "LayerElementTangent"
  611. TypedIndex: 0
  612. }
  613. LayerElement: {
  614. Type: "LayerElementMaterial"
  615. TypedIndex: 0
  616. }
  617. LayerElement: {
  618. Type: "LayerElementSmoothing"
  619. TypedIndex: 0
  620. }
  621. LayerElement: {
  622. Type: "LayerElementUV"
  623. TypedIndex: 0
  624. }
  625. }
  626. }
  627. Geometry: 2267733792416, "Geometry::", "Mesh" {
  628. Vertices: *24 {
  629. a: -178.07421875,0,-528.852294921875,-0.96484375,600,-564.2724609375,-129.25390625,0,-408.13671875,-0.69921875,600,-434.549072265625,-0.96484375,0,-564.2724609375,-178.07421875,600,-528.852294921875,-0.69921875,0,-434.549072265625,-129.25390625,600,-408.13671875
  630. }
  631. PolygonVertexIndex: *24 {
  632. a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
  633. }
  634. Edges: *12 {
  635. a: 1,3,0,7,4,11,15,13,2,9,6,5
  636. }
  637. GeometryVersion: 124
  638. LayerElementNormal: 0 {
  639. Version: 102
  640. Name: ""
  641. MappingInformationType: "ByVertice"
  642. ReferenceInformationType: "Direct"
  643. Normals: *24 {
  644. a: -0.764692306518555,-0.143080621957779,-0.628310203552246,0.464609205722809,0.143057376146317,-0.873883783817291,-0.461673825979233,-0.181118220090866,0.868362545967102,0.759743273258209,0.18196140229702,0.62424373626709,0.464609205722809,-0.143057376146317,-0.873883783817291,-0.764692306518555,0.143080621957779,-0.628310203552246,0.759743273258209,-0.18196140229702,0.62424373626709,-0.461673825979233,0.181118220090866,0.868362545967102
  645. }
  646. NormalsW: *8 {
  647. a: 1,1,1,1,1,1,1,1
  648. }
  649. }
  650. LayerElementBinormal: 0 {
  651. Version: 102
  652. Name: "map1"
  653. MappingInformationType: "ByPolygonVertex"
  654. ReferenceInformationType: "Direct"
  655. Binormals: *72 {
  656. a: -0.0360112674534321,-0.982995390892029,-0.180065020918846,0.0360112674534321,-0.982995390892029,0.180065020918846,0.0360046848654747,-0.98300164937973,0.180032074451447,-0.0360046848654747,-0.98300164937973,-0.180032074451447,-0.0467896275222301,0.972598254680634,-0.227735310792923,0.0467896275222301,0.972598254680634,0.227735310792923,0.0466064736247063,0.97281539440155,0.226843908429146,-0.0466064736247063,0.97281539440155,-0.226843908429146,-0.293842703104019,0.955853760242462,0.000251658231718466,-0.20087081193924,-0.979383111000061,0.0214442107826471,-0.275018572807312,-0.959921419620514,0.0539986342191696,-0.253785103559494,0.966882824897766,0.0270346067845821,-0.20087081193924,0.979383111000061,0.0214442033320665,-0.293842643499374,-0.955853760242462,0.00025167313287966,-0.253785103559494,-0.966882824897766,0.0270346067845821,-0.275018602609634,0.959921419620514,0.0539986118674278,-0.293243229389191,0.956037700176239,0.000600464642047882,-0.233287811279297,0.972407698631287,0.000477679073810577,0.233287811279297,0.972407698631287,-0.000477679073810577,0.293243229389191,0.956037700176239,-0.000600464642047882,0.216646164655685,0.972310543060303,-0.087616965174675,0.268240094184875,0.957224547863007,-0.10848281532526,-0.268240094184875,0.957224547863007,0.10848281532526,-0.216646164655685,0.972310543060303,0.087616965174675
  657. }
  658. BinormalsW: *24 {
  659. 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
  660. }
  661. }
  662. LayerElementTangent: 0 {
  663. Version: 102
  664. Name: "map1"
  665. MappingInformationType: "ByPolygonVertex"
  666. ReferenceInformationType: "Direct"
  667. Tangents: *72 {
  668. a: 0.884783267974854,-0.115129522979259,0.451556980609894,0.884783267974854,0.115129522979259,0.451556980609894,0.64338892698288,-0.11504703015089,-0.756845355033875,0.64338892698288,0.11504703015089,-0.756845355033875,0.885814964771271,0.14576980471611,0.440548777580261,0.885814964771271,-0.14576980471611,0.440548777580261,0.648550689220428,0.143249332904816,-0.747570514678955,0.648550689220428,-0.143249332904816,-0.747570514678955,-0.835341215133667,-0.256667464971542,-0.486134886741638,0.612288117408752,-0.142607390880585,-0.777667224407196,-0.843339860439301,0.213886052370071,-0.492981374263763,0.598651230335236,0.178963109850883,-0.78076171875,-0.612288117408752,-0.142607375979424,0.777667224407196,0.835341215133667,-0.25666743516922,0.486134886741638,-0.598651230335236,0.178963109850883,0.78076171875,0.843339860439301,0.213886097073555,0.492981374263763,-0.835551738739014,-0.255981534719467,-0.48613452911377,0.606932461261749,0.145991370081902,-0.781229496002197,0.606932461261749,-0.145991370081902,-0.781229496002197,-0.835551738739014,0.255981534719467,-0.48613452911377,0.86018705368042,-0.147676944732666,0.488128840923309,-0.585912227630615,0.251493960618973,0.770362019538879,-0.585912227630615,-0.251493960618973,0.770362019538879,0.86018705368042,0.147676944732666,0.488128840923309
  669. }
  670. TangentsW: *24 {
  671. 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
  672. }
  673. }
  674. LayerElementUV: 0 {
  675. Version: 101
  676. Name: "map1"
  677. MappingInformationType: "ByPolygonVertex"
  678. ReferenceInformationType: "IndexToDirect"
  679. UV: *48 {
  680. a: 0.246294885873795,0.00955893658101559,0.246294885873795,0.965458512306213,0.00980543810874224,0.965458512306213,0.00980543810874224,0.00955893658101559,0.269303679466248,0.965458512306213,0.269303679466248,0.00955893658101559,0.468573749065399,0.00955893658101559,0.468573749065399,0.965458512306213,0.863139450550079,0.00976523943245411,0.815847635269165,0.246254697442055,0.725517451763153,0.208828985691071,0.76537024974823,0.00955893658101559,0.899867415428162,0.502914786338806,0.852575540542603,0.266425311565399,0.950344741344452,0.266219019889832,0.990197539329529,0.465489059686661,0.589331269264221,0.965458512306213,0.491559028625488,0.965458512306213,0.491559028625488,0.00955893658101559,0.589331269264221,0.00955893658101559,0.702765822410584,0.965458512306213,0.612436354160309,0.965458512306213,0.612436354160309,0.00955893658101559,0.702765822410584,0.00955893658101559
  681. }
  682. UVIndex: *24 {
  683. 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
  684. }
  685. }
  686. LayerElementSmoothing: 0 {
  687. Version: 102
  688. Name: ""
  689. MappingInformationType: "ByEdge"
  690. ReferenceInformationType: "Direct"
  691. Smoothing: *12 {
  692. a: 1,1,1,1,1,1,1,1,1,1,1,1
  693. }
  694. }
  695. LayerElementMaterial: 0 {
  696. Version: 101
  697. Name: ""
  698. MappingInformationType: "AllSame"
  699. ReferenceInformationType: "IndexToDirect"
  700. Materials: *1 {
  701. a: 0
  702. }
  703. }
  704. Layer: 0 {
  705. Version: 100
  706. LayerElement: {
  707. Type: "LayerElementNormal"
  708. TypedIndex: 0
  709. }
  710. LayerElement: {
  711. Type: "LayerElementBinormal"
  712. TypedIndex: 0
  713. }
  714. LayerElement: {
  715. Type: "LayerElementTangent"
  716. TypedIndex: 0
  717. }
  718. LayerElement: {
  719. Type: "LayerElementMaterial"
  720. TypedIndex: 0
  721. }
  722. LayerElement: {
  723. Type: "LayerElementSmoothing"
  724. TypedIndex: 0
  725. }
  726. LayerElement: {
  727. Type: "LayerElementUV"
  728. TypedIndex: 0
  729. }
  730. }
  731. }
  732. Geometry: 2267733801120, "Geometry::", "Mesh" {
  733. Vertices: *24 {
  734. a: -329.0419921875,0,-427.980712890625,-178.787109375,600,-528.496337890625,-238.8349609375,0,-332.918212890625,-129.8681640625,600,-407.82177734375,-178.787109375,0,-528.496337890625,-329.0419921875,600,-427.980712890625,-129.8681640625,0,-407.82177734375,-238.8349609375,600,-332.918212890625
  735. }
  736. PolygonVertexIndex: *24 {
  737. a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
  738. }
  739. Edges: *12 {
  740. a: 1,3,0,7,4,11,15,13,2,9,6,5
  741. }
  742. GeometryVersion: 124
  743. LayerElementNormal: 0 {
  744. Version: 102
  745. Name: ""
  746. MappingInformationType: "ByVertice"
  747. ReferenceInformationType: "Direct"
  748. Normals: *24 {
  749. a: -0.945937752723694,-0.14440493285656,-0.290428787469864,0.099650003015995,0.143916130065918,-0.984559834003448,-0.0990375503897667,-0.180867701768875,0.978508293628693,0.939803242683411,0.183061271905899,0.288545370101929,0.099650003015995,-0.143916144967079,-0.984559834003448,-0.945937752723694,0.144404903054237,-0.290428787469864,0.939803242683411,-0.183061301708221,0.288545370101929,-0.0990375503897667,0.180867701768875,0.978508293628693
  750. }
  751. NormalsW: *8 {
  752. a: 1,1,1,1,1,1,1,1
  753. }
  754. }
  755. LayerElementBinormal: 0 {
  756. Version: 102
  757. Name: "map1"
  758. MappingInformationType: "ByPolygonVertex"
  759. ReferenceInformationType: "Direct"
  760. Binormals: *72 {
  761. a: 0.103068917989731,0.982669234275818,0.154071658849716,-0.103068925440311,0.982669234275818,-0.154071673750877,-0.157317474484444,0.987314403057098,0.0214836206287146,0.157317444682121,0.987314462661743,-0.0214836243540049,-0.132756650447845,0.97215062379837,-0.1931292116642,0.132756650447845,0.97215062379837,0.1931292116642,0.175532504916191,0.983099937438965,0.0519901849329472,-0.175532475113869,0.98309987783432,-0.051990170031786,-0.50176602602005,0.861730456352234,0.0751766636967659,-0.163509070873261,-0.985626518726349,0.0424891896545887,-0.366838872432709,-0.920719861984253,0.133057296276093,-0.206780180335045,0.976912081241608,0.0537104867398739,-0.163509100675583,0.985626518726349,0.0424892045557499,-0.501766085624695,-0.861730456352234,0.0751766711473465,-0.206780225038528,-0.976912081241608,0.0537105016410351,-0.366838872432709,0.920719861984253,0.133057296276093,-0.275497764348984,0.954792320728302,0.111681029200554,-0.175532475113869,0.98309987783432,-0.051990170031786,0.175532504916191,0.983099937438965,0.0519901849329472,0.275497764348984,0.954792320728302,-0.111681044101715,0.171051844954491,0.971799910068512,-0.162315100431442,0.157317444682121,0.987314462661743,-0.0214836243540049,-0.157317474484444,0.987314403057098,0.0214836206287146,-0.171051844954491,0.971799910068512,0.162315100431442
  762. }
  763. BinormalsW: *24 {
  764. 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
  765. }
  766. }
  767. LayerElementTangent: 0 {
  768. Version: 102
  769. Name: "map1"
  770. MappingInformationType: "ByPolygonVertex"
  771. ReferenceInformationType: "Direct"
  772. Tangents: *72 {
  773. a: -0.989670097827911,0.11683078110218,-0.0830897465348244,-0.989670097827911,-0.116830788552761,-0.0830897465348244,-0.283642143011093,-0.0660116821527481,0.956655383110046,-0.283642172813416,0.0660116821527481,0.956655442714691,0.986188232898712,0.149030521512032,0.0722680538892746,0.986188232898712,-0.149030521512032,0.0722680538892746,0.293186336755753,-0.00178855354897678,-0.956053674221039,0.29318630695343,0.00178855354897678,-0.956053674221039,-0.859244406223297,-0.486527383327484,-0.158083528280258,0.280118584632874,-0.087679848074913,-0.955952763557434,-0.924997746944427,0.345777183771133,-0.157535046339035,0.272051155567169,0.110142752528191,-0.955958604812622,-0.280118584632874,-0.0876798704266548,0.955952763557434,0.859244287014008,-0.486527353525162,0.158083513379097,-0.272051155567169,0.110142774879932,0.955958604812622,0.924997746944427,0.345777183771133,0.157535046339035,-0.956122815608978,-0.260115027427673,-0.134793549776077,0.29318630695343,0.00178855354897678,-0.956053674221039,0.293186336755753,-0.00178855354897678,-0.956053674221039,-0.956122815608978,0.260115027427673,-0.134793549776077,0.980271816253662,-0.151300355792046,0.127182394266129,-0.283642172813416,0.0660116821527481,0.956655442714691,-0.283642143011093,-0.0660116821527481,0.956655383110046,0.980271816253662,0.151300355792046,0.127182394266129
  774. }
  775. TangentsW: *24 {
  776. 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
  777. }
  778. }
  779. LayerElementUV: 0 {
  780. Version: 101
  781. Name: "map1"
  782. MappingInformationType: "ByPolygonVertex"
  783. ReferenceInformationType: "IndexToDirect"
  784. UV: *40 {
  785. a: 0.00896450877189636,0.990196049213409,0.00896450877189636,0.00980386231094599,0.146616280078888,0.00980386231094599,0.146616280078888,0.990196049213409,0.238385215401649,0.990196049213409,0.238385215401649,0.00980386231094599,0.354299753904343,0.00980386231094599,0.354299753904343,0.990196049213409,0.676180958747864,0.0481885112822056,0.538530170917511,0.253952145576477,0.467623144388199,0.183038875460625,0.58354252576828,0.00980386231094599,0.834517657756805,0.253952145576477,0.696866869926453,0.0481885112822056,0.789505302906036,0.00980386231094599,0.90542471408844,0.183038875460625,0.446943670511246,0.990196049213409,0.446943670511246,0.00980386231094599,0.217522948980331,0.990196049213409,0.217522948980331,0.00980386231094599
  786. }
  787. UVIndex: *24 {
  788. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,3,2,19
  789. }
  790. }
  791. LayerElementSmoothing: 0 {
  792. Version: 102
  793. Name: ""
  794. MappingInformationType: "ByEdge"
  795. ReferenceInformationType: "Direct"
  796. Smoothing: *12 {
  797. a: 1,1,1,1,1,1,1,1,1,1,1,1
  798. }
  799. }
  800. LayerElementMaterial: 0 {
  801. Version: 101
  802. Name: ""
  803. MappingInformationType: "AllSame"
  804. ReferenceInformationType: "IndexToDirect"
  805. Materials: *1 {
  806. a: 0
  807. }
  808. }
  809. Layer: 0 {
  810. Version: 100
  811. LayerElement: {
  812. Type: "LayerElementNormal"
  813. TypedIndex: 0
  814. }
  815. LayerElement: {
  816. Type: "LayerElementBinormal"
  817. TypedIndex: 0
  818. }
  819. LayerElement: {
  820. Type: "LayerElementTangent"
  821. TypedIndex: 0
  822. }
  823. LayerElement: {
  824. Type: "LayerElementMaterial"
  825. TypedIndex: 0
  826. }
  827. LayerElement: {
  828. Type: "LayerElementSmoothing"
  829. TypedIndex: 0
  830. }
  831. LayerElement: {
  832. Type: "LayerElementUV"
  833. TypedIndex: 0
  834. }
  835. }
  836. }
  837. Geometry: 2267733807264, "Geometry::", "Mesh" {
  838. Vertices: *24 {
  839. a: -429.91015625,0,-277.01611328125,-329.578125,600,-427.447021484375,-312.052734375,0,-220.345703125,-239.296875,600,-332.445556640625,-329.578125,0,-427.447021484375,-429.91015625,600,-277.01611328125,-239.296875,0,-332.445556640625,-312.052734375,600,-220.345703125
  840. }
  841. PolygonVertexIndex: *24 {
  842. a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
  843. }
  844. Edges: *12 {
  845. a: 1,3,0,7,4,11,15,13,2,9,6,5
  846. }
  847. GeometryVersion: 124
  848. LayerElementNormal: 0 {
  849. Version: 102
  850. Name: ""
  851. MappingInformationType: "ByVertice"
  852. ReferenceInformationType: "Direct"
  853. Normals: *24 {
  854. a: -0.985741794109344,-0.146133080124855,0.083415724337101,-0.276310116052628,0.144205838441849,-0.950188040733337,0.274639189243317,-0.180561721324921,0.9444420337677,0.979556918144226,0.183295071125031,-0.0828923434019089,-0.276310116052628,-0.144205868244171,-0.950188040733337,-0.985741794109344,0.146133050322533,0.083415724337101,0.979556918144226,-0.183295086026192,-0.0828923434019089,0.274639189243317,0.180561676621437,0.9444420337677
  855. }
  856. NormalsW: *8 {
  857. a: 1,1,1,1,1,1,1,1
  858. }
  859. }
  860. LayerElementBinormal: 0 {
  861. Version: 102
  862. Name: "map1"
  863. MappingInformationType: "ByPolygonVertex"
  864. ReferenceInformationType: "Direct"
  865. Binormals: *72 {
  866. a: 0.155660554766655,0.9823397397995,0.103820018470287,-0.155660569667816,0.98233962059021,-0.103820025920868,-0.154385328292847,0.982630372047424,-0.102969497442245,0.154385298490524,0.982630372047424,0.102969475090504,-0.0475552268326283,0.983559310436249,-0.174211412668228,0.0475552417337894,0.983559370040894,0.174211472272873,0.192699313163757,0.973254978656769,0.125067129731178,-0.192699298262596,0.973254978656769,-0.125067114830017,0.057532761245966,-0.984423875808716,-0.166131898760796,0.105543598532677,0.923071444034576,-0.369864344596863,0.0478183999657631,0.978430688381195,-0.200965121388435,0.127813309431076,-0.88527500629425,-0.44716003537178,-0.10554363578558,0.923071503639221,0.369864463806152,-0.0575327537953854,-0.984423756599426,0.166131913661957,-0.127813294529915,-0.885274887084961,0.44716003537178,-0.0478184260427952,0.978430688381195,0.200965166091919,-0.21932926774025,0.953126847743988,0.208431735634804,-0.168451368808746,0.972624361515045,0.160081744194031,0.168451368808746,0.972624361515045,-0.160081744194031,0.219329327344894,0.953126847743988,-0.208431780338287,-0.0475552268326283,0.983559310436249,-0.174211412668228,0.121043756604195,0.960196971893311,-0.251734644174576,-0.121043778955936,0.960196971893311,0.251734703779221,0.0475552417337894,0.983559370040894,0.174211472272873
  867. }
  868. BinormalsW: *24 {
  869. 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
  870. }
  871. }
  872. LayerElementTangent: 0 {
  873. Version: 102
  874. Name: "map1"
  875. MappingInformationType: "ByPolygonVertex"
  876. ReferenceInformationType: "Direct"
  877. Tangents: *72 {
  878. a: -0.94837886095047,0.119220264256001,0.293877631425858,-0.94837886095047,-0.119220286607742,0.293877631425858,0.0669195353984833,0.114379495382309,0.991180658340454,0.0669195353984833,-0.114379473030567,0.991180658340454,0.960370600223541,-0.00293213315308094,-0.278710573911667,0.960370659828186,0.00293213315308094,-0.278710573911667,-0.0577511861920357,0.138483658432961,-0.988679468631744,-0.0577511861920357,-0.138483643531799,-0.988679468631744,0.959345042705536,0.100570864975452,-0.263709664344788,0.131048232316971,0.355786770582199,0.925333559513092,0.96035760641098,-0.100354589521885,-0.260081201791763,0.155344799160957,-0.427423894405365,0.890604734420776,0.131048232316971,-0.355786830186844,0.925333499908447,0.959345042705536,-0.100570872426033,-0.263709664344788,0.155344784259796,0.42742395401001,0.890604734420776,0.96035760641098,0.100354626774788,-0.260081201791763,0.935707032680511,0.265995889902115,-0.231729924678802,0.109965331852436,-0.14284585416317,0.98361724615097,0.109965331852436,0.14284585416317,0.98361724615097,0.935707032680511,-0.26599594950676,-0.231729924678802,0.960370600223541,-0.00293213315308094,-0.278710573911667,0.116882376372814,0.238048374652863,0.964194715023041,0.116882368922234,-0.238048419356346,0.964194715023041,0.960370659828186,0.00293213315308094,-0.278710573911667
  879. }
  880. TangentsW: *24 {
  881. 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
  882. }
  883. }
  884. LayerElementUV: 0 {
  885. Version: 101
  886. Name: "map1"
  887. MappingInformationType: "ByPolygonVertex"
  888. ReferenceInformationType: "IndexToDirect"
  889. UV: *40 {
  890. a: 0.00893942173570395,0.990196049213409,0.00893942173570395,0.00980386231094599,0.214948296546936,0.00980386231094599,0.214948296546936,0.990196049213409,0.329051315784454,0.990196049213409,0.329051315784454,0.00980386231094599,0.444721788167953,0.00980386231094599,0.444721788167953,0.990196049213409,0.602890431880951,0.254187256097794,0.465488582849503,0.0481784008443356,0.558133244514465,0.00980386231094599,0.673803746700287,0.183280602097511,0.694570541381836,0.215812727808952,0.831972360610962,0.00980386231094599,0.902885675430298,0.0807105302810669,0.787215173244476,0.254187256097794,0.0798460841178894,0.990196049213409,0.0798460841178894,0.00980386231094599,0.23640663921833,0.990196049213409,0.23640663921833,0.00980386231094599
  891. }
  892. UVIndex: *24 {
  893. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
  894. }
  895. }
  896. LayerElementSmoothing: 0 {
  897. Version: 102
  898. Name: ""
  899. MappingInformationType: "ByEdge"
  900. ReferenceInformationType: "Direct"
  901. Smoothing: *12 {
  902. a: 1,1,1,1,1,1,1,1,1,1,1,1
  903. }
  904. }
  905. LayerElementMaterial: 0 {
  906. Version: 101
  907. Name: ""
  908. MappingInformationType: "AllSame"
  909. ReferenceInformationType: "IndexToDirect"
  910. Materials: *1 {
  911. a: 0
  912. }
  913. }
  914. Layer: 0 {
  915. Version: 100
  916. LayerElement: {
  917. Type: "LayerElementNormal"
  918. TypedIndex: 0
  919. }
  920. LayerElement: {
  921. Type: "LayerElementBinormal"
  922. TypedIndex: 0
  923. }
  924. LayerElement: {
  925. Type: "LayerElementTangent"
  926. TypedIndex: 0
  927. }
  928. LayerElement: {
  929. Type: "LayerElementMaterial"
  930. TypedIndex: 0
  931. }
  932. LayerElement: {
  933. Type: "LayerElementSmoothing"
  934. TypedIndex: 0
  935. }
  936. LayerElement: {
  937. Type: "LayerElementUV"
  938. TypedIndex: 0
  939. }
  940. }
  941. }
  942. Geometry: 2267733793952, "Geometry::", "Mesh" {
  943. Vertices: *24 {
  944. a: -430.087890625,600,-276.30419921875,-465.33203125,600,-98.941162109375,-312.2060546875,600,-219.715576171875,-337.7685546875,600,-87.55712890625,-430.087890625,0,-276.30419921875,-465.33203125,0,-98.941162109375,-312.2060546875,0,-219.715576171875,-337.7685546875,0,-87.55712890625
  945. }
  946. PolygonVertexIndex: *24 {
  947. a: 0,4,5,-2,3,7,6,-3,3,2,0,-2,6,7,5,-5,0,2,6,-5,3,1,5,-8
  948. }
  949. Edges: *12 {
  950. a: 1,3,0,7,4,11,9,15,13,2,6,5
  951. }
  952. GeometryVersion: 124
  953. LayerElementNormal: 0 {
  954. Version: 102
  955. Name: ""
  956. MappingInformationType: "ByVertice"
  957. ReferenceInformationType: "Direct"
  958. Normals: *24 {
  959. a: -0.61298143863678,0.142288386821747,-0.777179419994354,-0.888622343540192,0.146418169140816,0.434640109539032,0.883348643779755,0.181710988283157,-0.432060539722443,0.609245896339417,0.179307118058205,0.772443234920502,-0.61298143863678,-0.142288386821747,-0.777179419994354,-0.888622343540192,-0.146418169140816,0.434640109539032,0.883348643779755,-0.181710988283157,-0.432060539722443,0.609245896339417,-0.179307118058205,0.772443234920502
  960. }
  961. NormalsW: *8 {
  962. a: 1,1,1,1,1,1,1,1
  963. }
  964. }
  965. LayerElementBinormal: 0 {
  966. Version: 102
  967. Name: "map1"
  968. MappingInformationType: "ByPolygonVertex"
  969. ReferenceInformationType: "Direct"
  970. Binormals: *72 {
  971. a: 0.182185649871826,0.982597529888153,0.0362024530768394,-0.182185649871826,0.982597529888153,-0.0362024530768394,-0.179428562521935,0.983124673366547,-0.0356545858085155,0.179428562521935,0.983124673366547,0.0356545858085155,-0.229784607887268,0.972226142883301,-0.0444456487894058,0.229784607887268,0.972226142883301,0.0444456487894058,0.221352145075798,0.974253714084625,0.0428146198391914,-0.221352145075798,0.974253714084625,-0.0428146198391914,0.0216153766959906,0.969982862472534,-0.242210566997528,0.0466760583221912,-0.951315581798553,-0.304663926362991,0.0505079552531242,-0.974581301212311,-0.218266248703003,0.0379976779222488,0.967917561531067,-0.248378232121468,-0.04667604342103,-0.951315581798553,0.304663926362991,-0.0216153766959906,0.969982862472534,0.242210566997528,-0.0379976630210876,0.967917561531067,0.24837826192379,-0.0505079254508018,-0.974581301212311,0.218266218900681,0.134442836046219,-0.950520932674408,-0.280062824487686,0.0991789698600769,-0.973385155200958,-0.206603348255157,-0.0991789698600769,-0.973385155200958,0.206603348255157,-0.134442836046219,-0.950520932674408,0.280062824487686,0.0216153766959906,0.969982862472534,-0.242210566997528,0.0244441404938698,0.961445212364197,-0.273908078670502,-0.0244441404938698,0.961445212364197,0.273908078670502,-0.0216153766959906,0.969982862472534,0.242210566997528
  972. }
  973. BinormalsW: *24 {
  974. 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
  975. }
  976. }
  977. LayerElementTangent: 0 {
  978. Version: 102
  979. Name: "map1"
  980. MappingInformationType: "ByPolygonVertex"
  981. ReferenceInformationType: "Direct"
  982. Tangents: *72 {
  983. a: -0.768805742263794,0.119399502873421,0.628236830234528,-0.768805742263794,-0.119399502873421,0.628236830234528,0.422084927558899,0.10967031121254,0.899898171424866,0.422084927558899,-0.10967031121254,0.899898171424866,0.75895893573761,0.150417238473892,-0.633526623249054,0.75895893573761,-0.150417238473892,-0.633526623249054,-0.413156718015671,0.133457764983177,-0.900827825069427,-0.413156718015671,-0.133457764983177,-0.900827825069427,0.792686641216278,-0.164262473583221,-0.587082386016846,0.466386646032333,-0.248957544565201,0.848824739456177,0.78848123550415,0.173046916723251,-0.590213656425476,0.457062959671021,0.204199135303497,0.865676760673523,0.466386646032333,0.248957574367523,0.848824739456177,0.792686641216278,0.164262473583221,-0.587082386016846,0.457062959671021,-0.20419916510582,0.865676760673523,0.78848123550415,-0.173046886920929,-0.590213656425476,0.778574824333191,0.276159524917603,-0.563522100448608,0.458103448152542,-0.139651492238045,0.877860426902771,0.458103448152542,0.139651492238045,0.877860426902771,0.778574824333191,-0.276159524917603,-0.563522100448608,0.792686641216278,-0.164262473583221,-0.587082386016846,0.457987815141678,0.232776433229446,0.85794073343277,0.457987815141678,-0.232776433229446,0.85794073343277,0.792686641216278,0.164262473583221,-0.587082386016846
  984. }
  985. TangentsW: *24 {
  986. 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
  987. }
  988. }
  989. LayerElementUV: 0 {
  990. Version: 101
  991. Name: "map1"
  992. MappingInformationType: "ByPolygonVertex"
  993. ReferenceInformationType: "IndexToDirect"
  994. UV: *48 {
  995. a: 0.00980384275317192,0.965264081954956,0.00980384275317192,0.00955701246857643,0.246579900383949,0.00955701246857643,0.246579900383949,0.965264081954956,0.269299119710922,0.965264081954956,0.269299119710922,0.00955701246857643,0.468666881322861,0.00955701246857643,0.468666881322861,0.965264081954956,0.823260426521301,0.00955701246857643,0.862874627113342,0.208924755454063,0.772562682628632,0.246333062648773,0.725510895252228,0.00955701246857643,0.990198373794556,0.303705483675003,0.95058411359787,0.503073215484619,0.852834582328796,0.503073215484619,0.8998863697052,0.266297161579132,0.491556346416473,0.00955701246857643,0.581868350505829,0.00955701246857643,0.581868350505829,0.965264081954956,0.491556346416473,0.965264081954956,0.702385425567627,0.965264081954956,0.604635894298553,0.965264081954956,0.604635894298553,0.00955701246857643,0.702385425567627,0.00955701246857643
  996. }
  997. UVIndex: *24 {
  998. 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
  999. }
  1000. }
  1001. LayerElementSmoothing: 0 {
  1002. Version: 102
  1003. Name: ""
  1004. MappingInformationType: "ByEdge"
  1005. ReferenceInformationType: "Direct"
  1006. Smoothing: *12 {
  1007. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1008. }
  1009. }
  1010. LayerElementMaterial: 0 {
  1011. Version: 101
  1012. Name: ""
  1013. MappingInformationType: "AllSame"
  1014. ReferenceInformationType: "IndexToDirect"
  1015. Materials: *1 {
  1016. a: 0
  1017. }
  1018. }
  1019. Layer: 0 {
  1020. Version: 100
  1021. LayerElement: {
  1022. Type: "LayerElementNormal"
  1023. TypedIndex: 0
  1024. }
  1025. LayerElement: {
  1026. Type: "LayerElementBinormal"
  1027. TypedIndex: 0
  1028. }
  1029. LayerElement: {
  1030. Type: "LayerElementTangent"
  1031. TypedIndex: 0
  1032. }
  1033. LayerElement: {
  1034. Type: "LayerElementMaterial"
  1035. TypedIndex: 0
  1036. }
  1037. LayerElement: {
  1038. Type: "LayerElementSmoothing"
  1039. TypedIndex: 0
  1040. }
  1041. LayerElement: {
  1042. Type: "LayerElementUV"
  1043. TypedIndex: 0
  1044. }
  1045. }
  1046. }
  1047. Geometry: 2267733786784, "Geometry::", "Mesh" {
  1048. Vertices: *24 {
  1049. a: -465.33203125,0,-98.4072265625,-465.6494140625,0,0.59375,-337.7685546875,0,-87.084716796875,-337.7685546875,0,0.525390625,-465.33203125,600,-98.4072265625,-465.6494140625,600,0.59375,-337.7685546875,600,-87.084716796875,-337.7685546875,600,0.525390625
  1050. }
  1051. PolygonVertexIndex: *24 {
  1052. a: 4,0,1,-6,7,3,2,-7,4,5,7,-7,1,0,2,-4,4,6,2,-1,7,5,1,-4
  1053. }
  1054. Edges: *12 {
  1055. a: 1,0,5,7,4,13,15,2,11,3,9,6
  1056. }
  1057. GeometryVersion: 124
  1058. LayerElementNormal: 0 {
  1059. Version: 102
  1060. Name: ""
  1061. MappingInformationType: "ByVertice"
  1062. ReferenceInformationType: "Direct"
  1063. Normals: *24 {
  1064. a: -0.561374187469482,-0.120270654559135,-0.81877589225769,-0.608280420303345,-0.121838316321373,0.784315288066864,0.60773378610611,-0.128896206617355,-0.78361052274704,0.560891926288605,-0.127112701535225,0.818072497844696,-0.561374187469482,0.120270654559135,-0.81877589225769,-0.608280420303345,0.121838316321373,0.784315288066864,0.60773378610611,0.128896206617355,-0.78361052274704,0.560891926288605,0.127112701535225,0.818072497844696
  1065. }
  1066. NormalsW: *8 {
  1067. a: 1,1,1,1,1,1,1,1
  1068. }
  1069. }
  1070. LayerElementBinormal: 0 {
  1071. Version: 102
  1072. Name: "map1"
  1073. MappingInformationType: "ByPolygonVertex"
  1074. ReferenceInformationType: "Direct"
  1075. Binormals: *72 {
  1076. a: 0.208556920289993,0.97800999879837,0.00066860020160675,-0.208556920289993,0.97800999879837,-0.00066860020160675,-0.197182133793831,0.980366706848145,-0.000632137060165405,0.197182133793831,0.980366706848145,0.000632137060165405,-0.221021354198456,0.975269079208374,7.45058148510225e-009,0.221021354198456,0.975269079208374,-7.45058148510225e-009,0.207478016614914,0.978239774703979,0,-0.207478016614914,0.978239774703979,0,0.0137148071080446,-0.987895131111145,-0.154515951871872,0.015327351167798,0.989767074584961,-0.141866713762283,0.0214616432785988,0.985578119754791,-0.167854517698288,0.0162098966538906,-0.98854786157608,-0.150034695863724,-0.0153273586183786,0.989767074584961,0.141866698861122,-0.0137148071080446,-0.987895131111145,0.154515951871872,-0.0162098966538906,-0.98854786157608,0.150034695863724,-0.0214616507291794,0.985578119754791,0.167854517698288,0.0137148071080446,-0.987895131111145,-0.154515951871872,0.0134996250271797,-0.988274216651917,-0.152091652154922,-0.0134996250271797,-0.988274216651917,0.152091652154922,-0.0137148071080446,-0.987895131111145,0.154515951871872,-8.20458008092828e-005,0.98815131187439,-0.153483420610428,-8.20904897409491e-005,0.988138675689697,-0.153564631938934,8.20904897409491e-005,0.988138675689697,0.153564631938934,8.20458008092828e-005,0.98815131187439,0.153483420610428
  1077. }
  1078. BinormalsW: *24 {
  1079. 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
  1080. }
  1081. }
  1082. LayerElementTangent: 0 {
  1083. Version: 102
  1084. Name: "map1"
  1085. MappingInformationType: "ByPolygonVertex"
  1086. ReferenceInformationType: "Direct"
  1087. Tangents: *72 {
  1088. a: -0.800851404666901,0.170386031270027,0.574112892150879,-0.800851404666901,-0.170386031270027,0.574112892150879,0.768839597702026,0.155037477612495,0.620362043380737,0.768839597702026,-0.155037477612495,0.620362043380737,0.797840714454651,0.18081146478653,-0.575115084648132,0.797840714454651,-0.18081146478653,-0.575115084648132,-0.766558945178986,0.16258193552494,-0.621252357959747,-0.766558945178986,-0.16258193552494,-0.621252357959747,0.827448427677155,0.097970612347126,-0.552929282188416,0.793574213981628,0.0742732733488083,0.603923439979553,0.827610790729523,-0.111705414950848,-0.550074756145477,0.793975353240967,-0.0784789025783539,0.602863311767578,0.793574213981628,-0.0742732658982277,0.603923439979553,0.827448427677155,-0.097970612347126,-0.552929282188416,0.793975353240967,0.0784789025783539,0.602863311767578,0.827610790729523,0.111705422401428,-0.550074756145477,0.827448427677155,0.097970612347126,-0.552929282188416,0.794026076793671,-0.0818527862429619,0.602347671985626,0.794026076793671,0.0818527862429619,0.602347671985626,0.827448427677155,-0.097970612347126,-0.552929282188416,0.827889025211334,-0.0860204845666885,-0.554256498813629,0.79372227191925,0.0934747457504272,0.601055443286896,0.79372227191925,-0.0934747457504272,0.601055443286896,0.827889025211334,0.0860204845666885,-0.554256498813629
  1089. }
  1090. TangentsW: *24 {
  1091. 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
  1092. }
  1093. }
  1094. LayerElementUV: 0 {
  1095. Version: 101
  1096. Name: "map1"
  1097. MappingInformationType: "ByPolygonVertex"
  1098. ReferenceInformationType: "IndexToDirect"
  1099. UV: *48 {
  1100. a: 0.00980395171791315,0.964938998222351,0.00980395171791315,0.00955379288643599,0.246737912297249,0.00955379288643599,0.246737912297249,0.964938998222351,0.269300520420074,0.964938998222351,0.269300520420074,0.00955379288643599,0.468838959932327,0.00955379288643599,0.468838959932327,0.964938998222351,0.725515186786652,0.246487751603127,0.772787630558014,0.00955379288643599,0.863069176673889,0.046949315816164,0.823231756687164,0.246487751603127,0.89991682767868,0.503385901451111,0.852644383907318,0.266451954841614,0.950361013412476,0.266451954841614,0.990198373794556,0.465990364551544,0.491560578346252,0.00955379288643599,0.58927720785141,0.00955379288643599,0.58927720785141,0.964938998222351,0.491560578346252,0.964938998222351,0.702718913555145,0.964938998222351,0.61243736743927,0.964938998222351,0.61243736743927,0.00955379288643599,0.702718913555145,0.00955379288643599
  1101. }
  1102. UVIndex: *24 {
  1103. 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
  1104. }
  1105. }
  1106. LayerElementSmoothing: 0 {
  1107. Version: 102
  1108. Name: ""
  1109. MappingInformationType: "ByEdge"
  1110. ReferenceInformationType: "Direct"
  1111. Smoothing: *12 {
  1112. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1113. }
  1114. }
  1115. LayerElementMaterial: 0 {
  1116. Version: 101
  1117. Name: ""
  1118. MappingInformationType: "AllSame"
  1119. ReferenceInformationType: "IndexToDirect"
  1120. Materials: *1 {
  1121. a: 0
  1122. }
  1123. }
  1124. Layer: 0 {
  1125. Version: 100
  1126. LayerElement: {
  1127. Type: "LayerElementNormal"
  1128. TypedIndex: 0
  1129. }
  1130. LayerElement: {
  1131. Type: "LayerElementBinormal"
  1132. TypedIndex: 0
  1133. }
  1134. LayerElement: {
  1135. Type: "LayerElementTangent"
  1136. TypedIndex: 0
  1137. }
  1138. LayerElement: {
  1139. Type: "LayerElementMaterial"
  1140. TypedIndex: 0
  1141. }
  1142. LayerElement: {
  1143. Type: "LayerElementSmoothing"
  1144. TypedIndex: 0
  1145. }
  1146. LayerElement: {
  1147. Type: "LayerElementUV"
  1148. TypedIndex: 0
  1149. }
  1150. }
  1151. }
  1152. Geometry: 2267733785248, "Geometry::", "Mesh" {
  1153. Vertices: *24 {
  1154. a: 464.4599609375,600,0.59375,465.33203125,600,-98.94091796875,337.7685546875,600,0.525390625,337.7685546875,600,-87.556884765625,464.4599609375,0,0.59375,465.33203125,0,-98.94091796875,337.7685546875,0,0.525390625,337.7685546875,0,-87.556884765625
  1155. }
  1156. PolygonVertexIndex: *24 {
  1157. a: 0,4,5,-2,3,7,6,-3,3,2,0,-2,6,7,5,-5,0,2,6,-5,3,1,5,-8
  1158. }
  1159. Edges: *12 {
  1160. a: 1,3,0,7,4,11,9,15,13,2,6,5
  1161. }
  1162. GeometryVersion: 124
  1163. LayerElementNormal: 0 {
  1164. Version: 102
  1165. Name: ""
  1166. MappingInformationType: "ByVertice"
  1167. ReferenceInformationType: "Direct"
  1168. Normals: *24 {
  1169. a: 0.610268354415894,0.122561015188694,0.782656610012054,0.567022681236267,0.119868934154511,-0.814933598041534,-0.566461682319641,0.12774221599102,0.814127147197723,-0.609788000583649,0.128729984164238,-0.782040476799011,0.610268354415894,-0.122561015188694,0.782656610012054,0.567022681236267,-0.119868934154511,-0.814933598041534,-0.566461682319641,-0.12774221599102,0.814127147197723,-0.609788000583649,-0.128729984164238,-0.782040476799011
  1170. }
  1171. NormalsW: *8 {
  1172. a: 1,1,1,1,1,1,1,1
  1173. }
  1174. }
  1175. LayerElementBinormal: 0 {
  1176. Version: 102
  1177. Name: "map1"
  1178. MappingInformationType: "ByPolygonVertex"
  1179. ReferenceInformationType: "Direct"
  1180. Binormals: *72 {
  1181. a: -0.19479513168335,0.980842471122742,-0.00170668959617615,0.19479513168335,0.980842471122742,0.00170668959617615,0.20935183763504,0.977838635444641,0.00183423585258424,-0.20935183763504,0.977838635444641,-0.00183423585258424,0.20655369758606,0.978435337543488,0,-0.20655369758606,0.978435337543488,0,-0.219984814524651,0.975503385066986,-7.45058148510225e-009,0.219984814524651,0.975503385066986,7.45058148510225e-009,-0.016387090086937,-0.988558292388916,-0.14994677901268,-0.0220783408731222,0.985205769538879,-0.169947534799576,-0.0156063139438629,0.989628076553345,-0.142803087830544,-0.0138253923505545,-0.987830281257629,-0.154919967055321,0.0220783185213804,0.985205769538879,0.169947519898415,0.0163870826363564,-0.988558292388916,0.14994677901268,0.0138253923505545,-0.987830281257629,0.154919967055321,0.015606302767992,0.989628076553345,0.142803102731705,8.35135651868768e-005,0.987949967384338,-0.154774278402328,8.36029721540399e-005,0.987921833992004,-0.154953643679619,-8.36029721540399e-005,0.987921833992004,0.154953643679619,-8.35135651868768e-005,0.987949967384338,0.154774278402328,-0.0135731846094131,-0.988272905349731,-0.152093902230263,-0.0138253923505545,-0.987830281257629,-0.154919967055321,0.0138253923505545,-0.987830281257629,0.154919967055321,0.0135731846094131,-0.988272905349731,0.152093902230263
  1182. }
  1183. BinormalsW: *24 {
  1184. 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
  1185. }
  1186. }
  1187. LayerElementTangent: 0 {
  1188. Version: 102
  1189. Name: "map1"
  1190. MappingInformationType: "ByPolygonVertex"
  1191. ReferenceInformationType: "Direct"
  1192. Tangents: *72 {
  1193. a: 0.767872035503387,0.151416152715683,-0.622451364994049,0.767872035503387,-0.151416152715683,-0.622451364994049,-0.796653747558594,0.171647921204567,-0.57955139875412,-0.796653747558594,-0.171647921204567,-0.57955139875412,-0.765176057815552,0.161533355712891,0.623227596282959,-0.765176057815552,-0.161533355712891,0.623227596282959,0.794183671474457,0.179095581173897,0.580686688423157,0.794183671474457,-0.179095581173897,0.580686688423157,0.792395114898682,0.0786203742027283,-0.604920506477356,0.823792397975922,0.114243350923061,0.555261015892029,0.792041003704071,-0.0749338269233704,-0.605851411819458,0.823586225509644,-0.099109910428524,0.558465003967285,0.823792397975922,-0.114243321120739,0.555261015892029,0.792395114898682,-0.0786203816533089,-0.604920506477356,0.823586225509644,0.099109910428524,0.558465003967285,0.792041003704071,0.0749338418245316,-0.605851411819458,0.792194724082947,-0.0945191979408264,-0.602904319763184,0.824088096618652,0.0877072215080261,0.559630453586578,0.824088096618652,-0.0877072215080261,0.559630453586578,0.792194724082947,0.0945191979408264,-0.602904319763184,0.792448341846466,0.0821302607655525,-0.604384243488312,0.823586225509644,-0.099109910428524,0.558465003967285,0.823586225509644,0.099109910428524,0.558465003967285,0.792448341846466,-0.0821302607655525,-0.604384243488312
  1194. }
  1195. TangentsW: *24 {
  1196. 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
  1197. }
  1198. }
  1199. LayerElementUV: 0 {
  1200. Version: 101
  1201. Name: "map1"
  1202. MappingInformationType: "ByPolygonVertex"
  1203. ReferenceInformationType: "IndexToDirect"
  1204. UV: *48 {
  1205. a: 0.00980386137962341,0.96522855758667,0.00980386137962341,0.00955666042864323,0.246571391820908,0.00955666042864323,0.246571391820908,0.96522855758667,0.269300013780594,0.96522855758667,0.269300013780594,0.00955666042864323,0.468660801649094,0.00955666042864323,0.468660801649094,0.96522855758667,0.765363872051239,0.246324181556702,0.725520610809326,0.0469634048640728,0.815823197364807,0.00955666042864323,0.863109827041626,0.246324181556702,0.852609097957611,0.465649098157883,0.892452418804169,0.266288310289383,0.990198314189911,0.266288310289383,0.942911684513092,0.503055810928345,0.581865131855011,0.96522855758667,0.491562515497208,0.96522855758667,0.491562515497208,0.00955666042864323,0.581865131855011,0.00955666042864323,0.604644000530243,0.00955666042864323,0.702389895915985,0.00955666042864323,0.702389895915985,0.96522855758667,0.604644000530243,0.96522855758667
  1206. }
  1207. UVIndex: *24 {
  1208. 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
  1209. }
  1210. }
  1211. LayerElementSmoothing: 0 {
  1212. Version: 102
  1213. Name: ""
  1214. MappingInformationType: "ByEdge"
  1215. ReferenceInformationType: "Direct"
  1216. Smoothing: *12 {
  1217. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1218. }
  1219. }
  1220. LayerElementMaterial: 0 {
  1221. Version: 101
  1222. Name: ""
  1223. MappingInformationType: "AllSame"
  1224. ReferenceInformationType: "IndexToDirect"
  1225. Materials: *1 {
  1226. a: 0
  1227. }
  1228. }
  1229. Layer: 0 {
  1230. Version: 100
  1231. LayerElement: {
  1232. Type: "LayerElementNormal"
  1233. TypedIndex: 0
  1234. }
  1235. LayerElement: {
  1236. Type: "LayerElementBinormal"
  1237. TypedIndex: 0
  1238. }
  1239. LayerElement: {
  1240. Type: "LayerElementTangent"
  1241. TypedIndex: 0
  1242. }
  1243. LayerElement: {
  1244. Type: "LayerElementMaterial"
  1245. TypedIndex: 0
  1246. }
  1247. LayerElement: {
  1248. Type: "LayerElementSmoothing"
  1249. TypedIndex: 0
  1250. }
  1251. LayerElement: {
  1252. Type: "LayerElementUV"
  1253. TypedIndex: 0
  1254. }
  1255. }
  1256. }
  1257. Geometry: 2267733796000, "Geometry::", "Mesh" {
  1258. Vertices: *24 {
  1259. a: 429.677734375,0,-277.24658203125,465.33203125,0,-99.47509765625,311.8564453125,0,-220.549560546875,337.7685546875,0,-88.02978515625,429.677734375,600,-277.24658203125,465.33203125,600,-99.47509765625,311.8564453125,600,-220.549560546875,337.7685546875,600,-88.02978515625
  1260. }
  1261. PolygonVertexIndex: *24 {
  1262. a: 5,1,0,-5,6,2,3,-8,5,4,6,-8,0,1,3,-3,5,7,3,-2,6,4,0,-3
  1263. }
  1264. Edges: *12 {
  1265. a: 1,0,5,7,4,13,15,2,9,3,11,6
  1266. }
  1267. GeometryVersion: 124
  1268. LayerElementNormal: 0 {
  1269. Version: 102
  1270. Name: ""
  1271. MappingInformationType: "ByVertice"
  1272. ReferenceInformationType: "Direct"
  1273. Normals: *24 {
  1274. a: 0.613042712211609,-0.14245131611824,-0.777101159095764,0.889790534973145,-0.146540120244026,0.432202249765396,-0.884492516517639,-0.181912630796433,-0.429628819227219,-0.609292447566986,-0.179562091827393,0.772347271442413,0.613042712211609,0.14245131611824,-0.777101159095764,0.889790534973145,0.146540120244026,0.432202249765396,-0.884492516517639,0.181912630796433,-0.429628819227219,-0.609292447566986,0.179562091827393,0.772347271442413
  1275. }
  1276. NormalsW: *8 {
  1277. a: 1,1,1,1,1,1,1,1
  1278. }
  1279. }
  1280. LayerElementBinormal: 0 {
  1281. Version: 102
  1282. Name: "map1"
  1283. MappingInformationType: "ByPolygonVertex"
  1284. ReferenceInformationType: "Direct"
  1285. Binormals: *72 {
  1286. a: -0.179386585950851,0.983120560646057,0.0359782204031944,0.179386585950851,0.983120560646057,-0.0359782204031944,0.182044968008995,0.982612133026123,-0.0365113988518715,-0.182044968008995,0.982612133026123,0.0365113988518715,0.221394941210747,0.974222838878632,-0.0432902164757252,-0.221394941210747,0.974222838878632,0.0432902164757252,-0.229614078998566,0.972245633602142,0.0448973514139652,0.229614078998566,0.972245633602142,-0.0448973514139652,-0.0382880531251431,0.967676877975464,-0.249270215630531,-0.0508067682385445,-0.97446608543396,-0.218711137771606,-0.0470400899648666,-0.950933337211609,-0.305799245834351,-0.0217719674110413,0.969867408275604,-0.242658853530884,0.0508067980408669,-0.97446608543396,0.218711167573929,0.0382880605757236,0.967676877975464,0.24927020072937,0.0217719674110413,0.969867408275604,0.242658853530884,0.0470400899648666,-0.950933337211609,0.305799245834351,-0.0246791504323483,0.96111011505127,-0.27506086230278,-0.0217719674110413,0.969867408275604,-0.242658853530884,0.0217719674110413,0.969867408275604,0.242658853530884,0.0246791504323483,0.96111011505127,0.27506086230278,-0.0996159315109253,-0.973254084587097,-0.207010462880135,-0.13511098921299,-0.950216889381409,-0.280772268772125,0.13511098921299,-0.950216889381409,0.280772268772125,0.0996159315109253,-0.973254084587097,0.207010462880135
  1287. }
  1288. BinormalsW: *24 {
  1289. 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
  1290. }
  1291. }
  1292. LayerElementTangent: 0 {
  1293. Version: 102
  1294. Name: "map1"
  1295. MappingInformationType: "ByPolygonVertex"
  1296. ReferenceInformationType: "Direct"
  1297. Tangents: *72 {
  1298. a: 0.41963467001915,0.109544359147549,-0.901058733463287,0.41963467001915,-0.109544359147549,-0.901058733463287,-0.768790125846863,0.119084306061268,-0.628315806388855,-0.768790125846863,-0.119084306061268,-0.628315806388855,-0.410679250955582,0.133407533168793,0.901967287063599,-0.410679250955582,-0.133407533168793,0.901967287063599,0.758973181247711,0.149986207485199,0.633611798286438,0.758973181247711,-0.149986207485199,0.633611798286438,0.454760193824768,-0.205250069499016,-0.866640388965607,0.788414537906647,-0.173561304807663,0.590151846408844,0.464176863431931,0.250267386436462,-0.84965056180954,0.792646586894989,0.164665728807449,0.587023496627808,0.788414537906647,0.173561334609985,0.590151846408844,0.454760193824768,0.205250054597855,-0.866640388965607,0.792646586894989,-0.164665728807449,0.587023496627808,0.464176863431931,-0.250267386436462,-0.84965056180954,0.455701380968094,-0.234080150723457,-0.85880309343338,0.792646586894989,0.164665728807449,0.587023496627808,0.792646586894989,-0.164665728807449,0.587023496627808,0.455701380968094,0.234080150723457,-0.85880309343338,0.455795645713806,0.140301331877708,-0.878957271575928,0.778411030769348,-0.277120262384415,0.563276708126068,0.778411030769348,0.277120262384415,0.563276708126068,0.455795645713806,-0.140301331877708,-0.878957271575928
  1299. }
  1300. TangentsW: *24 {
  1301. 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
  1302. }
  1303. }
  1304. LayerElementUV: 0 {
  1305. Version: 101
  1306. Name: "map1"
  1307. MappingInformationType: "ByPolygonVertex"
  1308. ReferenceInformationType: "IndexToDirect"
  1309. UV: *48 {
  1310. a: 0.00980398803949356,0.964513778686523,0.00980398803949356,0.00954958330839872,0.246940791606903,0.00954958330839872,0.246940791606903,0.964513778686523,0.269300252199173,0.964513778686523,0.269300252199173,0.00954958330839872,0.469058007001877,0.00954958330839872,0.469058007001877,0.964513778686523,0.8633131980896,0.00954958330839872,0.815752446651459,0.246686384081841,0.725516736507416,0.209307342767715,0.765639662742615,0.00954958330839872,0.942637741565704,0.266650497913361,0.990198493003845,0.503787279129028,0.89252495765686,0.503787279129028,0.852402031421661,0.304029524326324,0.589235723018646,0.964513778686523,0.491562187671661,0.964513778686523,0.491562187671661,0.00954958330839872,0.589235723018646,0.00954958330839872,0.612440228462219,0.00954996142536402,0.702675938606262,0.00954996142536402,0.702675938606262,0.964514136314392,0.612440228462219,0.964514136314392
  1311. }
  1312. UVIndex: *24 {
  1313. 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
  1314. }
  1315. }
  1316. LayerElementSmoothing: 0 {
  1317. Version: 102
  1318. Name: ""
  1319. MappingInformationType: "ByEdge"
  1320. ReferenceInformationType: "Direct"
  1321. Smoothing: *12 {
  1322. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1323. }
  1324. }
  1325. LayerElementMaterial: 0 {
  1326. Version: 101
  1327. Name: ""
  1328. MappingInformationType: "AllSame"
  1329. ReferenceInformationType: "IndexToDirect"
  1330. Materials: *1 {
  1331. a: 0
  1332. }
  1333. }
  1334. Layer: 0 {
  1335. Version: 100
  1336. LayerElement: {
  1337. Type: "LayerElementNormal"
  1338. TypedIndex: 0
  1339. }
  1340. LayerElement: {
  1341. Type: "LayerElementBinormal"
  1342. TypedIndex: 0
  1343. }
  1344. LayerElement: {
  1345. Type: "LayerElementTangent"
  1346. TypedIndex: 0
  1347. }
  1348. LayerElement: {
  1349. Type: "LayerElementMaterial"
  1350. TypedIndex: 0
  1351. }
  1352. LayerElement: {
  1353. Type: "LayerElementSmoothing"
  1354. TypedIndex: 0
  1355. }
  1356. LayerElement: {
  1357. Type: "LayerElementUV"
  1358. TypedIndex: 0
  1359. }
  1360. }
  1361. }
  1362. Geometry: 2267733801632, "Geometry::", "Mesh" {
  1363. Vertices: *714 {
  1364. a: -337.87890625,0,0,-266.568359375,0,-306.6201171875,-337.87890625,600,0,-266.568359375,600,-306.6201171875,-462.53515625,600,0,-364.9140625,600,-383.215576171875,-462.53515625,0,0,-364.9140625,0,-383.215576171875,-337.87890625,0,-90.956298828125,-462.53515625,0,-90.956298828125,-462.53515625,600,-90.956298828125,-337.87890625,600,-90.956298828125,-330.654296875,0,-168.50048828125,-452.64453125,0,-194.140380859375,-452.64453125,600,-194.140380859375,-330.654296875,600,-168.50048828125,-306.4921875,0,-241.217041015625,-419.568359375,0,-293.68408203125,-419.568359375,600,-293.68408203125,-306.4921875,600,-241.217041015625,-364.9140625,500,-383.215576171875,-266.568359375,500,-306.6201171875,-306.4921875,500,-241.217041015625,-330.654296875,500,-168.50048828125,-337.87890625,500,-90.956298828125,-337.87890625,500,0,-462.53515625,500,0,-364.9140625,400,-383.215576171875,-266.568359375,400,-306.6201171875,-306.4921875,400,-241.217041015625,-330.654296875,400,-168.50048828125,-337.87890625,400,-90.956298828125,-337.87890625,400,0,-462.53515625,400,0,-364.9140625,300,-383.215576171875,-266.568359375,300,-306.6201171875,-306.4921875,300,-241.217041015625,-330.654296875,300,-168.50048828125,-337.87890625,300,-90.956298828125,-337.87890625,300,0,-462.53515625,300,0,-364.9140625,200,-383.215576171875,-266.568359375,200,-306.6201171875,-306.4921875,200,-241.217041015625,-330.654296875,200,-168.50048828125,-337.87890625,200,-90.956298828125,-337.87890625,200,0,-462.53515625,200,0,-364.9140625,100,-383.215576171875,-266.568359375,100,-306.6201171875,-306.4921875,100,-241.217041015625,-330.654296875,100,-168.50048828125,-337.87890625,100,-90.956298828125,-337.87890625,100,0,-462.53515625,100,0,-462.53515625,500,-90.956298828125,-452.64453125,500,-194.140380859375,-419.568359375,500,-293.68408203125,-462.53515625,400,-90.956298828125,-452.64453125,400,-194.140380859375,-419.568359375,400,-293.68408203125,-462.53515625,300,-90.956298828125,-452.64453125,300,-194.140380859375,-419.568359375,300,-293.68408203125,-462.53515625,200,-90.956298828125,
  1365. -452.64453125,200,-194.140380859375,-419.568359375,200,-293.68408203125,-462.53515625,100,-90.956298828125,-452.64453125,100,-194.140380859375,-419.568359375,100,-293.68408203125,0,0,-436.884521484375,0,600,-436.884521484375,0,600,-561.539428710938,0,0,-561.539428710938,-212.93359375,0,-361.344482421875,-291.4921875,0,-458.12939453125,-291.4921875,600,-458.12939453125,-212.93359375,600,-361.344482421875,-148.34765625,0,-402.576171875,-203.078125,0,-514.57373046875,-203.078125,600,-514.57373046875,-148.34765625,600,-402.576171875,-76.130859375,0,-428.195556640625,-104.21875,0,-549.6455078125,-104.21875,600,-549.6455078125,-76.130859375,600,-428.195556640625,0,500,-561.539428710938,0,500,-436.884521484375,-76.130859375,500,-428.195556640625,-148.34765625,500,-402.576171875,-212.93359375,500,-361.344482421875,0,400,-561.539428710938,0,400,-436.884521484375,-76.130859375,400,-428.195556640625,-148.34765625,400,-402.576171875,-212.93359375,400,-361.344482421875,0,300,-561.539428710938,0,300,-436.884521484375,-76.130859375,300,-428.195556640625,-148.34765625,300,-402.576171875,-212.93359375,300,-361.344482421875,0,200,-561.539428710938,0,200,-436.884521484375,-76.130859375,200,-428.195556640625,-148.34765625,200,-402.576171875,-212.93359375,200,-361.344482421875,0,100,-561.539428710938,0,100,-436.884521484375,-76.130859375,100,-428.195556640625,-148.34765625,100,-402.576171875,-212.93359375,100,-361.344482421875,-291.4921875,500,-458.12939453125,-203.078125,500,-514.57373046875,-104.21875,500,-549.6455078125,-291.4921875,400,-458.12939453125,-203.078125,400,-514.57373046875,-104.21875,400,-549.6455078125,-291.4921875,300,-458.12939453125,-203.078125,300,-514.57373046875,-104.21875,300,-549.6455078125,-291.4921875,200,-458.12939453125,-203.078125,200,-514.57373046875,-104.21875,200,-549.6455078125,-291.4921875,100,-458.12939453125,-203.078125,100,-514.57373046875,-104.21875,100,-549.6455078125,266.568359375,0,-306.6201171875,266.568359375,600,-306.6201171875,364.9140625,600,-383.215576171875,364.9140625,0,-383.215576171875,
  1366. 76.130859375,0,-428.195556640625,104.21875,0,-549.6455078125,104.21875,600,-549.6455078125,76.130859375,600,-428.195556640625,148.34765625,0,-402.576049804688,203.078125,0,-514.57373046875,203.078125,600,-514.57373046875,148.34765625,600,-402.576049804688,212.93359375,0,-361.344482421875,291.4921875,0,-458.12939453125,291.4921875,600,-458.12939453125,212.93359375,600,-361.344482421875,364.9140625,500,-383.215576171875,266.568359375,500,-306.6201171875,212.93359375,500,-361.344482421875,148.34765625,500,-402.576049804688,76.130859375,500,-428.195556640625,364.9140625,400,-383.215576171875,266.568359375,400,-306.6201171875,212.93359375,400,-361.344482421875,148.34765625,400,-402.576049804688,76.130859375,400,-428.195556640625,364.9140625,300,-383.215576171875,266.568359375,300,-306.6201171875,212.93359375,300,-361.344482421875,148.34765625,300,-402.576049804688,76.130859375,300,-428.195556640625,364.9140625,200,-383.215576171875,266.568359375,200,-306.6201171875,212.93359375,200,-361.344482421875,148.34765625,200,-402.576049804688,76.130859375,200,-428.195556640625,364.9140625,100,-383.215576171875,266.568359375,100,-306.6201171875,212.93359375,100,-361.344482421875,148.34765625,100,-402.576049804688,76.130859375,100,-428.195556640625,104.21875,500,-549.6455078125,203.078125,500,-514.57373046875,291.4921875,500,-458.12939453125,104.21875,400,-549.6455078125,203.078125,400,-514.57373046875,291.4921875,400,-458.12939453125,104.21875,300,-549.6455078125,203.078125,300,-514.57373046875,291.4921875,300,-458.12939453125,104.21875,200,-549.6455078125,203.078125,200,-514.57373046875,291.4921875,200,-458.12939453125,104.21875,100,-549.6455078125,203.078125,100,-514.57373046875,291.4921875,100,-458.12939453125,337.87890625,0,0,337.87890625,600,0,462.533203125,600,0,462.533203125,0,0,306.4921875,0,-241.217041015625,419.568359375,0,-293.68408203125,419.568359375,600,-293.68408203125,306.4921875,600,-241.217041015625,330.654296875,0,-168.50048828125,452.64453125,0,-194.140380859375,452.64453125,600,-194.140380859375,330.654296875,600,-168.50048828125,
  1367. 337.87890625,0,-90.956298828125,462.533203125,0,-90.956298828125,462.533203125,600,-90.956298828125,337.87890625,600,-90.956298828125,462.533203125,500,0,337.87890625,500,0,337.87890625,500,-90.956298828125,330.654296875,500,-168.50048828125,306.4921875,500,-241.217041015625,462.533203125,400,0,337.87890625,400,0,337.87890625,400,-90.956298828125,330.654296875,400,-168.50048828125,306.4921875,400,-241.217041015625,462.533203125,300,0,337.87890625,300,0,337.87890625,300,-90.956298828125,330.654296875,300,-168.50048828125,306.4921875,300,-241.217041015625,462.533203125,200,0,337.87890625,200,0,337.87890625,200,-90.956298828125,330.654296875,200,-168.50048828125,306.4921875,200,-241.217041015625,462.533203125,100,0,337.87890625,100,0,337.87890625,100,-90.956298828125,330.654296875,100,-168.50048828125,306.4921875,100,-241.217041015625,419.568359375,500,-293.68408203125,452.64453125,500,-194.140380859375,462.533203125,500,-90.956298828125,419.568359375,400,-293.68408203125,452.64453125,400,-194.140380859375,462.533203125,400,-90.956298828125,419.568359375,300,-293.68408203125,452.64453125,300,-194.140380859375,462.533203125,300,-90.956298828125,419.568359375,200,-293.68408203125,452.64453125,200,-194.140380859375,462.533203125,200,-90.956298828125,419.568359375,100,-293.68408203125,452.64453125,100,-194.140380859375,462.533203125,100,-90.956298828125
  1368. }
  1369. PolygonVertexIndex: *944 {
  1370. a: 49,50,16,-2,0,8,52,-54,12,51,52,-9,16,50,51,-13,22,21,3,-20,22,19,15,-24,23,15,11,-25,25,24,11,-3,21,22,29,-29,29,22,23,-31,30,23,24,-32,32,31,24,-26,36,35,28,-30,36,29,30,-38,37,30,31,-39,39,38,31,-33,35,36,43,-43,43,36,37,-45,44,37,38,-46,46,45,38,-40,50,49,42,-44,50,43,44,-52,51,44,45,-53,53,52,45,-47,53,54,6,-1,26,25,2,-5,25,26,33,-33,40,39,32,-34,39,40,47,-47,54,53,46,-48,11,10,4,-3,11,15,14,-11,15,19,18,-15,5,18,19,-4,8,0,6,-10,12,8,9,-14,16,12,13,-18,7,1,16,-18,54,67,9,-7,7,17,69,-49,17,13,68,-70,13,9,67,-69,55,26,4,-11,55,10,14,-57,56,14,18,-58,5,20,57,-19,26,55,58,-34,58,55,56,-60,59,56,57,-61,27,60,57,-21,61,40,33,-59,61,58,59,-63,62,59,60,-64,27,34,63,-61,40,61,64,-48,64,61,62,-66,65,62,63,-67,41,66,63,-35,67,54,47,-65,67,64,65,-69,68,65,66,-70,41,48,69,-67,107,108,82,-71,1,74,110,-50,78,109,110,-75,82,108,109,-79,88,87,71,-86,88,85,81,-90,89,81,77,-91,21,90,77,-4,87,88,93,-93,93,88,89,-95,94,89,90,-96,28,95,90,-22,98,97,92,-94,98,93,94,-100,99,94,95,-101,35,100,95,-29,97,98,103,-103,103,98,99,-105,104,99,100,-106,42,105,100,-36,108,107,102,-104,108,103,104,-110,109,104,105,-111,49,110,105,-43,77,76,5,-4,77,81,80,-77,81,85,84,-81,72,84,85,-72,74,1,7,-76,78,74,75,-80,82,78,79,-84,73,70,82,-84,48,123,75,-8,73,83,125,-107,83,79,124,-126,79,75,123,-125,111,20,5,-77,111,76,80,-113,112,80,84,-114,72,86,113,-85,20,111,114,-28,114,111,112,-116,115,112,113,-117,91,116,113,-87,117,34,27,-115,117,114,115,-119,118,115,116,-120,91,96,119,-117,34,117,120,-42,120,117,118,-122,121,118,119,-123,101,122,119,-97,123,48,41,-121,123,120,121,-125,124,121,122,-126,101,106,125,-123,163,164,138,-127,70,130,166,-108,134,165,166,-131,138,164,165,-135,144,143,127,-142,144,141,137,-146,145,137,133,-147,87,146,133,-72,143,144,149,-149,149,144,145,-151,150,145,146,-152,92,151,146,-88,154,153,148,-150,154,149,150,-156,155,150,151,-157,97,156,151,-93,153,154,159,-159,159,154,155,-161,160,155,156,-162,102,161,156,-98,164,163,158,-160,164,159,160,-166,165,160,161,-167,107,166,161,-103,133,132,72,-72,133,137,136,-133,137,
  1371. 141,140,-137,128,140,141,-128,130,70,73,-132,134,130,131,-136,138,134,135,-140,129,126,138,-140,106,179,131,-74,129,139,181,-163,139,135,180,-182,135,131,179,-181,167,86,72,-133,167,132,136,-169,168,136,140,-170,128,142,169,-141,86,167,170,-92,170,167,168,-172,171,168,169,-173,147,172,169,-143,173,96,91,-171,173,170,171,-175,174,171,172,-176,147,152,175,-173,96,173,176,-102,176,173,174,-178,177,174,175,-179,157,178,175,-153,179,106,101,-177,179,176,177,-181,180,177,178,-182,157,162,181,-179,219,220,194,-183,126,186,222,-164,190,221,222,-187,194,220,221,-191,200,199,183,-198,200,197,193,-202,201,193,189,-203,143,202,189,-128,199,200,205,-205,205,200,201,-207,206,201,202,-208,148,207,202,-144,210,209,204,-206,210,205,206,-212,211,206,207,-213,153,212,207,-149,209,210,215,-215,215,210,211,-217,216,211,212,-218,158,217,212,-154,220,219,214,-216,220,215,216,-222,221,216,217,-223,163,222,217,-159,218,219,182,-186,183,199,198,-185,198,199,204,-204,204,209,208,-204,208,209,214,-214,214,219,218,-214,189,188,128,-128,189,193,192,-189,193,197,196,-193,184,196,197,-184,186,126,129,-188,190,186,187,-192,194,190,191,-196,185,182,194,-196,162,235,187,-130,185,195,237,-219,195,191,236,-238,191,187,235,-237,223,142,128,-189,223,188,192,-225,224,192,196,-226,184,198,225,-197,142,223,226,-148,226,223,224,-228,227,224,225,-229,203,228,225,-199,229,152,147,-227,229,226,227,-231,230,227,228,-232,203,208,231,-229,152,229,232,-158,232,229,230,-234,233,230,231,-235,213,234,231,-209,235,162,157,-233,235,232,233,-237,236,233,234,-238,213,218,237,-235
  1372. }
  1373. Edges: *472 {
  1374. a: 4,30,121,138,102,135,98,7,103,3,11,142,26,126,25,15,146,22,130,21,2,151,132,18,19,180,31,199,17,33,38,42,105,16,23,27,28,35,51,54,58,47,111,34,39,43,44,212,63,231,49,65,70,74,113,48,55,59,60,67,83,86,90,79,119,66,71,75,76,244,95,159,81,1,8,5,97,0,13,9,6,100,106,108,114,96,120,125,129,139,143,147,178,174,171,185,190,194,168,175,179,181,203,206,210,186,191,195,196,217,222,226,200,207,211,213,235,238,242,218,223,227,228,153,161,157,152,166,162,158,148,252,278,345,362,359,251,259,366,274,350,273,263,370,270,354,269,250,375,356,266,267,404,423,265,281,286,290,264,271,275,276,283,299,302,306,282,287,291,292,436,455,297,313,318,322,296,303,307,308,315,331,334,338,314,319,323,324,468,383,329,249,256,253,248,261,257,254,344,349,353,363,367,371,402,398,395,409,414,418,392,399,403,405,427,430,434,410,415,419,420,441,446,450,424,431,435,437,459,462,466,442,447,451,452,377,385,381,376,390,386,382,372,476,502,569,586,583,475,483,590,498,574,497,487,594,494,578,493,474,599,580,490,491,628,647,489,505,510,514,488,495,499,500,507,523,526,530,506,511,515,516,660,679,521,537,542,546,520,527,531,532,539,555,558,562,538,543,547,548,692,607,553,473,480,477,472,485,481,478,568,573,577,587,591,595,626,622,619,633,638,642,616,623,627,629,651,654,658,634,639,643,644,665,670,674,648,655,659,661,683,686,690,666,671,675,676,601,609,605,600,614,610,606,596,700,726,817,834,799,699,707,838,722,822,721,711,842,718,826,717,698,847,828,714,715,798,803,713,729,734,738,712,719,723,724,731,747,750,754,730,735,739,740,806,811,745,761,766,770,744,751,755,756,763,779,782,786,762,767,771,772,814,795,777,697,704,701,696,709,705,702,797,802,805,810,792,816,821,825,835,839,843,874,870,867,881,886,890,864,871,875,877,899,902,906,882,887,891,892,913,918,922,896,903,907,909,931,934,938,914,919,923,924,849,857,853,848,862,858,854,794
  1375. }
  1376. GeometryVersion: 124
  1377. LayerElementNormal: 0 {
  1378. Version: 102
  1379. Name: ""
  1380. MappingInformationType: "ByPolygonVertex"
  1381. ReferenceInformationType: "Direct"
  1382. Normals: *2832 {
  1383. a: 0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.788950622081757,0,0.614456534385681,1,0,0,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.907111883163452,0,0.420889586210251,0.788950622081757,0,0.614456534385681,0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.907111883163452,0,0.420889586210251,0.788950622081757,0,0.614456534385681,0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.999082028865814,0,0.0428365357220173,
  1384. 0.999082028865814,0,0.0428365357220173,1,0,0,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.907111883163452,0,0.420889586210251,0.788950622081757,0,0.614456534385681,0.788950622081757,0,0.614456534385681,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.907111883163452,0,0.420889586210251,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.978873074054718,0,0.204468697309494,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,1,0,0,0.999082028865814,0,0.0428365357220173,0.999082028865814,0,0.0428365357220173,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,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,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,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.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-0.998704850673676,0,-0.0508797578513622,-0.998704791069031,0,-0.0508797504007816,-1,0,0,-0.788946807384491,0,-0.614461421966553,-0.907108783721924,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.907108783721924,0,-0.4208964407444,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.907108724117279,0,-0.4208964407444,
  1385. -0.978269398212433,0,-0.207337662577629,-0.998704791069031,0,-0.0508797504007816,-0.998704850673676,0,-0.0508797578513622,-0.978269398212433,0,-0.207337662577629,-0.998704850673676,0,-0.0508797578513622,-1,0,0,-1,0,0,-0.998704791069031,0,-0.0508797504007816,-0.998704850673676,0,-0.0508797578513622,-0.998704791069031,0,-0.0508797504007816,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.907108783721924,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.788946807384491,0,-0.614461421966553,-0.907108724117279,0,-0.4208964407444,-0.907108783721924,0,-0.4208964407444,-1,0,0,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,-1,0,0,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.998704850673676,0,-0.0508797578513622,-1,0,0,-1,0,0,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.788946807384491,0,-0.614461421966553,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-1,0,0,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,-1,0,0,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,
  1386. -0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.998704850673676,0,-0.0508797578513622,-1,0,0,-1,0,0,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,-0.998704850673676,0,-0.0508797578513622,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.978269398212433,0,-0.207337662577629,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,-0.788946807384491,0,-0.614461421966553,-0.788946807384491,0,-0.614461421966553,-0.907108724117279,0,-0.4208964407444,-0.907108724117279,0,-0.4208964407444,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0,0,0.999999940395355,0.788950622081757,0,0.614456534385681,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.225322693586349,0,0.974284172058105,0,0,0.999999940395355,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,
  1387. 0.788950622081757,0,0.614456534385681,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.225322693586349,0,0.974284172058105,0,0,0.999999940395355,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.225322693586349,0,0.974284172058105,0,0,0.999999940395355,0,0,0.999999940395355,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.225322693586349,0,0.974284172058105,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,0.439049601554871,0,0.898462772369385,
  1388. 0.439049601554871,0,0.898462772369385,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0.63020384311676,0,0.776429712772369,0.63020384311676,0,0.776429712772369,0.788950622081757,0,0.614456534385681,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,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.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427507400513,-0.788946807384491,0,-0.614461421966553,0,0,-1,-0.225321754813194,0,-0.974284470081329,-0.225321754813194,0,-0.974284529685974,0,0,-1,-0.225321754813194,0,-0.974284470081329,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.225321754813194,0,-0.974284529685974,-0.439056098461151,0,-0.898459613323212,-0.630206644535065,0,-0.776427507400513,-0.630206644535065,0,-0.776427447795868,-0.439056098461151,0,-0.898459613323212,-0.630206644535065,0,-0.776427447795868,-0.788946807384491,0,-0.614461421966553,-0.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427507400513,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427507400513,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.225321754813194,0,-0.974284470081329,-0.225321754813194,0,-0.974284529685974,0,0,-1,0,0,-1,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284470081329,-0.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.225321754813194,0,-0.974284529685974,
  1389. -0.225321754813194,0,-0.974284529685974,0,0,-1,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284529685974,0,0,-1,-0.630206644535065,0,-0.776427447795868,-0.788946807384491,0,-0.614461421966553,-0.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284529685974,0,0,-1,0,0,-1,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284529685974,-0.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284529685974,0,0,-1,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284529685974,0,0,-1,-0.630206644535065,0,-0.776427447795868,-0.788946807384491,0,-0.614461421966553,-0.788946807384491,0,-0.614461421966553,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.630206644535065,0,-0.776427447795868,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.439056098461151,0,-0.898459613323212,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284529685974,0,0,-1,0,0,-1,-0.225321754813194,0,-0.974284529685974,-0.225321754813194,0,-0.974284529685974,-0.788950622081757,0,0.614456593990326,-0.630203306674957,0,0.776430130004883,-0.630203366279602,0,0.776430130004883,-0.788950622081757,0,0.614456534385681,0,0,0.999999940395355,-0.225323438644409,0,0.974284052848816,
  1390. -0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.225323408842087,0,0.974284052848816,-0.225323438644409,0,0.974284052848816,-0.630203366279602,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.630203306674957,0,0.776430130004883,-0.788950622081757,0,0.614456593990326,-0.788950622081757,0,0.614456534385681,-0.630203366279602,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.630203366279602,0,0.776430130004883,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.225323438644409,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.225323408842087,0,0.974284052848816,-0.225323438644409,0,0.974284052848816,0,0,0.999999940395355,-0.788950622081757,0,0.614456593990326,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.788950622081757,0,0.614456593990326,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.225323408842087,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.225323408842087,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.630203306674957,0,0.776430130004883,-0.788950622081757,0,0.614456593990326,-0.788950622081757,0,0.614456593990326,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.225323408842087,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.225323408842087,0,0.974284052848816,
  1391. -0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.788950622081757,0,0.614456593990326,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.788950622081757,0,0.614456593990326,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.225323408842087,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.225323408842087,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.630203306674957,0,0.776430130004883,-0.788950622081757,0,0.614456593990326,-0.788950622081757,0,0.614456593990326,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.630203306674957,0,0.776430130004883,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.439049571752548,0,0.898462772369385,-0.225323408842087,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,0,0,0.999999940395355,-0.225323408842087,0,0.974284052848816,-0.225323408842087,0,0.974284052848816,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,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0,0,-1,0.788946807384491,0,-0.614461421966553,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,0.630206644535065,0,-0.776427507400513,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.630206644535065,0,-0.776427507400513,0.439056098461151,0,-0.898459613323212,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.439056098461151,0,-0.898459613323212,0.225321754813194,0,-0.974284470081329,0,0,-1,
  1392. 0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,0.788946807384491,0,-0.614461421966553,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,0.225321754813194,0,-0.974284470081329,0,0,-1,0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,0.788946807384491,0,-0.614461421966553,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,
  1393. 0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,0.225321754813194,0,-0.974284470081329,0,0,-1,0,0,-1,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.225321754813194,0,-0.974284470081329,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.439056098461151,0,-0.898459613323212,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,0.788946807384491,0,-0.614461421966553,0.788946807384491,0,-0.614461421966553,0.630206644535065,0,-0.776427507400513,0.630206644535065,0,-0.776427507400513,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-1,0,0,-0.788950622081757,0,0.614456534385681,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.999082028865814,0,0.0428365357220173,-1,0,0,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456534385681,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,
  1394. -0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.999082028865814,0,0.0428365357220173,-1,0,0,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.999082028865814,0,0.0428365357220173,-1,0,0,-1,0,0,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.999082028865814,0,0.0428365357220173,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.978873074054718,0,0.204468697309494,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,-0.907111883163452,0,0.420889586210251,-0.907111883163452,0,0.420889586210251,-0.788950622081757,0,0.614456593990326,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,
  1395. 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,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.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-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,-0.999999940395355,0,0,-1,0,0,-1,0,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.788946807384491,0,-0.614461421966553,1,0,0,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,0.998705267906189,0,-0.0508697293698788,0.978271245956421,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.998705267906189,0,-0.0508697293698788,0.978271245956421,0,-0.207328632473946,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.978271305561066,0,-0.207328632473946,0.907108783721924,0,-0.4208964407444,0.788946807384491,0,-0.614461421966553,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.978271245956421,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271245956421,0,-0.207328632473946,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,1,0,0,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,0.907108783721924,0,-0.4208964407444,
  1396. 0.788946807384491,0,-0.614461421966553,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,1,0,0,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,0.907108783721924,0,-0.4208964407444,0.788946807384491,0,-0.614461421966553,0.788946807384491,0,-0.614461421966553,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.907108783721924,0,-0.4208964407444,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.978271305561066,0,-0.207328632473946,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788,1,0,0,1,0,0,0.998705267906189,0,-0.0508697293698788,0.998705267906189,0,-0.0508697293698788
  1397. }
  1398. NormalsW: *944 {
  1399. 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
  1400. }
  1401. }
  1402. LayerElementBinormal: 0 {
  1403. Version: 102
  1404. Name: "map1"
  1405. MappingInformationType: "ByPolygonVertex"
  1406. ReferenceInformationType: "Direct"
  1407. Binormals: *2832 {
  1408. a: 1.60596883347353e-007,1,-2.06203381480918e-007,2.15478337395325e-007,1,-4.64404365629889e-007,2.18057067513655e-007,1,-4.69962117222167e-007,2.16148094978053e-007,1,-2.77530062930964e-007,0,1,-4.35606892779106e-007,2.00342107348206e-008,1,-4.6726046321055e-007,1.93709777107642e-008,1,-4.51791834166215e-007,0,1,-4.07326638196537e-007,1.02816585467735e-007,1,-4.92223932724301e-007,1.07407821303696e-007,1,-5.1420403224256e-007,1.93709777107642e-008,1,-4.51791834166215e-007,2.00342107348206e-008,1,-4.6726046321055e-007,2.18057067513655e-007,1,-4.69962117222167e-007,2.15478337395325e-007,1,-4.64404365629889e-007,1.07407821303696e-007,1,-5.1420403224256e-007,1.02816585467735e-007,1,-4.92223932724301e-007,2.33529021897994e-007,1,-5.03307660437713e-007,1.8528855605382e-007,1,-2.3790700254267e-007,1.23031895782333e-007,1,-1.57970632130855e-007,2.52821735102771e-007,1,-5.4488782552653e-007,2.33529021897994e-007,1,-5.03307660437713e-007,2.52821735102771e-007,1,-5.4488782552653e-007,4.09462117545445e-008,1,-1.96025823129276e-007,8.20474284068951e-008,1,-3.92793708670069e-007,8.20474284068951e-008,1,-3.92793708670069e-007,4.09462117545445e-008,1,-1.96025823129276e-007,1.07785718128639e-008,1,-2.51390019911923e-007,1.08218314309738e-008,1,-2.52398962174993e-007,0,1,-5.06815808876127e-007,1.08218314309738e-008,1,-2.52398962174993e-007,1.07785718128639e-008,1,-2.51390019911923e-007,0,1,-5.02780039823847e-007,1.8528855605382e-007,1,-2.3790700254267e-007,2.33529021897994e-007,1,-5.03307660437713e-007,1.95775129441245e-007,1,-4.21939517991632e-007,1.88655960187134e-007,1,-2.42230697722334e-007,1.95775129441245e-007,1,-4.21939517991632e-007,2.33529021897994e-007,1,-5.03307660437713e-007,8.20474284068951e-008,1,-3.92793708670069e-007,1.04132766409748e-007,1,-4.98525025705021e-007,1.04132766409748e-007,1,-4.98525025705021e-007,8.20474284068951e-008,1,-3.92793708670069e-007,1.08218314309738e-008,1,-2.52398962174993e-007,1.9643307425099e-008,1,-4.58143375681175e-007,0,1,-5.19110358254693e-007,1.9643307425099e-008,1,-4.58143375681175e-007,
  1409. 1.08218314309738e-008,1,-2.52398962174993e-007,0,1,-5.06815808876127e-007,2.08696960157795e-007,1,-4.49788984724364e-007,1.92428004197609e-007,1,-2.47073927539532e-007,1.88655960187134e-007,1,-2.42230697722334e-007,1.95775129441245e-007,1,-4.21939517991632e-007,2.08696960157795e-007,1,-4.49788984724364e-007,1.95775129441245e-007,1,-4.21939517991632e-007,1.04132766409748e-007,1,-4.98525025705021e-007,8.97683136713567e-008,1,-4.2975665337508e-007,8.97683136713567e-008,1,-4.2975665337508e-007,1.04132766409748e-007,1,-4.98525025705021e-007,1.9643307425099e-008,1,-4.58143375681175e-007,2.4369054330009e-008,1,-5.68362565900316e-007,0,1,-4.8056131163321e-007,2.4369054330009e-008,1,-5.68362565900316e-007,1.9643307425099e-008,1,-4.58143375681175e-007,0,1,-5.19110358254693e-007,1.92428004197609e-007,1,-2.47073927539532e-007,2.08696960157795e-007,1,-4.49788984724364e-007,2.25172996692891e-007,1,-4.85298528474232e-007,1.60356677270102e-007,1,-2.05894977511889e-007,2.25172996692891e-007,1,-4.85298528474232e-007,2.08696960157795e-007,1,-4.49788984724364e-007,8.97683136713567e-008,1,-4.2975665337508e-007,1.0324097843295e-007,1,-4.94255687044642e-007,1.0324097843295e-007,1,-4.94255687044642e-007,8.97683136713567e-008,1,-4.2975665337508e-007,2.4369054330009e-008,1,-5.68362565900316e-007,2.03075458671265e-008,1,-4.73635509479209e-007,0,1,-3.93186496694398e-007,2.03075458671265e-008,1,-4.73635509479209e-007,2.4369054330009e-008,1,-5.68362565900316e-007,0,1,-4.8056131163321e-007,2.15478337395325e-007,1,-4.64404365629889e-007,1.60596883347353e-007,1,-2.06203381480918e-007,1.60356677270102e-007,1,-2.05894977511889e-007,2.25172996692891e-007,1,-4.85298528474232e-007,2.15478337395325e-007,1,-4.64404365629889e-007,2.25172996692891e-007,1,-4.85298528474232e-007,1.0324097843295e-007,1,-4.94255687044642e-007,1.07407821303696e-007,1,-5.1420403224256e-007,1.07407821303696e-007,1,-5.1420403224256e-007,1.0324097843295e-007,1,-4.94255687044642e-007,2.03075458671265e-008,1,-4.73635509479209e-007,1.93709777107642e-008,1,-4.51791834166215e-007,0,1,-4.07326638196537e-007,
  1410. 1.93709777107642e-008,1,-4.51791834166215e-007,2.03075458671265e-008,1,-4.73635509479209e-007,0,1,-3.93186496694398e-007,0,1,-0,-3.57067910954356e-005,1,0,-0.000107120366010349,1,0,-5.35601830051746e-005,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-3.57067910954356e-005,1,0,0,1,-0,0,1,-0,0,1,-0,0.998921453952789,-0,0.0464330315589905,0.998889625072479,-0,0.047112699598074,1,-0,7.39551387596293e-006,1,-0,3.69775693798147e-006,0.998921453952789,-0,0.0464330315589905,0.985647797584534,-0,0.168814837932587,0.969925999641418,-0,0.243400439620018,0.998889625072479,-0,0.047112699598074,0.985647797584534,-0,0.168814837932587,0.922458589076996,-0,0.386096000671387,0.890461146831512,-0,0.455059349536896,0.969925999641418,-0,0.243400439620018,0.853538632392883,-0,0.521029531955719,0.890461146831512,-0,0.455059349536896,0.922458589076996,-0,0.386096000671387,0.853540003299713,-0,0.521027326583862,0.998921453952789,0,0.0464330315589905,1,0,0,1,0,0,0.998890280723572,0,0.0470979660749435,0.978545844554901,0,0.206029504537582,0.998921453952789,0,0.0464330315589905,0.998890280723572,0,0.0470979660749435,0.978408455848694,0,0.206680774688721,0.907111823558807,0,0.420889765024185,0.978545844554901,0,0.206029504537582,0.978408455848694,0,0.206680774688721,0.907110273838043,0,0.42089307308197,0.853533685207367,0,0.521037697792053,0.853537559509277,0,0.521031379699707,0.907111823558807,0,0.420889765024185,0.907110273838043,0,0.42089307308197,0,1,-8.73747865171026e-007,3.79625682001006e-008,1,-7.45156796710944e-007,3.5455506974813e-008,1,-6.95946539508441e-007,0,1,-6.56874362903181e-007,3.72514534774382e-008,1,-4.78295518746563e-008,3.31381556861743e-007,1,-7.14187876837968e-007,3.439949409767e-007,1,-7.41371934509516e-007,2.33731668686232e-007,1,-3.00103238259908e-007,3.31381556861743e-007,1,-7.14187876837968e-007,1.95092155763632e-007,1,-9.20492084333091e-007,1.64219031262292e-007,1,-7.74825252847222e-007,3.439949409767e-007,1,-7.41371934509516e-007,1.95092155763632e-007,1,-9.20492084333091e-007,
  1411. 3.5455506974813e-008,1,-6.95946539508441e-007,3.79625682001006e-008,1,-7.45156796710944e-007,1.64219031262292e-007,1,-7.74825252847222e-007,4.44145769051829e-008,1,-8.71801546509232e-007,0,1,-1.00959596238681e-006,0,1,-1.00556007964769e-006,4.80838373562165e-008,1,-9.43824602472887e-007,4.44145769051829e-008,1,-8.71801546509232e-007,4.80838373562165e-008,1,-9.43824602472887e-007,1.22016544423786e-007,1,-5.75703666072513e-007,1.53621186882447e-007,1,-7.24822086795029e-007,1.53621186882447e-007,1,-7.24822086795029e-007,1.22016544423786e-007,1,-5.75703666072513e-007,3.0781484383624e-007,1,-6.63397258904297e-007,2.59898769172651e-007,1,-5.60129308269097e-007,2.69625132887086e-007,1,-3.46189182209855e-007,2.90507330191758e-007,1,-3.73001171283249e-007,2.59898769172651e-007,1,-5.60129308269097e-007,3.0781484383624e-007,1,-6.63397258904297e-007,0,1,-1.00959596238681e-006,4.44145769051829e-008,1,-8.71801546509232e-007,3.72342014998139e-008,1,-7.30859881059587e-007,0,1,-8.557639148421e-007,3.72342014998139e-008,1,-7.30859881059587e-007,4.44145769051829e-008,1,-8.71801546509232e-007,1.53621186882447e-007,1,-7.24822086795029e-007,1.72264847719816e-007,1,-8.12787391168968e-007,1.72264847719816e-007,1,-8.12787391168968e-007,1.53621186882447e-007,1,-7.24822086795029e-007,2.59898769172651e-007,1,-5.60129308269097e-007,3.11115400108974e-007,1,-6.70510530653701e-007,1.66202909213098e-007,1,-2.13398678283738e-007,3.11115400108974e-007,1,-6.70510530653701e-007,2.59898769172651e-007,1,-5.60129308269097e-007,2.90507330191758e-007,1,-3.73001171283249e-007,3.85789569179451e-008,1,-7.5725574788521e-007,0,1,-7.86372936545376e-007,0,1,-8.557639148421e-007,3.72342014998139e-008,1,-7.30859881059587e-007,3.85789569179451e-008,1,-7.5725574788521e-007,3.72342014998139e-008,1,-7.30859881059587e-007,1.72264847719816e-007,1,-8.12787391168968e-007,1.62889577381975e-007,1,-7.68552638419351e-007,1.62889577381975e-007,1,-7.68552638419351e-007,1.72264847719816e-007,1,-8.12787391168968e-007,3.11115400108974e-007,1,-6.70510530653701e-007,3.46635147252528e-007,1,-7.47062074424321e-007,
  1412. 1.66202909213098e-007,1,-2.13398678283738e-007,2.40975509768759e-007,1,-3.09404072140751e-007,3.46635147252528e-007,1,-7.47062074424321e-007,3.11115400108974e-007,1,-6.70510530653701e-007,0,1,-7.86372936545376e-007,3.85789569179451e-008,1,-7.5725574788521e-007,4.11560989732607e-008,1,-8.07841786354402e-007,0,1,-7.86372936545376e-007,4.11560989732607e-008,1,-8.07841786354402e-007,3.85789569179451e-008,1,-7.5725574788521e-007,1.62889577381975e-007,1,-7.68552638419351e-007,1.61009239718624e-007,1,-7.59680688133813e-007,1.61009239718624e-007,1,-7.59680688133813e-007,1.62889577381975e-007,1,-7.68552638419351e-007,3.46635147252528e-007,1,-7.47062074424321e-007,3.19812158977584e-007,1,-6.89253624841513e-007,1.68682859680303e-007,1,-2.16582847656355e-007,3.19812158977584e-007,1,-6.89253624841513e-007,3.46635147252528e-007,1,-7.47062074424321e-007,2.40975509768759e-007,1,-3.09404072140751e-007,3.79625682001006e-008,1,-7.45156796710944e-007,0,1,-8.73747865171026e-007,0,1,-7.86372936545376e-007,4.11560989732607e-008,1,-8.07841786354402e-007,3.79625682001006e-008,1,-7.45156796710944e-007,4.11560989732607e-008,1,-8.07841786354402e-007,1.61009239718624e-007,1,-7.59680688133813e-007,1.64219031262292e-007,1,-7.74825252847222e-007,1.64219031262292e-007,1,-7.74825252847222e-007,1.61009239718624e-007,1,-7.59680688133813e-007,3.19812158977584e-007,1,-6.89253624841513e-007,3.439949409767e-007,1,-7.41371934509516e-007,1.68682859680303e-007,1,-2.16582847656355e-007,2.33731668686232e-007,1,-3.00103238259908e-007,3.439949409767e-007,1,-7.41371934509516e-007,3.19812158977584e-007,1,-6.89253624841513e-007,3.90930621207986e-010,1,-0,-4.06708934380055e-014,1,9.40595783091537e-015,-1.22012683702148e-013,1,2.82178726457132e-014,-3.75461040036384e-009,1,0,2.16148094978053e-007,1,-2.77530062930964e-007,-3.17650738340929e-014,1,2.57827223790587e-014,-0,1,0,1.60596883347353e-007,1,-2.06203381480918e-007,3.37330074984266e-009,1,-1.64842262062592e-009,-3.51236817408562e-010,1,1.71638023238607e-010,-0,1,0,-3.17650738340929e-014,1,2.57827223790587e-014,
  1413. -1.22012683702148e-013,1,2.82178726457132e-014,-4.06708934380055e-014,1,9.40595783091537e-015,-3.51236817408562e-010,1,1.71638023238607e-010,3.37330074984266e-009,1,-1.64842262062592e-009,-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,1.8528855605382e-007,1,-2.3790700254267e-007,-0,1,0,-0,1,0,1.23031895782333e-007,1,-1.57970632130855e-007,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,1.88655960187134e-007,1,-2.42230697722334e-007,-0,1,0,-0,1,0,1.8528855605382e-007,1,-2.3790700254267e-007,-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,1.92428004197609e-007,1,-2.47073927539532e-007,-0,1,0,-0,1,0,1.88655960187134e-007,1,-2.42230697722334e-007,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,1.60356677270102e-007,1,-2.05894977511889e-007,-0,1,0,-0,1,0,1.92428004197609e-007,1,-2.47073927539532e-007,-4.06708934380055e-014,1,9.40595783091537e-015,3.90930621207986e-010,1,-0,0,1,0,-0,1,0,-4.06708934380055e-014,1,9.40595783091537e-015,-0,1,0,-0,1,0,-3.51236817408562e-010,1,1.71638023238607e-010,-3.51236817408562e-010,1,1.71638023238607e-010,-0,1,0,-0,1,0,-0,1,0,1.60596883347353e-007,1,-2.06203381480918e-007,-0,1,0,-0,1,0,1.60356677270102e-007,1,-2.05894977511889e-007,0.630203664302826,-0,0.776429951190948,0.630194187164307,-0,0.776437640190125,0.714178204536438,-0,0.699963927268982,0.714179635047913,-0,0.699962556362152,0.630203664302826,-0,0.776429951190948,0.472875148057938,-0,0.881129443645477,0.404575556516647,-0,0.914504587650299,0.630194187164307,-0,0.776437640190125,0.472875148057938,-0,0.881129443645477,0.262206703424454,-0,0.965011835098267,0.188134878873825,-0,0.98214328289032,0.404575556516647,-0,0.914504587650299,0.113398842513561,-0,0.993549525737762,0.188134878873825,-0,0.98214328289032,0.262206703424454,-0,0.965011835098267,0.113397322595119,-0,0.993549704551697,0.600233197212219,0,0.799825072288513,0.714181840419769,0,0.699960291385651,0.714182674884796,0,0.699959397315979,
  1414. 0.659266710281372,0,0.751909196376801,0.404580414295197,0,0.914502441883087,0.600233197212219,0,0.799825072288513,0.659266710281372,0,0.751909196376801,0.472892194986343,0,0.881120383739471,0.225321635603905,0,0.974284470081329,0.404580414295197,0,0.914502441883087,0.472892194986343,0,0.881120383739471,0.225321501493454,0,0.974284470081329,0.113388560712337,0,0.993550717830658,0.113392181694508,0,0.993550300598145,0.225321635603905,0,0.974284470081329,0.225321501493454,0,0.974284470081329,2.33731668686232e-007,1,-3.00103238259908e-007,-4.77538755205842e-008,1,3.87606213791969e-008,-3.20712167933834e-008,1,2.60313974820292e-008,3.72514534774382e-008,1,-4.78295518746563e-008,-1.91681806427368e-007,1,0,3.40507995133521e-008,1,-7.87489362608085e-009,6.0466362583611e-008,1,-1.39839917423501e-008,-3.82178733104865e-008,1,0,3.40507995133521e-008,1,-7.87489362608085e-009,1.66508087318107e-007,1,-8.13685900880046e-008,2.74935754163153e-008,1,-1.34354642966628e-008,6.0466362583611e-008,1,-1.39839917423501e-008,1.66508087318107e-007,1,-8.13685900880046e-008,-3.20712167933834e-008,1,2.60313974820292e-008,-4.77538755205842e-008,1,3.87606213791969e-008,2.74935754163153e-008,1,-1.34354642966628e-008,0,1,0,2.90507330191758e-007,1,-3.73001171283249e-007,2.69625132887086e-007,1,-3.46189182209855e-007,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,2.90507330191758e-007,1,-3.73001171283249e-007,0,1,0,0,1,0,1.66202909213098e-007,1,-2.13398678283738e-007,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,2.40975509768759e-007,1,-3.09404072140751e-007,1.66202909213098e-007,1,-2.13398678283738e-007,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,2.40975509768759e-007,1,-3.09404072140751e-007,0,1,0,0,1,0,1.68682859680303e-007,1,-2.16582847656355e-007,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,-4.77538755205842e-008,1,3.87606213791969e-008,2.33731668686232e-007,1,-3.00103238259908e-007,1.68682859680303e-007,1,-2.16582847656355e-007,
  1415. 0,1,0,-4.77538755205842e-008,1,3.87606213791969e-008,0,1,0,0,1,0,2.74935754163153e-008,1,-1.34354642966628e-008,2.74935754163153e-008,1,-1.34354642966628e-008,0,1,0,0,1,0,6.0466362583611e-008,1,-1.39839917423501e-008,0,1,0,-3.82178733104865e-008,1,0,6.0466362583611e-008,1,-1.39839917423501e-008,0,1,0,2.40208630764016e-010,1,3.08423342421094e-010,8.96491031637889e-015,1,7.27652885997932e-015,2.68947309491367e-014,1,2.18295874269709e-014,-2.30704033654661e-009,1,-2.96219626605421e-009,-3.75461040036384e-009,1,0,1.08167259329182e-014,1,2.50159280158649e-015,0,1,-0,3.90930621207986e-010,1,-0,3.37339600697817e-009,1,1.64846902794835e-009,-3.51229767492356e-010,1,-1.71634581547231e-010,0,1,-0,1.08167259329182e-014,1,2.50159280158649e-015,2.68947309491367e-014,1,2.18295874269709e-014,8.96491031637889e-015,1,7.27652885997932e-015,-3.51229767492356e-010,1,-1.71634581547231e-010,3.37339600697817e-009,1,1.64846902794835e-009,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-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,8.96491031637889e-015,1,7.27652885997932e-015,2.40208630764016e-010,1,3.08423342421094e-010,0,1,-0,0,1,-0,8.96491031637889e-015,1,7.27652885997932e-015,0,1,-0,0,1,-0,-3.51229767492356e-010,1,-1.71634581547231e-010,-3.51229767492356e-010,1,-1.71634581547231e-010,0,1,-0,0,1,-0,0,1,-0,3.90930621207986e-010,1,-0,0,1,-0,0,1,-0,0,1,0,-0.225322365760803,0,0.97428435087204,-0.225335836410522,0,0.974281191825867,-0.113394886255264,0,0.993550002574921,-0.113395348191261,0,0.993549942970276,-0.225322365760803,0,0.97428435087204,-0.404596030712128,0,0.914495527744293,-0.472898215055466,0,0.881117045879364,-0.225335836410522,0,0.974281191825867,-0.404596030712128,0,0.914495527744293,-0.600225210189819,0,0.79983115196228,
  1416. -0.659256994724274,0,0.751917779445648,-0.472898215055466,0,0.881117045879364,-0.714175403118134,0,0.699966788291931,-0.659256994724274,0,0.751917779445648,-0.600225210189819,0,0.79983115196228,-0.714178204536438,0,0.699963927268982,-0.262197911739349,0,0.965014159679413,-0.113392181694508,0,0.993550300598145,-0.113388560712337,0,0.993550717830658,-0.188122168183327,0,0.982145726680756,-0.472890198230743,0,0.881121397018433,-0.262197911739349,0,0.965014159679413,-0.188122168183327,0,0.982145726680756,-0.404582738876343,0,0.914501488208771,-0.630203127861023,0,0.776430428028107,-0.472890198230743,0,0.881121397018433,-0.404582738876343,0,0.914501488208771,-0.630205035209656,0,0.776428759098053,-0.714182674884796,0,0.699959397315979,-0.714181840419769,0,0.699960291385651,-0.630203127861023,0,0.776430428028107,-0.630205035209656,0,0.776428759098053,-3.82178733104865e-008,1,0,-5.99224989628055e-008,1,-1.38582141318011e-008,-4.02435880175744e-008,1,-9.30709287416676e-009,-1.91681806427368e-007,1,0,-1.13876907903432e-007,1,-1.46213935181549e-007,2.96031199553681e-008,1,2.40281075036819e-008,4.81873101421115e-008,1,3.91124252985264e-008,-2.26468657160694e-008,1,-2.90777766309702e-008,2.96031199553681e-008,1,2.40281075036819e-008,1.66508598908877e-007,1,8.13688387779621e-008,2.74933267263577e-008,1,1.34353426162193e-008,4.81873101421115e-008,1,3.91124252985264e-008,1.66508598908877e-007,1,8.13688387779621e-008,-4.02435880175744e-008,1,-9.30709287416676e-009,-5.99224989628055e-008,1,-1.38582141318011e-008,2.74933267263577e-008,1,1.34353426162193e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,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,-5.99224989628055e-008,1,-1.38582141318011e-008,-3.82178733104865e-008,1,0,0,1,0,0,1,0,-5.99224989628055e-008,1,-1.38582141318011e-008,
  1417. 0,1,0,0,1,0,2.74933267263577e-008,1,1.34353426162193e-008,2.74933267263577e-008,1,1.34353426162193e-008,0,1,0,0,1,0,4.81873101421115e-008,1,3.91124252985264e-008,0,1,0,-2.26468657160694e-008,1,-2.90777766309702e-008,4.81873101421115e-008,1,3.91124252985264e-008,0,1,0,0,1,0,1.36992856294982e-011,1,3.19510196078454e-010,4.10978577558563e-011,1,9.58530588235362e-010,0,1,-5.6955724581087e-009,-2.30704033654661e-009,1,-2.96219626605421e-009,6.5419382659236e-016,1,1.40993504509925e-015,0,1,-0,2.40208630764016e-010,1,3.08423342421094e-010,7.52668316561511e-010,1,3.60332297333343e-009,-7.99437668841385e-011,1,-3.82722659120205e-010,0,1,-0,6.5419382659236e-016,1,1.40993504509925e-015,4.10978577558563e-011,1,9.58530588235362e-010,1.36992856294982e-011,1,3.19510196078454e-010,-7.99437668841385e-011,1,-3.82722659120205e-010,7.52668316561511e-010,1,3.60332297333343e-009,0,1,-0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,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,1.36992856294982e-011,1,3.19510196078454e-010,0,1,0,0,1,0,0,1,-0,1.36992856294982e-011,1,3.19510196078454e-010,0,1,-0,0,1,-0,-7.99437668841385e-011,1,-3.82722659120205e-010,-7.99437668841385e-011,1,-3.82722659120205e-010,0,1,-0,0,1,-0,0,1,-0,2.40208630764016e-010,1,3.08423342421094e-010,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-6.65516199660487e-005,1,0,-0.000266206508968025,1,0,-0.000133103239932097,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-6.65516199660487e-005,1,0,0,1,-0,0,1,-0,-0.907111823558807,0,0.420889765024185,-0.907116293907166,0,0.42087996006012,-0.85353696346283,0,0.521032273769379,-0.853539168834686,0,0.521028637886047,-0.907111823558807,0,0.420889765024185,
  1418. -0.978547930717468,0,0.206019565463066,-0.978412628173828,0,0.206660911440849,-0.907116293907166,0,0.42087996006012,-0.978547930717468,0,0.206019565463066,-0.998921453952789,0,0.0464330315589905,-0.998890042304993,0,0.0471036322414875,-0.978412628173828,0,0.206660911440849,-1,0,1.20173363029608e-005,-0.998890042304993,0,0.0471036322414875,-0.998921453952789,0,0.0464330315589905,-1,0,6.00866815148038e-006,-0.922455012798309,0,0.386104911565781,-0.853537559509277,0,0.521031379699707,-0.853533685207367,0,0.521037697792053,-0.890455305576324,0,0.455070614814758,-0.985651850700378,0,0.168791681528091,-0.922455012798309,0,0.386104911565781,-0.890455305576324,0,0.455070614814758,-0.969929277896881,0,0.243387132883072,-0.998921453952789,0,0.0464330315589905,-0.985651850700378,0,0.168791681528091,-0.969929277896881,0,0.243387132883072,-0.998890578746796,0,0.047093290835619,-1,-0,0,-1,-0,0,-0.998921453952789,0,0.0464330315589905,-0.998890578746796,0,0.047093290835619,-2.26468657160694e-008,1,-2.90777766309702e-008,-2.5084476718007e-008,1,-5.40616333921662e-008,-1.60479203259456e-008,1,-3.45862005701747e-008,-1.13876907903432e-007,1,-1.46213935181549e-007,0,1,-4.26673551601198e-007,-8.89500584300151e-010,1,-1.74632130978125e-008,3.17740078692452e-009,1,6.2380649978877e-008,0,1,-1.06668387900299e-007,-8.89500584300151e-010,1,-1.74632130978125e-008,3.87277196978175e-008,1,1.82735092835173e-007,6.34322105952378e-009,1,2.99302165274185e-008,3.17740078692452e-009,1,6.2380649978877e-008,3.87277196978175e-008,1,1.82735092835173e-007,-1.60479203259456e-008,1,-3.45862005701747e-008,-2.5084476718007e-008,1,-5.40616333921662e-008,6.34322105952378e-009,1,2.99302165274185e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,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,
  1419. 0,1,0,0,1,0,-0,1,0,-2.5084476718007e-008,1,-5.40616333921662e-008,-2.26468657160694e-008,1,-2.90777766309702e-008,0,1,0,0,1,0,-2.5084476718007e-008,1,-5.40616333921662e-008,0,1,0,0,1,0,6.34322105952378e-009,1,2.99302165274185e-008,6.34322105952378e-009,1,2.99302165274185e-008,0,1,0,0,1,0,3.17740078692452e-009,1,6.2380649978877e-008,-0,1,0,0,1,-1.06668387900299e-007,3.17740078692452e-009,1,6.2380649978877e-008,0,1,0
  1420. }
  1421. BinormalsW: *944 {
  1422. 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
  1423. }
  1424. }
  1425. LayerElementTangent: 0 {
  1426. Version: 102
  1427. Name: "map1"
  1428. MappingInformationType: "ByPolygonVertex"
  1429. ReferenceInformationType: "Direct"
  1430. Tangents: *2832 {
  1431. a: 0.614456534385681,-2.61364078824045e-007,-0.788950622081757,0.420889556407928,-5.11959285631747e-007,-0.907111883163452,0.420889586210251,-5.18086153533659e-007,-0.907111883163452,0.614456534385681,-3.51771120676858e-007,-0.788950622081757,0,-4.35606892779106e-007,-1,0.0428365394473076,-4.67689744709787e-007,-0.999082088470459,0.0428365394473076,-4.52206876389027e-007,-0.999082088470459,0,-4.07326638196537e-007,-1,0.204468712210655,-5.02847569805454e-007,-0.978873133659363,0.204468712210655,-5.25302027654107e-007,-0.978873133659363,0.0428365394473076,-4.52206876389027e-007,-0.999082088470459,0.0428365394473076,-4.67689744709787e-007,-0.999082088470459,0.420889586210251,-5.18086153533659e-007,-0.907111883163452,0.420889556407928,-5.11959285631747e-007,-0.907111883163452,0.204468712210655,-5.25302027654107e-007,-0.978873133659363,0.204468712210655,-5.02847569805454e-007,-0.978873133659363,0.420889556407928,-5.54846280920174e-007,-0.907111883163452,0.614456534385681,-3.01548624292991e-007,-0.788950622081757,0.614456534385681,-2.0022878288728e-007,-0.788950622081757,0.420889586210251,-6.00684245455341e-007,-0.907111883163452,0.420889556407928,-5.54846280920174e-007,-0.907111883163452,0.420889586210251,-6.00684245455341e-007,-0.907111883163452,0.204468697309494,-2.00256636162521e-007,-0.978873133659363,0.204468712210655,-4.0127133615897e-007,-0.978873133659363,0.204468712210655,-4.0127133615897e-007,-0.978873133659363,0.204468697309494,-2.00256636162521e-007,-0.978873133659363,0.0428365394473076,-2.51620974722755e-007,-0.999082088470459,0.0428365394473076,-2.52630854902236e-007,-0.999082088470459,0,-5.06815808876127e-007,-1,0.0428365394473076,-2.52630854902236e-007,-0.999082088470459,0.0428365394473076,-2.51620974722755e-007,-0.999082088470459,0,-5.02780039823847e-007,-1,0.614456534385681,-3.01548624292991e-007,-0.788950622081757,0.420889556407928,-5.54846280920174e-007,-0.907111883163452,0.420889556407928,-4.65146058559185e-007,-0.907111883163452,0.614456534385681,-3.07028926727071e-007,-0.788950622081757,
  1432. 0.420889556407928,-4.65146058559185e-007,-0.907111883163452,0.420889556407928,-5.54846280920174e-007,-0.907111883163452,0.204468712210655,-4.0127133615897e-007,-0.978873133659363,0.204468712210655,-5.09284632244089e-007,-0.978873133659363,0.204468712210655,-5.09284632244089e-007,-0.978873133659363,0.204468712210655,-4.0127133615897e-007,-0.978873133659363,0.0428365394473076,-2.52630854902236e-007,-0.999082088470459,0.0428365394473076,-4.5856427277613e-007,-0.999082088470459,0,-5.19110358254693e-007,-1,0.0428365394473076,-4.5856427277613e-007,-0.999082088470459,0.0428365394473076,-2.52630854902236e-007,-0.999082088470459,0,-5.06815808876127e-007,-1,0.420889556407928,-4.95847302772745e-007,-0.907111883163452,0.614456534385681,-3.13167760168653e-007,-0.788950622081757,0.614456534385681,-3.07028926727071e-007,-0.788950622081757,0.420889556407928,-4.65146058559185e-007,-0.907111883163452,0.420889556407928,-4.95847302772745e-007,-0.907111883163452,0.420889556407928,-4.65146058559185e-007,-0.907111883163452,0.204468712210655,-5.09284632244089e-007,-0.978873133659363,0.204468712210655,-4.39032049825983e-007,-0.978873133659363,0.204468712210655,-4.39032049825983e-007,-0.978873133659363,0.204468712210655,-5.09284632244089e-007,-0.978873133659363,0.0428365394473076,-4.5856427277613e-007,-0.999082088470459,0.0428365394473076,-5.68884729545971e-007,-0.999082088470459,0,-4.8056131163321e-007,-1,0.0428365394473076,-5.68884729545971e-007,-0.999082088470459,0.0428365394473076,-4.5856427277613e-007,-0.999082088470459,0,-5.19110358254693e-007,-1,0.614456534385681,-3.13167760168653e-007,-0.788950622081757,0.420889556407928,-4.95847302772745e-007,-0.907111883163452,0.420889556407928,-5.3499303476201e-007,-0.907111883163452,0.614456534385681,-2.60973166632539e-007,-0.788950622081757,0.420889556407928,-5.3499303476201e-007,-0.907111883163452,0.420889556407928,-4.95847302772745e-007,-0.907111883163452,0.204468712210655,-4.39032049825983e-007,-0.978873133659363,0.204468712210655,-5.04923150401737e-007,-0.978873133659363,0.204468712210655,-5.04923150401737e-007,-0.978873133659363,
  1433. 0.204468712210655,-4.39032049825983e-007,-0.978873133659363,0.0428365394473076,-5.68884729545971e-007,-0.999082088470459,0.0428365394473076,-4.74070645850588e-007,-0.999082088470459,0,-3.93186496694398e-007,-1,0.0428365394473076,-4.74070645850588e-007,-0.999082088470459,0.0428365394473076,-5.68884729545971e-007,-0.999082088470459,0,-4.8056131163321e-007,-1,0.420889556407928,-5.11959285631747e-007,-0.907111883163452,0.614456534385681,-2.61364078824045e-007,-0.788950622081757,0.614456534385681,-2.60973166632539e-007,-0.788950622081757,0.420889556407928,-5.3499303476201e-007,-0.907111883163452,0.420889556407928,-5.11959285631747e-007,-0.907111883163452,0.420889556407928,-5.3499303476201e-007,-0.907111883163452,0.204468712210655,-5.04923150401737e-007,-0.978873133659363,0.204468712210655,-5.25302027654107e-007,-0.978873133659363,0.204468712210655,-5.25302027654107e-007,-0.978873133659363,0.204468712210655,-5.04923150401737e-007,-0.978873133659363,0.0428365394473076,-4.74070645850588e-007,-0.999082088470459,0.0428365394473076,-4.52206876389027e-007,-0.999082088470459,0,-4.07326638196537e-007,-1,0.0428365394473076,-4.52206876389027e-007,-0.999082088470459,0.0428365394473076,-4.74070645850588e-007,-0.999082088470459,0,-3.93186496694398e-007,-1,1,-0,0,1,3.57067910954356e-005,-0,1,0.000107120366010349,-0,1,5.35601830051746e-005,-0,1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0,1,-0,0,1,-0,0,1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0,1,-0,0,1,-0,0,1,3.57067910954356e-005,-0,1,-0,0,1,-0,0,1,-0,0,-0.0464330315589905,0,0.998921453952789,-0.047112699598074,0,0.998889625072479,-7.39551387596293e-006,-0,1,-3.69775693798147e-006,0,1,-0.0464330315589905,0,0.998921453952789,-0.168814837932587,-0,0.985647737979889,-0.243400409817696,-0,0.969925880432129,-0.047112699598074,0,0.998889625072479,-0.168814837932587,-0,0.985647737979889,-0.386096000671387,0,0.922458589076996,-0.455059349536896,0,0.890461146831512,-0.243400409817696,-0,0.969925880432129,-0.521029531955719,0,0.853538632392883,-0.455059349536896,0,0.890461146831512,-0.386096000671387,0,0.922458589076996,
  1434. -0.521027326583862,0,0.853540003299713,0.0464330315589905,0,-0.998921453952789,-0,0,-1,-0,0,-1,0.0470979660749435,0,-0.998890280723572,0.206029489636421,0,-0.978545784950256,0.0464330315589905,0,-0.998921453952789,0.0470979660749435,0,-0.998890280723572,0.206680774688721,0,-0.978408455848694,0.420889765024185,0,-0.907111823558807,0.206029489636421,0,-0.978545784950256,0.206680774688721,0,-0.978408455848694,0.42089307308197,0,-0.907110273838043,0.521037697792053,0,-0.853533685207367,0.521031379699707,0,-0.853537559509277,0.420889765024185,0,-0.907111823558807,0.42089307308197,0,-0.907110273838043,0,8.73747865171026e-007,1,-0.0508797578513622,7.46123248518415e-007,0.998704850673676,-0.0508797541260719,6.96849099313113e-007,0.998704791069031,0,6.56874362903181e-007,1,-0.614461421966553,6.06245578183007e-008,0.788946866989136,-0.420896381139755,7.87323358508729e-007,0.907108724117279,-0.420896470546722,8.17291152088728e-007,0.907108724117279,-0.614461421966553,3.80384619802498e-007,0.788946866989136,-0.420896381139755,7.87323358508729e-007,0.907108724117279,-0.207337707281113,9.40939287374931e-007,0.978269517421722,-0.207337647676468,7.92036587426992e-007,0.978269457817078,-0.420896470546722,8.17291152088728e-007,0.907108724117279,-0.207337707281113,9.40939287374931e-007,0.978269517421722,-0.0508797541260719,6.96849099313113e-007,0.998704791069031,-0.0508797578513622,7.46123248518415e-007,0.998704850673676,-0.207337647676468,7.92036587426992e-007,0.978269457817078,-0.0508797541260719,8.72932218953792e-007,0.998704791069031,0,1.00959596238681e-006,1,0,1.00556007964769e-006,1,-0.0508797504007816,9.45048611811217e-007,0.998704791069031,-0.0508797541260719,8.72932218953792e-007,0.998704791069031,-0.0508797504007816,9.45048611811217e-007,0.998704791069031,-0.207337707281113,5.88491957387305e-007,0.978269517421722,-0.207337647676468,7.4092264412684e-007,0.978269457817078,-0.207337647676468,7.4092264412684e-007,0.978269457817078,-0.207337707281113,5.88491957387305e-007,0.978269517421722,-0.420896410942078,7.31331624592713e-007,0.907108724117279,
  1435. -0.4208964407444,6.17488637999486e-007,0.907108724117279,-0.614461421966553,4.387991339172e-007,0.788946866989136,-0.614461421966553,4.7278368242587e-007,0.788946866989136,-0.4208964407444,6.17488637999486e-007,0.907108724117279,-0.420896410942078,7.31331624592713e-007,0.907108724117279,0,1.00959596238681e-006,1,-0.0508797541260719,8.72932218953792e-007,0.998704791069031,-0.0508797541260719,7.3180780191251e-007,0.998704791069031,0,8.557639148421e-007,1,-0.0508797541260719,7.3180780191251e-007,0.998704791069031,-0.0508797541260719,8.72932218953792e-007,0.998704791069031,-0.207337647676468,7.4092264412684e-007,0.978269457817078,-0.207337647676468,8.30841997867537e-007,0.978269457817078,-0.207337647676468,8.30841997867537e-007,0.978269457817078,-0.207337647676468,7.4092264412684e-007,0.978269457817078,-0.4208964407444,6.17488637999486e-007,0.907108724117279,-0.4208964407444,7.39173287911399e-007,0.907108664512634,-0.614461421966553,2.70485514874963e-007,0.788946866989136,-0.4208964407444,7.39173287911399e-007,0.907108664512634,-0.4208964407444,6.17488637999486e-007,0.907108724117279,-0.614461421966553,4.7278368242587e-007,0.788946866989136,-0.0508797541260719,7.58237888476287e-007,0.998704791069031,0,7.86372936545376e-007,1,0,8.557639148421e-007,1,-0.0508797541260719,7.3180780191251e-007,0.998704791069031,-0.0508797541260719,7.58237888476287e-007,0.998704791069031,-0.0508797541260719,7.3180780191251e-007,0.998704791069031,-0.207337647676468,8.30841997867537e-007,0.978269457817078,-0.207337647676468,7.85624592936074e-007,0.978269457817078,-0.207337647676468,7.85624592936074e-007,0.978269457817078,-0.207337647676468,8.30841997867537e-007,0.978269457817078,-0.4208964407444,7.39173287911399e-007,0.907108664512634,-0.4208964407444,8.23563993890275e-007,0.907108724117279,-0.614461421966553,2.70485514874963e-007,0.788946866989136,-0.614461421966553,3.92173546970298e-007,0.788946866989136,-0.4208964407444,8.23563993890275e-007,0.907108724117279,-0.4208964407444,7.39173287911399e-007,0.907108664512634,0,7.86372936545376e-007,1,
  1436. -0.0508797541260719,7.58237888476287e-007,0.998704791069031,-0.0508797541260719,8.08889524250844e-007,0.998704791069031,0,7.86372936545376e-007,1,-0.0508797541260719,8.08889524250844e-007,0.998704791069031,-0.0508797541260719,7.58237888476287e-007,0.998704791069031,-0.207337647676468,7.85624592936074e-007,0.978269457817078,-0.207337647676468,7.76555623360764e-007,0.978269457817078,-0.207337647676468,7.76555623360764e-007,0.978269457817078,-0.207337647676468,7.85624592936074e-007,0.978269457817078,-0.4208964407444,8.23563993890275e-007,0.907108724117279,-0.4208964407444,7.59835756980465e-007,0.907108664512634,-0.614461421966553,2.74521482879209e-007,0.788946866989136,-0.4208964407444,7.59835756980465e-007,0.907108664512634,-0.4208964407444,8.23563993890275e-007,0.907108724117279,-0.614461421966553,3.92173546970298e-007,0.788946866989136,-0.0508797578513622,7.46123248518415e-007,0.998704850673676,0,8.73747865171026e-007,1,0,7.86372936545376e-007,1,-0.0508797541260719,8.08889524250844e-007,0.998704791069031,-0.0508797578513622,7.46123248518415e-007,0.998704850673676,-0.0508797541260719,8.08889524250844e-007,0.998704791069031,-0.207337647676468,7.76555623360764e-007,0.978269457817078,-0.207337647676468,7.92036587426992e-007,0.978269457817078,-0.207337647676468,7.92036587426992e-007,0.978269457817078,-0.207337647676468,7.76555623360764e-007,0.978269457817078,-0.4208964407444,7.59835756980465e-007,0.907108664512634,-0.420896470546722,8.17291152088728e-007,0.907108724117279,-0.614461421966553,2.74521482879209e-007,0.788946866989136,-0.614461421966553,3.80384619802498e-007,0.788946866989136,-0.420896470546722,8.17291152088728e-007,0.907108724117279,-0.4208964407444,7.59835756980465e-007,0.907108664512634,1,-3.9093059345241e-010,2.96059482056635e-016,0.974284172058105,4.17443857259059e-014,-0.225322708487511,0.974284172058105,1.25233157177718e-013,-0.225322693586349,1,3.75461040036384e-009,-4.53519710674755e-009,0.614456534385681,-3.51771120676858e-007,-0.788950622081757,0.776429712772369,4.0911718457437e-014,-0.63020384311676,
  1437. 0.776429772377014,0,-0.63020384311676,0.614456534385681,-2.61364078824045e-007,-0.788950622081757,0.898462891578674,-3.75452469114634e-009,-0.439049601554871,0.898462772369385,3.90930787741439e-010,-0.439049601554871,0.776429772377014,0,-0.63020384311676,0.776429712772369,4.0911718457437e-014,-0.63020384311676,0.974284172058105,1.25233157177718e-013,-0.225322693586349,0.974284172058105,4.17443857259059e-014,-0.225322708487511,0.898462772369385,3.90930787741439e-010,-0.439049601554871,0.898462891578674,-3.75452469114634e-009,-0.439049601554871,0.974284172058105,0,-0.225322708487511,1,0,2.96059482056635e-016,1,0,4.53519710674755e-009,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,0.898462891578674,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.898462891578674,0,-0.439049601554871,0.776429712772369,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-3.01548624292991e-007,-0.788950622081757,0.776429772377014,0,-0.63020384311676,0.776429712772369,0,-0.63020384311676,0.614456534385681,-2.0022878288728e-007,-0.788950622081757,1,0,2.96059482056635e-016,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,1,0,2.96059482056635e-016,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-3.07028926727071e-007,-0.788950622081757,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-3.01548624292991e-007,-0.788950622081757,0.974284172058105,0,-0.225322708487511,1,0,2.96059482056635e-016,1,0,2.96059482056635e-016,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,0.898462772369385,0,-0.439049601554871,
  1438. 0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-3.13167760168653e-007,-0.788950622081757,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-3.07028926727071e-007,-0.788950622081757,1,0,2.96059482056635e-016,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,1,0,2.96059482056635e-016,0.974284172058105,0,-0.225322708487511,0.974284172058105,0,-0.225322708487511,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-2.60973166632539e-007,-0.788950622081757,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-3.13167760168653e-007,-0.788950622081757,0.974284172058105,4.17443857259059e-014,-0.225322708487511,1,-3.9093059345241e-010,2.96059482056635e-016,1,0,2.96059482056635e-016,0.974284172058105,0,-0.225322708487511,0.974284172058105,4.17443857259059e-014,-0.225322708487511,0.974284172058105,0,-0.225322708487511,0.898462772369385,0,-0.439049601554871,0.898462772369385,3.90930787741439e-010,-0.439049601554871,0.898462772369385,3.90930787741439e-010,-0.439049601554871,0.898462772369385,0,-0.439049601554871,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-2.61364078824045e-007,-0.788950622081757,0.776429772377014,0,-0.63020384311676,0.776429772377014,0,-0.63020384311676,0.614456534385681,-2.60973166632539e-007,-0.788950622081757,-0.776429831981659,0,0.630203604698181,-0.776437640190125,0,0.630194187164307,-0.699963927268982,-0,0.714178204536438,-0.699962556362152,0,0.714179635047913,-0.776429831981659,0,0.630203604698181,-0.881129443645477,-0,0.472875148057938,-0.914504587650299,-0,0.404575556516647,-0.776437640190125,0,0.630194187164307,
  1439. -0.881129443645477,-0,0.472875148057938,-0.965011715888977,0,0.262206673622131,-0.98214316368103,0,0.188134849071503,-0.914504587650299,-0,0.404575556516647,-0.993549644947052,0,0.113398857414722,-0.98214316368103,0,0.188134849071503,-0.965011715888977,0,0.262206673622131,-0.993549823760986,0,0.113397337496281,0.799825072288513,0,-0.600233197212219,0.699960291385651,0,-0.714181840419769,0.699959397315979,0,-0.714182674884796,0.751909196376801,0,-0.659266710281372,0.914502441883087,0,-0.404580414295197,0.799825072288513,0,-0.600233197212219,0.751909196376801,0,-0.659266710281372,0.881120264530182,0,-0.472892135381699,0.974284470081329,0,-0.225321635603905,0.914502441883087,0,-0.404580414295197,0.881120264530182,0,-0.472892135381699,0.974284470081329,0,-0.225321501493454,0.993550717830658,0,-0.113388560712337,0.993550300598145,0,-0.113392181694508,0.974284470081329,0,-0.225321635603905,0.974284470081329,0,-0.225321501493454,-0.614461421966553,3.80384619802498e-007,0.788946866989136,-0.776427447795868,-6.15046218399584e-008,0.630206644535065,-0.776427507400513,-4.13061300719164e-008,0.63020658493042,-0.614461421966553,6.06245578183007e-008,0.788946866989136,-1,-1.91681806427368e-007,0,-0.974284410476685,3.49495508089603e-008,0.225321754813194,-0.974284470081329,6.20623410441112e-008,0.225321739912033,-1,-3.82178733104865e-008,0,-0.974284410476685,3.49495508089603e-008,0.225321754813194,-0.898459672927856,1.85326186397106e-007,0.439056128263474,-0.898459672927856,3.0600791234292e-008,0.439056158065796,-0.974284470081329,6.20623410441112e-008,0.225321739912033,-0.898459672927856,1.85326186397106e-007,0.439056128263474,-0.776427507400513,-4.13061300719164e-008,0.63020658493042,-0.776427447795868,-6.15046218399584e-008,0.630206644535065,-0.898459672927856,3.0600791234292e-008,0.439056158065796,-0.776427447795868,0,0.630206644535065,-0.614461421966553,4.7278368242587e-007,0.788946866989136,-0.614461421966553,4.387991339172e-007,0.788946866989136,-0.776427507400513,0,0.63020658493042,-0.776427447795868,0,0.630206644535065,
  1440. -0.776427507400513,0,0.63020658493042,-0.898459672927856,0,0.439056098461151,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056098461151,-0.974284410476685,0,0.225321754813194,-0.97428435087204,0,0.225321725010872,-1,0,0,-1,0,0,-0.97428435087204,0,0.225321725010872,-0.974284410476685,0,0.225321754813194,-0.614461421966553,4.7278368242587e-007,0.788946866989136,-0.776427447795868,0,0.630206644535065,-0.776427447795868,0,0.630206644535065,-0.614461421966553,2.70485514874963e-007,0.788946866989136,-0.776427447795868,0,0.630206644535065,-0.776427447795868,0,0.630206644535065,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.97428435087204,0,0.225321725010872,-0.974284470081329,0,0.225321769714355,-1,0,0,-0.974284470081329,0,0.225321769714355,-0.97428435087204,0,0.225321725010872,-1,0,0,-0.776427447795868,0,0.630206644535065,-0.614461421966553,3.92173546970298e-007,0.788946866989136,-0.614461421966553,2.70485514874963e-007,0.788946866989136,-0.776427447795868,0,0.630206644535065,-0.776427447795868,0,0.630206644535065,-0.776427447795868,0,0.630206644535065,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.974284470081329,0,0.225321769714355,-0.97428435087204,0,0.225321725010872,-1,0,0,-1,0,0,-0.97428435087204,0,0.225321725010872,-0.974284470081329,0,0.225321769714355,-0.614461421966553,3.92173546970298e-007,0.788946866989136,-0.776427447795868,0,0.630206644535065,-0.776427447795868,0,0.630206644535065,-0.614461421966553,2.74521482879209e-007,0.788946866989136,-0.776427447795868,0,0.630206644535065,-0.776427447795868,0,0.630206644535065,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.97428435087204,0,0.225321725010872,-0.974284470081329,0,0.225321769714355,
  1441. -1,0,0,-0.974284470081329,0,0.225321769714355,-0.97428435087204,0,0.225321725010872,-1,0,0,-0.776427447795868,-6.15046218399584e-008,0.630206644535065,-0.614461421966553,3.80384619802498e-007,0.788946866989136,-0.614461421966553,2.74521482879209e-007,0.788946866989136,-0.776427447795868,0,0.630206644535065,-0.776427447795868,-6.15046218399584e-008,0.630206644535065,-0.776427447795868,0,0.630206644535065,-0.898459672927856,0,0.439056158065796,-0.898459672927856,3.0600791234292e-008,0.439056158065796,-0.898459672927856,3.0600791234292e-008,0.439056158065796,-0.898459672927856,0,0.439056158065796,-0.974284470081329,0,0.225321769714355,-0.974284470081329,6.20623410441112e-008,0.225321739912033,-1,0,0,-1,-3.82178733104865e-008,0,-0.974284470081329,6.20623410441112e-008,0.225321739912033,-0.974284470081329,0,0.225321769714355,0.614456653594971,-3.9092856729539e-010,0.788950622081757,0.776430130004883,-1.15463194561016e-014,0.630203306674957,0.776430130004883,-3.46389583683049e-014,0.630203366279602,0.614456653594971,3.75460285084728e-009,0.788950681686401,1,3.75461040036384e-009,-4.53519710674755e-009,0.974284112453461,-1.11022319403175e-014,0.225323468446732,0.974284052848816,0,0.225323379039764,1,-3.9093059345241e-010,2.96059482056635e-016,0.898462891578674,-3.7546308284675e-009,0.439049601554871,0.898462891578674,3.90923016180267e-010,0.439049571752548,0.974284052848816,0,0.225323379039764,0.974284112453461,-1.11022319403175e-014,0.225323468446732,0.776430130004883,-3.46389583683049e-014,0.630203366279602,0.776430130004883,-1.15463194561016e-014,0.630203306674957,0.898462891578674,3.90923016180267e-010,0.439049571752548,0.898462891578674,-3.7546308284675e-009,0.439049601554871,0.776430130004883,0,0.630203306674957,0.614456653594971,0,0.788950622081757,0.614456534385681,0,0.788950681686401,0.776430130004883,0,0.630203366279602,0.776430130004883,0,0.630203306674957,0.776430130004883,0,0.630203366279602,0.898462891578674,0,0.439049601554871,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049601554871,
  1442. 0.974284112453461,0,0.225323468446732,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,0.974284052848816,0,0.225323408842087,0.974284112453461,0,0.225323468446732,1,0,4.53519710674755e-009,0.614456653594971,0,0.788950622081757,0.776430130004883,0,0.630203306674957,0.776430130004883,0,0.630203306674957,0.614456653594971,0,0.788950622081757,0.776430130004883,0,0.630203306674957,0.776430130004883,0,0.630203306674957,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.974284052848816,0,0.225323408842087,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,0.974284052848816,0,0.225323408842087,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,0.776430130004883,0,0.630203306674957,0.614456653594971,0,0.788950622081757,0.614456653594971,0,0.788950622081757,0.776430130004883,0,0.630203306674957,0.776430130004883,0,0.630203306674957,0.776430130004883,0,0.630203306674957,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.974284052848816,0,0.225323408842087,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,0.974284052848816,0,0.225323408842087,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,0.614456653594971,0,0.788950622081757,0.776430130004883,0,0.630203306674957,0.776430130004883,0,0.630203306674957,0.614456653594971,0,0.788950622081757,0.776430130004883,0,0.630203306674957,0.776430130004883,0,0.630203306674957,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.898462891578674,0,0.439049571752548,0.974284052848816,0,0.225323408842087,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,0.974284052848816,0,0.225323408842087,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,0.776430130004883,-1.15463194561016e-014,0.630203306674957,0.614456653594971,-3.9092856729539e-010,0.788950622081757,
  1443. 0.614456653594971,0,0.788950622081757,0.776430130004883,0,0.630203306674957,0.776430130004883,-1.15463194561016e-014,0.630203306674957,0.776430130004883,0,0.630203306674957,0.898462891578674,0,0.439049571752548,0.898462891578674,3.90923016180267e-010,0.439049571752548,0.898462891578674,3.90923016180267e-010,0.439049571752548,0.898462891578674,0,0.439049571752548,0.974284052848816,0,0.225323408842087,0.974284052848816,0,0.225323379039764,1,-3.9093059345241e-010,2.96059482056635e-016,0.974284052848816,0,0.225323379039764,0.974284052848816,0,0.225323408842087,1,0,2.96059482056635e-016,-0.97428423166275,0,-0.225322335958481,-0.974281191825867,0,-0.225335836410522,-0.993550002574921,0,-0.113394886255264,-0.993549942970276,0,-0.113395348191261,-0.97428423166275,0,-0.225322335958481,-0.914495527744293,0,-0.404596030712128,-0.881117045879364,0,-0.472898215055466,-0.974281191825867,0,-0.225335836410522,-0.914495527744293,0,-0.404596030712128,-0.799831032752991,0,-0.600225150585175,-0.751917660236359,0,-0.659256935119629,-0.881117045879364,0,-0.472898215055466,-0.699966788291931,0,-0.714175403118134,-0.751917660236359,0,-0.659256935119629,-0.799831032752991,0,-0.600225150585175,-0.699963927268982,0,-0.714178204536438,0.965014159679413,0,0.262197911739349,0.993550300598145,0,0.113392181694508,0.993550717830658,0,0.113388560712337,0.982145607471466,0,0.188122138381004,0.881121397018433,0,0.472890198230743,0.965014159679413,0,0.262197911739349,0.982145607471466,0,0.188122138381004,0.914501488208771,0,0.404582738876343,0.776430308818817,0,0.630203068256378,0.881121397018433,0,0.472890198230743,0.914501488208771,0,0.404582738876343,0.776428759098053,0,0.630205035209656,0.699959397315979,0,0.714182674884796,0.699960291385651,0,0.714181840419769,0.776430308818817,0,0.630203068256378,0.776428759098053,0,0.630205035209656,-1,-3.82178733104865e-008,0,-0.97428435087204,-6.15041102491887e-008,-0.225321754813194,-0.974284410476685,-4.13057925641169e-008,-0.225321739912033,-1,-1.91681806427368e-007,0,-0.614461421966553,-1.85328005386509e-007,-0.788946866989136,
  1444. -0.776427507400513,3.8127346613237e-008,-0.63020658493042,-0.776427507400513,6.20628597403083e-008,-0.63020658493042,-0.614461541175842,-3.68564485597744e-008,-0.788946866989136,-0.776427507400513,3.8127346613237e-008,-0.63020658493042,-0.898459672927856,1.85326754831294e-007,-0.439056158065796,-0.898459672927856,3.06005141226251e-008,-0.439056158065796,-0.776427507400513,6.20628597403083e-008,-0.63020658493042,-0.898459672927856,1.85326754831294e-007,-0.439056158065796,-0.974284410476685,-4.13057925641169e-008,-0.225321739912033,-0.97428435087204,-6.15041102491887e-008,-0.225321754813194,-0.898459672927856,3.06005141226251e-008,-0.439056158065796,-0.974284470081329,0,-0.225321769714355,-1,0,0,-1,0,0,-0.974284410476685,0,-0.225321739912033,-0.974284470081329,0,-0.225321769714355,-0.974284410476685,0,-0.225321739912033,-0.898459672927856,0,-0.439056128263474,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056128263474,-0.776427507400513,0,-0.63020658493042,-0.776427447795868,0,-0.630206644535065,-0.614461421966553,0,-0.788946866989136,-0.614461541175842,0,-0.788946866989136,-0.776427447795868,0,-0.630206644535065,-0.776427507400513,0,-0.63020658493042,-1,0,0,-0.974284470081329,0,-0.225321769714355,-0.974284470081329,0,-0.225321769714355,-1,0,0,-0.974284470081329,0,-0.225321769714355,-0.974284470081329,0,-0.225321769714355,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.776427447795868,0,-0.630206644535065,-0.776427447795868,0,-0.63020658493042,-0.614461421966553,0,-0.788946866989136,-0.776427447795868,0,-0.63020658493042,-0.776427447795868,0,-0.630206644535065,-0.614461541175842,0,-0.788946866989136,-0.974284470081329,0,-0.225321769714355,-1,0,0,-1,0,0,-0.974284470081329,0,-0.225321769714355,-0.974284470081329,0,-0.225321769714355,-0.974284470081329,0,-0.225321769714355,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,
  1445. -0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.776427447795868,0,-0.63020658493042,-0.776427447795868,0,-0.630206644535065,-0.614461421966553,0,-0.788946866989136,-0.614461541175842,0,-0.788946866989136,-0.776427447795868,0,-0.630206644535065,-0.776427447795868,0,-0.63020658493042,-1,0,0,-0.974284470081329,0,-0.225321769714355,-0.974284470081329,0,-0.225321769714355,-1,0,0,-0.974284470081329,0,-0.225321769714355,-0.974284470081329,0,-0.225321769714355,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.776427447795868,0,-0.630206644535065,-0.776427447795868,0,-0.63020658493042,-0.614461421966553,0,-0.788946866989136,-0.776427447795868,0,-0.63020658493042,-0.776427447795868,0,-0.630206644535065,-0.614461541175842,0,-0.788946866989136,-0.97428435087204,-6.15041102491887e-008,-0.225321754813194,-1,-3.82178733104865e-008,0,-1,0,0,-0.974284470081329,0,-0.225321769714355,-0.97428435087204,-6.15041102491887e-008,-0.225321754813194,-0.974284470081329,0,-0.225321769714355,-0.898459672927856,0,-0.439056158065796,-0.898459672927856,3.06005141226251e-008,-0.439056158065796,-0.898459672927856,3.06005141226251e-008,-0.439056158065796,-0.898459672927856,0,-0.439056158065796,-0.776427447795868,0,-0.63020658493042,-0.776427507400513,6.20628597403083e-008,-0.63020658493042,-0.614461421966553,0,-0.788946866989136,-0.614461541175842,-3.68564485597744e-008,-0.788946866989136,-0.776427507400513,6.20628597403083e-008,-0.63020658493042,-0.776427447795868,0,-0.63020658493042,0,-0,1,0.0428365394473076,-3.19803739046165e-010,0.999082088470459,0.0428365394473076,-9.59411217138495e-010,0.999082088470459,0,5.6955724581087e-009,1,0.614456653594971,3.75460285084728e-009,0.788950681686401,0.420889586210251,-1.55431223447522e-015,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,-3.9092856729539e-010,0.788950622081757,0.204468697309494,-3.68109320803001e-009,0.978873133659363,0.204468712210655,3.90982912712445e-010,0.978873133659363,
  1446. 0.420889556407928,0,0.907111883163452,0.420889586210251,-1.55431223447522e-015,0.907111883163452,0.0428365394473076,-9.59411217138495e-010,0.999082088470459,0.0428365394473076,-3.19803739046165e-010,0.999082088470459,0.204468712210655,3.90982912712445e-010,0.978873133659363,0.204468697309494,-3.68109320803001e-009,0.978873133659363,0.0428365394473076,0,0.999082088470459,0,-0,1,0,-0,1,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.420889586210251,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,0.420889556407928,0,0.907111883163452,0.420889586210251,0,0.907111883163452,0.614456534385681,0,0.788950681686401,0,-0,1,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,0,-0,1,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,0.0428365394473076,0,0.999082088470459,0,-0,1,0,-0,1,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,0,-0,1,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,
  1447. 0,-0,1,0.0428365394473076,0,0.999082088470459,0.0428365394473076,0,0.999082088470459,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.204468712210655,0,0.978873133659363,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,0.0428365394473076,-3.19803739046165e-010,0.999082088470459,0,-0,1,0,-0,1,0.0428365394473076,0,0.999082088470459,0.0428365394473076,-3.19803739046165e-010,0.999082088470459,0.0428365394473076,0,0.999082088470459,0.204468712210655,0,0.978873133659363,0.204468712210655,3.90982912712445e-010,0.978873133659363,0.204468712210655,3.90982912712445e-010,0.978873133659363,0.204468712210655,0,0.978873133659363,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,-3.9092856729539e-010,0.788950622081757,0.420889556407928,0,0.907111883163452,0.420889556407928,0,0.907111883163452,0.614456653594971,0,0.788950622081757,1,-0,-0,1,6.65516199660487e-005,0,1,0.000266206508968025,-0,1,0.000133103239932097,-0,1,-0,0,1,-0,0,1,-0,-0,1,-0,0,1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0,1,-0,0,1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,6.65516199660487e-005,0,1,-0,-0,1,-0,0,-0.420889765024185,0,-0.907111823558807,-0.420880019664764,0,-0.907116413116455,-0.521032273769379,0,-0.85353696346283,-0.521028697490692,0,-0.853539288043976,-0.420889765024185,0,-0.907111823558807,-0.206019565463066,0,-0.978547930717468,-0.206660911440849,0,-0.978412628173828,-0.420880019664764,0,-0.907116413116455,-0.206019565463066,0,-0.978547930717468,-0.0464330315589905,0,-0.998921453952789,-0.0471036322414875,0,-0.998890042304993,-0.206660911440849,0,-0.978412628173828,-1.20173353934661e-005,0,-1,-0.0471036322414875,0,-0.998890042304993,-0.0464330315589905,0,-0.998921453952789,-6.00866769673303e-006,0,-1,0.386104851961136,0,0.92245489358902,0.521031379699707,0,0.853537559509277,
  1448. 0.521037697792053,0,0.853533685207367,0.455070674419403,0,0.890455424785614,0.16879166662693,0,0.985651731491089,0.386104851961136,0,0.92245489358902,0.455070674419403,0,0.890455424785614,0.243387132883072,0,0.969929277896881,0.0464330315589905,0,0.998921453952789,0.16879166662693,0,0.985651731491089,0.243387132883072,0,0.969929277896881,0.0470932833850384,0,0.998890459537506,-0,0,1,-0,0,1,0.0464330315589905,0,0.998921453952789,0.0470932833850384,0,0.998890459537506,-0.614461541175842,-3.68564485597744e-008,-0.788946866989136,-0.420896381139755,-5.95977489581401e-008,-0.907108724117279,-0.420896410942078,-3.81279576799898e-008,-0.907108724117279,-0.614461421966553,-1.85328005386509e-007,-0.788946866989136,0,-4.26673551601198e-007,-1,-0.0508697405457497,-1.74858527657307e-008,-0.998705327510834,-0.0508697330951691,6.24615239530613e-008,-0.998705327510834,0,-1.06668387900299e-007,-1,-0.0508697405457497,-1.74858527657307e-008,-0.998705327510834,-0.207328647375107,1.86793869261237e-007,-0.97827136516571,-0.207328647375107,3.05950038637093e-008,-0.97827136516571,-0.0508697330951691,6.24615239530613e-008,-0.998705327510834,-0.207328647375107,1.86793869261237e-007,-0.97827136516571,-0.420896410942078,-3.81279576799898e-008,-0.907108724117279,-0.420896381139755,-5.95977489581401e-008,-0.907108724117279,-0.207328647375107,3.05950038637093e-008,-0.97827136516571,-0.420896470546722,0,-0.907108724117279,-0.614461541175842,0,-0.788946866989136,-0.614461421966553,0,-0.788946866989136,-0.420896381139755,0,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,-0.420896381139755,0,-0.907108724117279,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.0508697405457497,0,-0.998705327510834,-0.0508697330951691,0,-0.998705327510834,0,-0,-1,0,0,-1,-0.0508697330951691,0,-0.998705327510834,-0.0508697405457497,0,-0.998705327510834,-0.614461541175842,0,-0.788946866989136,-0.420896470546722,0,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,
  1449. -0.614461421966553,0,-0.788946866989136,-0.420896470546722,0,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.0508697330951691,0,-0.998705327510834,-0.0508697293698788,0,-0.998705267906189,0,0,-1,-0.0508697293698788,0,-0.998705267906189,-0.0508697330951691,0,-0.998705327510834,0,0,-1,-0.420896470546722,0,-0.907108724117279,-0.614461541175842,0,-0.788946866989136,-0.614461421966553,0,-0.788946866989136,-0.420896470546722,0,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.0508697293698788,0,-0.998705267906189,-0.0508697330951691,0,-0.998705327510834,0,0,-1,0,0,-1,-0.0508697330951691,0,-0.998705327510834,-0.0508697293698788,0,-0.998705267906189,-0.614461541175842,0,-0.788946866989136,-0.420896470546722,0,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,-0.614461421966553,0,-0.788946866989136,-0.420896470546722,0,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,0,-0.97827136516571,-0.0508697330951691,0,-0.998705327510834,-0.0508697293698788,0,-0.998705267906189,0,0,-1,-0.0508697293698788,0,-0.998705267906189,-0.0508697330951691,0,-0.998705327510834,0,0,-1,-0.420896381139755,-5.95977489581401e-008,-0.907108724117279,-0.614461541175842,-3.68564485597744e-008,-0.788946866989136,-0.614461421966553,0,-0.788946866989136,-0.420896470546722,0,-0.907108724117279,-0.420896381139755,-5.95977489581401e-008,-0.907108724117279,-0.420896470546722,0,-0.907108724117279,-0.207328647375107,0,-0.97827136516571,-0.207328647375107,3.05950038637093e-008,-0.97827136516571,-0.207328647375107,3.05950038637093e-008,-0.97827136516571,
  1450. -0.207328647375107,0,-0.97827136516571,-0.0508697293698788,0,-0.998705267906189,-0.0508697330951691,6.24615239530613e-008,-0.998705327510834,0,0,-1,0,-1.06668387900299e-007,-1,-0.0508697330951691,6.24615239530613e-008,-0.998705327510834,-0.0508697293698788,0,-0.998705267906189
  1451. }
  1452. TangentsW: *944 {
  1453. 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
  1454. }
  1455. }
  1456. LayerElementUV: 0 {
  1457. Version: 101
  1458. Name: "map1"
  1459. MappingInformationType: "ByPolygonVertex"
  1460. ReferenceInformationType: "IndexToDirect"
  1461. UV: *692 {
  1462. a: 2.00000047683716,-3.94426905359069e-007,3,2.92477088555121e-014,3,1.51824855804443,1.99999952316284,1.51824820041656,2.25,-2.95373922654107e-007,2.24999904632568,1.51824831962585,2.50000047683716,-1.97213424257825e-007,2.49999952316284,1.51824831962585,2.74978542327881,-9.61012673883488e-008,2.74978446960449,1.51824843883514,3,1.25757360458374,2.74978446960449,1.25757348537445,2.5,1.25757336616516,2.24999952316284,1.25757336616516,2,1.25757324695587,3,1,2.74978446960449,0.99999988079071,2.5,0.999999821186066,2.24999952316284,0.999999701976776,2,0.999999582767487,3,0.75,2.74978446960449,0.74999988079071,2.5,0.749999821186066,2.24999952316284,0.749999701976776,2,0.749999582767487,3,0.5,2.74978446960449,0.499999910593033,2.5,0.499999791383743,2.24999952316284,0.499999701976776,2,0.499999612569809,3,0.25,2.74978446960449,0.249999895691872,2.5,0.249999806284904,2.24999952316284,0.249999701976776,2,0.249999612569809,3,2.25,2.67993497848511,2.25,2.67993521690369,2.00003337860107,3,2,2.67993545532227,3.51824855804443,3,3.51824855804443,2.67993497848511,3.25757360458374,3,3.25757360458374,2.67993474006653,3,3,3,2.67993545532227,2.75,3,2.75,2.67993450164795,2.5,3,2.5,0.749999463558197,8.51824855804443,0.749538242816925,8.16478443145752,1,8.16478633880615,1,8.51824855804443,0.49999988079071,8.51824855804443,0.499968647956848,8.16476917266846,0.249995529651642,8.51824855804443,0.250148206949234,8.1647777557373,0,8.16478061676025,0,8.51824855804443,0.250003039836884,7.51824855804443,0,7.51824855804443,0,7.16477966308594,0.250461399555206,7.16477966308594,0.50000011920929,7.51824855804443,0.500031113624573,7.16477966308594,0.750005424022675,7.51824855804443,0.749851822853088,7.16477966308594,1,7.16477966308594,1,7.51824855804443,-1.00000047683716,0.249999210238457,-1.25044012069702,0.249999418854713,-1.25044012069702,-6.34163995982817e-007,-1.00000047683716,-7.24282017472433e-007,-2,3.22859676771259e-008,-1.75000047683716,-9.52245855501133e-008,-1.75000047683716,0.249999806284904,-2,0.25,-1.50007390975952,
  1463. 0.249999612569809,-1.50007390975952,-3.89401776601517e-007,-1.25043892860413,1.51824796199799,-0.999999284744263,1.51824772357941,-1.50007271766663,1.51824820041656,-1.74999928474426,1.51824831962585,-1.99999952316284,1.51824855804443,-1.25043916702271,1.25757300853729,-0.999999523162842,1.25757277011871,-1.50007295608521,1.25757324695587,-1.74999952316284,1.25757336616516,-1.99999976158142,1.25757360458374,-1.2504403591156,0.999999403953552,-0.999999761581421,0.999999225139618,-1.50007319450378,0.999999582767487,-1.74999976158142,0.999999821186066,-2,1,-1.25043964385986,0.749999403953552,-1,0.749999225139618,-1.50007343292236,0.749999582767487,-1.75,0.749999821186066,-2,0.75,-1.25043988227844,0.499999403953552,-1.00000023841858,0.499999225139618,-1.50007367134094,0.499999612569809,-1.75000023841858,0.499999821186066,-2,0.5,4,0.25,3.74978446960449,0.25,3.74978494644165,2.5902409106493e-009,4,0,3.24999952316284,4.46428227718343e-010,3.24999952316284,0.25,3.5,0,3.5,0.25,3.74978446960449,1.25757360458374,4,1.25757360458374,4,1.51824855804443,3.74978494644165,1.51824855804443,3.5,1.51824855804443,3.5,1.25757360458374,3.24999952316284,1.51824855804443,3.24999952316284,1.25757360458374,3.74978446960449,1,4,1,3.5,1,3.24999952316284,1,3.74978446960449,0.75,4,0.75,3.5,0.75,3.24999952316284,0.75,3.74978446960449,0.5,4,0.5,3.5,0.5,3.24999952316284,0.5,0.749999463558197,3.51824855804443,0.749538242816925,3.16478443145752,1,3.16478633880615,1,3.51824855804443,0.49999988079071,3.51824855804443,0.499968647956848,3.16476917266846,0.249995529651642,3.51824855804443,0.250148206949234,3.1647777557373,0,3.16478085517883,0,3.51824855804443,0.250003039836884,6.51824855804443,0,6.51824855804443,0,6.16477966308594,0.250461399555206,6.16477966308594,0.50000011920929,6.51824855804443,0.500031113624573,6.16477966308594,0.750005424022675,6.51824855804443,0.749851822853088,6.16477966308594,1,6.16477966308594,1,6.51824855804443,-2.25043964385986,0.25,-2.25043916702271,-4.78376129819935e-008,-3,2.7318796114173e-008,-2.75,9.70216191831241e-008,-2.75,
  1464. 0.25,-3,0.25,-2.50007343292236,0,-2.50007295608521,0.25,-2.25043916702271,1.25757360458374,-2.25043964385986,1.51824855804443,-2.50007295608521,1.51824855804443,-2.50007343292236,1.25757360458374,-2.75,1.51824855804443,-2.75,1.25757360458374,-3,1.51824855804443,-3,1.25757360458374,-2.25044012069702,1,-2.50007390975952,1,-2.75,1,-3,1,-2.25043964385986,0.75,-2.50007295608521,0.75,-2.75,0.75,-3,0.75,-2.25043964385986,0.5,-2.50007343292236,0.5,-2.75,0.5,-3,0.5,5,0.25,4.74978446960449,0.25,4.74978446960449,2.5902409106493e-009,5,0,4.25,4.46428227718343e-010,4.25,0.25,4.5,0,4.5,0.25,4.74978446960449,1.25757360458374,5,1.25757360458374,5,1.51824855804443,4.74978446960449,1.51824855804443,4.5,1.51824855804443,4.5,1.25757360458374,4.25,1.51824855804443,4.25,1.25757360458374,4.74978446960449,1,5,1,4.5,1,4.25,1,4.74978446960449,0.75,5,0.75,4.5,0.75,4.25,0.75,4.74978446960449,0.5,5,0.5,4.5,0.5,4.25,0.5,0.749999463558197,2.51824855804443,0.749538242816925,2.16478443145752,1,2.16478633880615,1,2.51824855804443,0.49999988079071,2.51824855804443,0.499968647956848,2.16476917266846,0.249995529651642,2.51824855804443,0.250148206949234,2.1647777557373,0,2.16478085517883,0,2.51824855804443,0.250003039836884,5.51824855804443,0,5.51824855804443,0,5.16477966308594,0.250461399555206,5.16477966308594,0.50000011920929,5.51824855804443,0.500031113624573,5.16477966308594,0.750005424022675,5.51824855804443,0.749851822853088,5.16477966308594,1,5.16477966308594,1,5.51824855804443,-3.25043964385986,0.25,-3.25043916702271,-5.28046655290382e-008,-4,2.48352698406507e-008,-3.75,9.20545630833658e-008,-3.75,0.25,-4,0.25,-3.50007343292236,-4.96705387931229e-009,-3.50007295608521,0.25,-3.25043916702271,1.25757360458374,-3.25043964385986,1.51824855804443,-3.50007295608521,1.51824855804443,-3.50007343292236,1.25757360458374,-3.75,1.51824855804443,-3.75,1.25757360458374,-4,1.51824855804443,-4,1.25757360458374,-3.25044012069702,1,-3.50007390975952,1,-3.75,1,-4,1,-3.25043964385986,0.75,-3.50007295608521,0.75,-3.75,0.75,-4,0.75,-3.25043964385986,0.5,-3.50007343292236,
  1465. 0.5,-3.75,0.5,-4,0.5,6,0.25,5.74978446960449,0.25,5.74978446960449,2.5902409106493e-009,6,0,5.25,4.46428227718343e-010,5.25,0.25,5.5,0,5.5,0.25,5.74978446960449,1.25757360458374,6,1.25757360458374,6,1.51824855804443,5.74978446960449,1.51824855804443,5.5,1.51824855804443,5.5,1.25757360458374,5.25,1.51824855804443,5.25,1.25757360458374,5.74978446960449,1,6,1,5.5,1,5.25,1,5.74978446960449,0.75,6,0.75,5.5,0.75,5.25,0.75,5.74978446960449,0.5,6,0.5,5.5,0.5,5.25,0.5,4.19016361236572,2.25,3.875,2.25,3.875,1.9999692440033,4.19016361236572,1.99988627433777,3.875,3.51824855804443,3.875,3.25757360458374,4.19016313552856,3.25757360458374,4.19016361236572,3.51824855804443,3.875,3,4.19016265869141,3,3.875,2.75,4.19016456604004,2.75,3.875,2.5,4.19016361236572,2.5,0.749999463558197,1.51824855804443,0.749538242816925,1.16478443145752,1,1.16478633880615,1,1.51824855804443,0.49999988079071,1.51824855804443,0.499968647956848,1.16476905345917,0.249995529651642,1.51824855804443,0.250148206949234,1.1647777557373,0,1.16478085517883,0,1.51824855804443,0.250003039836884,4.51824855804443,0,4.51824855804443,0,4.16477966308594,0.250461399555206,4.16477966308594,0.50000011920929,4.51824855804443,0.500031113624573,4.16477966308594,0.750005424022675,4.51824855804443,0.749851822853088,4.16477966308594,1,4.16477966308594,1,4.51824855804443,-4.25043964385986,0.25,-4.25043916702271,-5.28046655290382e-008,-5,-4.96705387931229e-009,-4.75,9.20545630833658e-008,-4.75,0.25,-5,0.25,-4.50007343292236,-4.96705387931229e-009,-4.50007295608521,0.25,-4.25043916702271,1.25757360458374,-4.25043964385986,1.51824855804443,-4.50007295608521,1.51824855804443,-4.50007343292236,1.25757360458374,-4.75,1.51824855804443,-4.75,1.25757360458374,-5,1.51824855804443,-5,1.25757360458374,-4.25044012069702,1,-4.50007390975952,1,-4.75,1,-5,1,-4.25043964385986,0.75,-4.50007295608521,0.75,-4.75,0.75,-5,0.75,-4.25043964385986,0.5,-4.50007343292236,0.5,-4.75,0.5,-5,0.5
  1466. }
  1467. UVIndex: *944 {
  1468. a: 30,31,8,1,0,4,33,34,6,32,33,4,8,31,32,6,11,10,2,9,11,9,7,12,12,7,5,13,14,13,5,3,10,11,16,15,16,11,12,17,17,12,13,18,19,18,13,14,21,20,15,16,21,16,17,22,22,17,18,23,24,23,18,19,20,21,26,25,26,21,22,27,27,22,23,28,29,28,23,24,31,30,25,26,31,26,27,32,32,27,28,33,34,33,28,29,35,36,37,38,41,42,40,39,42,41,43,44,45,46,44,43,46,45,47,48,36,35,48,47,49,50,51,52,49,53,54,50,53,55,56,54,57,56,55,58,59,60,61,62,63,59,62,64,65,63,64,66,67,68,65,66,69,70,71,72,73,74,75,76,74,78,77,75,78,71,70,77,84,85,80,79,84,79,81,86,86,81,82,87,83,88,87,82,85,84,89,90,89,84,86,91,91,86,87,92,93,92,87,88,94,95,90,89,94,89,91,96,96,91,92,97,93,98,97,92,95,94,99,100,99,94,96,101,101,96,97,102,103,102,97,98,70,69,100,99,70,99,101,77,77,101,102,75,103,76,75,102,104,105,106,107,1,108,109,30,110,111,109,108,106,105,111,110,112,113,114,115,112,115,116,117,117,116,118,119,10,119,118,2,113,112,120,121,120,112,117,122,122,117,119,123,15,123,119,10,124,125,121,120,124,120,122,126,126,122,123,127,20,127,123,15,125,124,128,129,128,124,126,130,130,126,127,131,25,131,127,20,105,104,129,128,105,128,130,111,111,130,131,109,30,109,131,25,132,133,134,135,132,136,137,133,136,138,139,137,140,139,138,141,142,143,144,145,146,142,145,147,148,146,147,149,150,151,148,149,76,152,153,73,154,155,156,157,155,158,159,156,158,153,152,159,160,88,83,161,160,161,162,163,163,162,164,165,166,167,165,164,88,160,168,93,168,160,163,169,169,163,165,170,171,170,165,167,172,98,93,168,172,168,169,173,173,169,170,174,171,175,174,170,98,172,176,103,176,172,173,177,177,173,174,178,179,178,174,175,152,76,103,176,152,176,177,159,159,177,178,156,179,157,156,178,180,181,182,183,107,184,185,104,186,187,185,184,182,181,187,186,188,189,190,191,188,191,192,193,193,192,194,195,113,195,194,114,189,188,196,197,196,188,193,198,198,193,195,199,121,199,195,113,200,201,197,196,200,196,198,202,202,198,199,203,125,203,199,121,201,200,204,205,204,200,202,206,206,202,203,207,129,207,203,125,181,180,205,204,181,204,206,187,187,206,207,185,104,185,207,129,208,209,210,211,208,212,213,209,
  1469. 212,214,215,213,216,215,214,217,218,219,220,221,222,218,221,223,224,222,223,225,226,227,224,225,157,228,229,154,230,231,232,233,231,234,235,232,234,229,228,235,236,167,166,237,236,237,238,239,239,238,240,241,242,243,241,240,167,236,244,171,244,236,239,245,245,239,241,246,247,246,241,243,248,175,171,244,248,244,245,249,249,245,246,250,247,251,250,246,175,248,252,179,252,248,249,253,253,249,250,254,255,254,250,251,228,157,179,252,228,252,253,235,235,253,254,232,255,233,232,254,256,257,258,259,183,260,261,180,262,263,261,260,258,257,263,262,264,265,266,267,264,267,268,269,269,268,270,271,189,271,270,190,265,264,272,273,272,264,269,274,274,269,271,275,197,275,271,189,276,277,273,272,276,272,274,278,278,274,275,279,201,279,275,197,277,276,280,281,280,276,278,282,282,278,279,283,205,283,279,201,257,256,281,280,257,280,282,263,263,282,283,261,180,261,283,205,284,285,286,287,288,289,290,291,290,289,292,293,292,294,295,293,295,294,296,297,296,285,284,297,298,299,300,301,298,302,303,299,302,304,305,303,306,305,304,307,308,309,310,311,312,308,311,313,314,312,313,315,316,317,314,315,233,318,319,230,320,321,322,323,321,324,325,322,324,319,318,325,326,243,242,327,326,327,328,329,329,328,330,331,332,333,331,330,243,326,334,247,334,326,329,335,335,329,331,336,337,336,331,333,338,251,247,334,338,334,335,339,339,335,336,340,337,341,340,336,251,338,342,255,342,338,339,343,343,339,340,344,345,344,340,341,318,233,255,342,318,342,343,325,325,343,344,322,345,323,322,344
  1470. }
  1471. }
  1472. LayerElementSmoothing: 0 {
  1473. Version: 102
  1474. Name: ""
  1475. MappingInformationType: "ByEdge"
  1476. ReferenceInformationType: "Direct"
  1477. Smoothing: *472 {
  1478. a: 0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0
  1479. }
  1480. }
  1481. LayerElementMaterial: 0 {
  1482. Version: 101
  1483. Name: ""
  1484. MappingInformationType: "AllSame"
  1485. ReferenceInformationType: "IndexToDirect"
  1486. Materials: *1 {
  1487. a: 0
  1488. }
  1489. }
  1490. Layer: 0 {
  1491. Version: 100
  1492. LayerElement: {
  1493. Type: "LayerElementNormal"
  1494. TypedIndex: 0
  1495. }
  1496. LayerElement: {
  1497. Type: "LayerElementBinormal"
  1498. TypedIndex: 0
  1499. }
  1500. LayerElement: {
  1501. Type: "LayerElementTangent"
  1502. TypedIndex: 0
  1503. }
  1504. LayerElement: {
  1505. Type: "LayerElementMaterial"
  1506. TypedIndex: 0
  1507. }
  1508. LayerElement: {
  1509. Type: "LayerElementSmoothing"
  1510. TypedIndex: 0
  1511. }
  1512. LayerElement: {
  1513. Type: "LayerElementUV"
  1514. TypedIndex: 0
  1515. }
  1516. }
  1517. }
  1518. Model: 2268726018288, "Model::SM_Wall_Thick_Curved_01", "Null" {
  1519. Version: 232
  1520. Properties70: {
  1521. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1522. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1523. P: "RotationActive", "bool", "", "",1
  1524. P: "InheritType", "enum", "", "",1
  1525. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1526. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1527. }
  1528. Shading: Y
  1529. Culling: "CullingOff"
  1530. }
  1531. Model: 2268726002048, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_010", "Mesh" {
  1532. Version: 232
  1533. Properties70: {
  1534. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1535. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1536. P: "RotationActive", "bool", "", "",1
  1537. P: "InheritType", "enum", "", "",1
  1538. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1539. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1540. P: "currentUVSet", "KString", "", "U", "map1"
  1541. }
  1542. Shading: T
  1543. Culling: "CullingOff"
  1544. }
  1545. Model: 2268726020608, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_01", "Mesh" {
  1546. Version: 232
  1547. Properties70: {
  1548. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1549. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1550. P: "RotationActive", "bool", "", "",1
  1551. P: "InheritType", "enum", "", "",1
  1552. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1553. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1554. P: "currentUVSet", "KString", "", "U", "map1"
  1555. }
  1556. Shading: T
  1557. Culling: "CullingOff"
  1558. }
  1559. Model: 2268726006688, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_02", "Mesh" {
  1560. Version: 232
  1561. Properties70: {
  1562. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1563. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1564. P: "RotationActive", "bool", "", "",1
  1565. P: "InheritType", "enum", "", "",1
  1566. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1567. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1568. P: "currentUVSet", "KString", "", "U", "map1"
  1569. }
  1570. Shading: T
  1571. Culling: "CullingOff"
  1572. }
  1573. Model: 2268726022928, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_03", "Mesh" {
  1574. Version: 232
  1575. Properties70: {
  1576. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1577. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1578. P: "RotationActive", "bool", "", "",1
  1579. P: "InheritType", "enum", "", "",1
  1580. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1581. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1582. P: "currentUVSet", "KString", "", "U", "map1"
  1583. }
  1584. Shading: T
  1585. Culling: "CullingOff"
  1586. }
  1587. Model: 2268725992768, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_04", "Mesh" {
  1588. Version: 232
  1589. Properties70: {
  1590. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1591. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1592. P: "RotationActive", "bool", "", "",1
  1593. P: "InheritType", "enum", "", "",1
  1594. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1595. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1596. P: "currentUVSet", "KString", "", "U", "map1"
  1597. }
  1598. Shading: T
  1599. Culling: "CullingOff"
  1600. }
  1601. Model: 2268726048448, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_05", "Mesh" {
  1602. Version: 232
  1603. Properties70: {
  1604. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1605. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1606. P: "RotationActive", "bool", "", "",1
  1607. P: "InheritType", "enum", "", "",1
  1608. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1609. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1610. P: "currentUVSet", "KString", "", "U", "map1"
  1611. }
  1612. Shading: T
  1613. Culling: "CullingOff"
  1614. }
  1615. Model: 2268726036848, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_06", "Mesh" {
  1616. Version: 232
  1617. Properties70: {
  1618. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1619. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1620. P: "RotationActive", "bool", "", "",1
  1621. P: "InheritType", "enum", "", "",1
  1622. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1623. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1624. P: "currentUVSet", "KString", "", "U", "map1"
  1625. }
  1626. Shading: T
  1627. Culling: "CullingOff"
  1628. }
  1629. Model: 2268726032208, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_07", "Mesh" {
  1630. Version: 232
  1631. Properties70: {
  1632. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1633. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1634. P: "RotationActive", "bool", "", "",1
  1635. P: "InheritType", "enum", "", "",1
  1636. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1637. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1638. P: "currentUVSet", "KString", "", "U", "map1"
  1639. }
  1640. Shading: T
  1641. Culling: "CullingOff"
  1642. }
  1643. Model: 2268726034528, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_08", "Mesh" {
  1644. Version: 232
  1645. Properties70: {
  1646. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1647. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1648. P: "RotationActive", "bool", "", "",1
  1649. P: "InheritType", "enum", "", "",1
  1650. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1651. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1652. P: "currentUVSet", "KString", "", "U", "map1"
  1653. }
  1654. Shading: T
  1655. Culling: "CullingOff"
  1656. }
  1657. Model: 2268726029888, "Model::UCX_SM_Wall_Thick_Curved_01_LOD0_09", "Mesh" {
  1658. Version: 232
  1659. Properties70: {
  1660. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1661. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1662. P: "RotationActive", "bool", "", "",1
  1663. P: "InheritType", "enum", "", "",1
  1664. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1665. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1666. P: "currentUVSet", "KString", "", "U", "map1"
  1667. }
  1668. Shading: T
  1669. Culling: "CullingOff"
  1670. }
  1671. Model: 2268726053088, "Model::SM_Wall_Thick_Curved_01_LOD0", "Mesh" {
  1672. Version: 232
  1673. Properties70: {
  1674. P: "RotationPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1675. P: "ScalingPivot", "Vector3D", "Vector", "",1.81898940354586e-011,-6.82121026329696e-013,9.09494701772928e-013
  1676. P: "RotationActive", "bool", "", "",1
  1677. P: "InheritType", "enum", "", "",1
  1678. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1679. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1680. P: "currentUVSet", "KString", "", "U", "map1"
  1681. }
  1682. Shading: T
  1683. Culling: "CullingOff"
  1684. }
  1685. Material: 2267913041120, "Material::M_Collision_01", "" {
  1686. Version: 102
  1687. ShadingModel: "phong"
  1688. MultiLayer: 0
  1689. Properties70: {
  1690. P: "AmbientColor", "Color", "", "A",0,0,0
  1691. P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
  1692. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  1693. P: "TransparencyFactor", "Number", "", "A",1
  1694. P: "SpecularColor", "Color", "", "A",0,0,0
  1695. P: "ReflectionFactor", "Number", "", "A",0.5
  1696. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  1697. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  1698. P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
  1699. P: "Specular", "Vector3D", "Vector", "",0,0,0
  1700. P: "Shininess", "double", "Number", "",20
  1701. P: "Opacity", "double", "Number", "",1
  1702. P: "Reflectivity", "double", "Number", "",0
  1703. }
  1704. }
  1705. Material: 2267913057920, "Material::MI_Wall_01", "" {
  1706. Version: 102
  1707. ShadingModel: "phong"
  1708. MultiLayer: 0
  1709. Properties70: {
  1710. P: "AmbientColor", "Color", "", "A",0,0,0
  1711. P: "DiffuseColor", "Color", "", "A",1,1,1
  1712. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  1713. P: "TransparencyFactor", "Number", "", "A",1
  1714. P: "SpecularColor", "Color", "", "A",0,0,0
  1715. P: "ReflectionFactor", "Number", "", "A",0.5
  1716. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  1717. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  1718. P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
  1719. P: "Specular", "Vector3D", "Vector", "",0,0,0
  1720. P: "Shininess", "double", "Number", "",20
  1721. P: "Opacity", "double", "Number", "",1
  1722. P: "Reflectivity", "double", "Number", "",0
  1723. }
  1724. }
  1725. Video: 2268161701152, "Video::file4", "Clip" {
  1726. Type: "Clip"
  1727. Properties70: {
  1728. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
  1729. }
  1730. UseMipMap: 0
  1731. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
  1732. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
  1733. }
  1734. Video: 2268161701552, "Video::file24", "Clip" {
  1735. Type: "Clip"
  1736. Properties70: {
  1737. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
  1738. }
  1739. UseMipMap: 0
  1740. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
  1741. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
  1742. }
  1743. Texture: 2267913056960, "Texture::file4", "" {
  1744. Type: "TextureVideoClip"
  1745. Version: 202
  1746. TextureName: "Texture::file4"
  1747. Properties70: {
  1748. P: "CurrentTextureBlendMode", "enum", "", "",0
  1749. P: "UVSet", "KString", "", "", "map1"
  1750. P: "UseMaterial", "bool", "", "",1
  1751. }
  1752. Media: "Video::file4"
  1753. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
  1754. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
  1755. ModelUVTranslation: 0,0
  1756. ModelUVScaling: 1,1
  1757. Texture_Alpha_Source: "None"
  1758. Cropping: 0,0,0,0
  1759. }
  1760. Texture: 2267913029600, "Texture::file24", "" {
  1761. Type: "TextureVideoClip"
  1762. Version: 202
  1763. TextureName: "Texture::file24"
  1764. Properties70: {
  1765. P: "CurrentTextureBlendMode", "enum", "", "",0
  1766. P: "UVSet", "KString", "", "", "map1"
  1767. P: "UseMaterial", "bool", "", "",1
  1768. }
  1769. Media: "Video::file24"
  1770. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
  1771. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
  1772. ModelUVTranslation: 0,0
  1773. ModelUVScaling: 1,1
  1774. Texture_Alpha_Source: "None"
  1775. Cropping: 0,0,0,0
  1776. }
  1777. AnimationStack: 2268528041104, "AnimStack::Take 001", "" {
  1778. Properties70: {
  1779. P: "LocalStart", "KTime", "Time", "",1539538600
  1780. P: "LocalStop", "KTime", "Time", "",46186158000
  1781. P: "ReferenceStart", "KTime", "Time", "",1539538600
  1782. P: "ReferenceStop", "KTime", "Time", "",46186158000
  1783. }
  1784. }
  1785. AnimationLayer: 2272349533200, "AnimLayer::BaseLayer", "" {
  1786. }
  1787. }
  1788. ; Object connections
  1789. ;------------------------------------------------------------------
  1790. Connections: {
  1791. ;Model::SM_Wall_Thick_Curved_01, Model::RootNode
  1792. C: "OO",2268726018288,0
  1793. ;AnimLayer::BaseLayer, AnimStack::Take 001
  1794. C: "OO",2272349533200,2268528041104
  1795. ;NodeAttribute::, Model::SM_Wall_Thick_Curved_01
  1796. C: "OO",2268336200368,2268726018288
  1797. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_010, Model::SM_Wall_Thick_Curved_01
  1798. C: "OO",2268726002048,2268726018288
  1799. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_01, Model::SM_Wall_Thick_Curved_01
  1800. C: "OO",2268726020608,2268726018288
  1801. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_02, Model::SM_Wall_Thick_Curved_01
  1802. C: "OO",2268726006688,2268726018288
  1803. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_03, Model::SM_Wall_Thick_Curved_01
  1804. C: "OO",2268726022928,2268726018288
  1805. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_04, Model::SM_Wall_Thick_Curved_01
  1806. C: "OO",2268725992768,2268726018288
  1807. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_05, Model::SM_Wall_Thick_Curved_01
  1808. C: "OO",2268726048448,2268726018288
  1809. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_06, Model::SM_Wall_Thick_Curved_01
  1810. C: "OO",2268726036848,2268726018288
  1811. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_07, Model::SM_Wall_Thick_Curved_01
  1812. C: "OO",2268726032208,2268726018288
  1813. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_08, Model::SM_Wall_Thick_Curved_01
  1814. C: "OO",2268726034528,2268726018288
  1815. ;Model::UCX_SM_Wall_Thick_Curved_01_LOD0_09, Model::SM_Wall_Thick_Curved_01
  1816. C: "OO",2268726029888,2268726018288
  1817. ;Model::SM_Wall_Thick_Curved_01_LOD0, Model::SM_Wall_Thick_Curved_01
  1818. C: "OO",2268726053088,2268726018288
  1819. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_010
  1820. C: "OO",2267733789344,2268726002048
  1821. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_010
  1822. C: "OO",2267913041120,2268726002048
  1823. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_01
  1824. C: "OO",2267733799072,2268726020608
  1825. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_01
  1826. C: "OO",2267913041120,2268726020608
  1827. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_02
  1828. C: "OO",2267733795488,2268726006688
  1829. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_02
  1830. C: "OO",2267913041120,2268726006688
  1831. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_03
  1832. C: "OO",2267733792416,2268726022928
  1833. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_03
  1834. C: "OO",2267913041120,2268726022928
  1835. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_04
  1836. C: "OO",2267733801120,2268725992768
  1837. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_04
  1838. C: "OO",2267913041120,2268725992768
  1839. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_05
  1840. C: "OO",2267733807264,2268726048448
  1841. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_05
  1842. C: "OO",2267913041120,2268726048448
  1843. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_06
  1844. C: "OO",2267733793952,2268726036848
  1845. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_06
  1846. C: "OO",2267913041120,2268726036848
  1847. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_07
  1848. C: "OO",2267733786784,2268726032208
  1849. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_07
  1850. C: "OO",2267913041120,2268726032208
  1851. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_08
  1852. C: "OO",2267733785248,2268726034528
  1853. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_08
  1854. C: "OO",2267913041120,2268726034528
  1855. ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_09
  1856. C: "OO",2267733796000,2268726029888
  1857. ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_01_LOD0_09
  1858. C: "OO",2267913041120,2268726029888
  1859. ;Texture::file4, Material::MI_Wall_01
  1860. C: "OP",2267913056960,2267913057920, "DiffuseColor"
  1861. ;Texture::file24, Material::MI_Wall_01
  1862. C: "OP",2267913029600,2267913057920, "NormalMap"
  1863. ;Video::file4, Texture::file4
  1864. C: "OO",2268161701152,2267913056960
  1865. ;Video::file24, Texture::file24
  1866. C: "OO",2268161701552,2267913029600
  1867. ;Geometry::, Model::SM_Wall_Thick_Curved_01_LOD0
  1868. C: "OO",2267733801632,2268726053088
  1869. ;Material::MI_Wall_01, Model::SM_Wall_Thick_Curved_01_LOD0
  1870. C: "OO",2267913057920,2268726053088
  1871. }
  1872. ;Takes section
  1873. ;----------------------------------------------------
  1874. Takes: {
  1875. Current: "Take 001"
  1876. Take: "Take 001" {
  1877. FileName: "Take_001.tak"
  1878. LocalTime: 1539538600,46186158000
  1879. ReferenceTime: 1539538600,46186158000
  1880. }
  1881. }