SM_Vaulted_Ceiling_02.fbx 331 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000
  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: 2020
  11. Month: 9
  12. Day: 29
  13. Hour: 10
  14. Minute: 26
  15. Second: 47
  16. Millisecond: 459
  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\SM_Vaulted_Ceiling_02.fbx"
  33. P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Vaulted_Ceiling_02.fbx"
  34. P: "Original", "Compound", "", ""
  35. P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
  36. P: "Original|ApplicationName", "KString", "", "", "Maya LT"
  37. P: "Original|ApplicationVersion", "KString", "", "", "2016"
  38. P: "Original|DateTime_GMT", "DateTime", "", "", "29/09/2020 07:26:47.459"
  39. P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Vaulted_Ceiling_02.fbx"
  40. P: "LastSaved", "Compound", "", ""
  41. P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
  42. P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
  43. P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
  44. P: "LastSaved|DateTime_GMT", "DateTime", "", "", "29/09/2020 07:26:47.459"
  45. P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Maya"
  46. P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_08.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: 2463524716272, "", "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: 51
  96. ObjectType: "GlobalSettings" {
  97. Count: 1
  98. }
  99. ObjectType: "AnimationStack" {
  100. Count: 1
  101. PropertyTemplate: "FbxAnimStack" {
  102. Properties70: {
  103. P: "Description", "KString", "", "", ""
  104. P: "LocalStart", "KTime", "Time", "",0
  105. P: "LocalStop", "KTime", "Time", "",0
  106. P: "ReferenceStart", "KTime", "Time", "",0
  107. P: "ReferenceStop", "KTime", "Time", "",0
  108. }
  109. }
  110. }
  111. ObjectType: "AnimationLayer" {
  112. Count: 1
  113. PropertyTemplate: "FbxAnimLayer" {
  114. Properties70: {
  115. P: "Weight", "Number", "", "A",100
  116. P: "Mute", "bool", "", "",0
  117. P: "Solo", "bool", "", "",0
  118. P: "Lock", "bool", "", "",0
  119. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  120. P: "BlendMode", "enum", "", "",0
  121. P: "RotationAccumulationMode", "enum", "", "",0
  122. P: "ScaleAccumulationMode", "enum", "", "",0
  123. P: "BlendModeBypass", "ULongLong", "", "",0
  124. }
  125. }
  126. }
  127. ObjectType: "NodeAttribute" {
  128. Count: 2
  129. PropertyTemplate: "FbxNull" {
  130. Properties70: {
  131. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  132. P: "Size", "double", "Number", "",100
  133. P: "Look", "enum", "", "",1
  134. }
  135. }
  136. }
  137. ObjectType: "Model" {
  138. Count: 21
  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: 19
  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: 2465320245888, "NodeAttribute::", "Null" {
  307. Properties70: {
  308. P: "Look", "enum", "", "",0
  309. }
  310. TypeFlags: "Null"
  311. }
  312. NodeAttribute: 2464863086352, "NodeAttribute::", "LodGroup" {
  313. Properties70: {
  314. P: "WorldSpace", "bool", "", "",1
  315. P: "Thresholds|Level0", "Distance", "", "",100, "cm"
  316. P: "Thresholds|Level1", "Distance", "", "",100, "cm"
  317. P: "Thresholds|Level2", "Distance", "", "",200, "cm"
  318. P: "Thresholds|Level3", "Distance", "", "",400, "cm"
  319. P: "DisplayLevels|Level0", "enum", "", "",1
  320. P: "DisplayLevels|Level1", "enum", "", "",1
  321. P: "DisplayLevels|Level2", "enum", "", "",1
  322. P: "DisplayLevels|Level3", "enum", "", "",0
  323. P: "DisplayLevels|Level4", "enum", "", "",0
  324. P: "DisplayLevels|Level5", "enum", "", "",0
  325. }
  326. }
  327. Geometry: 2463645330224, "Geometry::", "Mesh" {
  328. Vertices: *294 {
  329. a: 192.1123046875,3.73035275087232e-014,-199.9990234375,173.087890625,83.3554000854492,-200.0009765625,150.19921875,119.781463623047,-199.9990234375,119.78125,150.201232910156,-200.0009765625,83.3544921875,173.089218139648,-200.0009765625,42.748046875,187.297882080078,-200.0009765625,-0.0029296875,192.114562988281,-199.9990234375,-42.7509765625,187.297882080078,-200.0009765625,-83.35546875,173.089218139648,-199.9990234375,-119.783203125,150.201232910156,-199.9990234375,-150.2021484375,119.781463623047,-199.9990234375,-173.0908203125,83.3554000854492,-200.0009765625,-192.11328125,8.10751225799322e-006,-200.0009765625,192.1123046875,-4.44089142087427e-014,200.0009765625,173.087890625,83.3554000854492,200.0009765625,150.19921875,119.781463623047,200.0009765625,119.78125,150.201232910156,200.0009765625,83.3544921875,173.089218139648,200.0009765625,42.748046875,187.297882080078,200.0009765625,-0.0029296875,192.114562988281,200.0009765625,-42.7509765625,187.297882080078,200.0009765625,-83.35546875,173.089218139648,200.0009765625,-119.783203125,150.201232910156,200.0009765625,-150.2021484375,119.781463623047,200.0009765625,-173.0908203125,83.3554000854492,200.0009765625,-192.11328125,8.58819294080604e-006,200.0009765625,192.11328125,3.814697265625e-006,192.115234375,173.087890625,83.3553924560547,173.0908203125,150.19921875,119.781463623047,150.2021484375,119.78125,150.201217651367,119.783203125,83.3544921875,173.089202880859,83.35546875,42.748046875,187.297866821289,42.7509765625,-0.0009765625,192.114547729492,0,-42.7509765625,187.297866821289,-42.748046875,-83.35546875,173.089202880859,-83.3544921875,-119.783203125,150.201217651367,-119.78125,-150.2021484375,119.781471252441,-150.19921875,-173.0908203125,83.3553924560547,-173.087890625,-192.115234375,4.05439732276136e-006,-192.11328125,192.1123046875,1.78463675586625e-014,-192.115234375,173.087890625,83.3553924560547,-173.0888671875,150.19921875,119.781463623047,-150.201171875,119.78125,150.201217651367,-119.78125,83.3544921875,173.089202880859,-83.3544921875,
  330. 42.748046875,187.297866821289,-42.75,-42.7509765625,187.297866821289,42.75,-83.357421875,173.089202880859,83.35546875,-119.7841796875,150.201202392578,119.783203125,-150.2021484375,119.781463623047,150.201171875,-173.0908203125,83.3553924560547,173.0888671875,-192.115234375,8.10879373602802e-006,192.11328125,-199.9990234375,0,-192.11328125,-199.9990234375,83.3553771972656,-173.0888671875,-199.9990234375,119.781463623047,-150.201171875,-199.9990234375,150.201187133789,-119.78125,-199.9990234375,173.089202880859,-83.3544921875,-199.998046875,187.2978515625,-42.75,-199.9990234375,192.114562988281,0.0009765625,-200,187.2978515625,42.75,-199.9990234375,173.089202880859,83.35546875,-199.9990234375,150.201187133789,119.783203125,-199.9990234375,119.781463623047,150.201171875,-199.9990234375,83.3553771972656,173.0888671875,-199.9990234375,7.62939453125e-006,192.115234375,200.0009765625,0,-192.11328125,200.0009765625,83.3553848266602,-173.0888671875,200.0009765625,119.781463623047,-150.201171875,200.0009765625,150.201202392578,-119.78125,200.0009765625,173.089218139648,-83.3544921875,200.001953125,187.2978515625,-42.75,200.0009765625,192.114562988281,0.0009765625,200,187.2978515625,42.75,200.0009765625,173.089218139648,83.35546875,200.0009765625,150.201202392578,119.783203125,200.0009765625,119.781463623047,150.201171875,200.0009765625,83.3553848266602,173.0888671875,200.0009765625,7.62939453125e-006,192.115234375,200,88.009765625,-200,129.484375,162.016738891602,-200,46.830078125,200.208831787109,-200,-46.8330078125,200.208801269531,-200,-129.4853515625,162.016983032227,-200,-200,88.0098876953125,-200,200,88.0101776123047,200,129.4833984375,162.016860961914,200,46.830078125,200.208831787109,200,-46.8330078125,200.208740234375,200,-129.4853515625,162.017181396484,200,-200,88.0106811523438,200,-200,162.016952514648,-129.4833984375,-200,200.208786010742,-46.83203125,-200,200.208755493164,46.83203125,-200,162.01692199707,129.4853515625,200,162.016937255859,-129.484375,200,200.208755493164,-46.83203125,200,200.208801269531,46.83203125,
  331. 200,162.016830444336,129.4853515625,-0.0029296875,204.850540161133,0.0009765625
  332. }
  333. PolygonVertexIndex: *392 {
  334. a: 0,39,40,-2,1,40,41,-3,2,41,42,-4,3,42,43,-5,4,43,44,-6,5,44,32,-7,6,32,33,-8,7,33,34,-9,8,34,35,-10,9,35,36,-11,10,36,37,-12,11,37,38,-13,27,26,13,-15,28,27,14,-16,29,28,15,-17,30,29,16,-18,31,30,17,-19,32,31,18,-20,45,32,19,-21,46,45,20,-22,47,46,21,-23,48,47,22,-24,49,48,23,-25,25,50,49,-25,51,38,37,-53,52,37,36,-54,53,36,35,-55,54,35,34,-56,55,34,33,-57,56,33,32,-58,57,32,45,-59,58,45,46,-60,59,46,47,-61,60,47,48,-62,61,48,49,-63,49,50,63,-63,32,44,69,-71,31,32,70,-72,30,31,71,-73,29,30,72,-74,28,29,73,-75,27,28,74,-76,26,27,75,-77,40,39,64,-66,41,40,65,-67,42,41,66,-68,43,42,67,-69,44,43,68,-70,0,77,-65,77,1,2,3,-79,78,3,4,5,-80,79,5,6,7,-81,80,7,8,9,-82,81,9,10,11,-83,11,12,-83,14,13,-84,84,16,15,14,-84,85,18,17,16,-85,86,20,19,18,-86,87,22,21,20,-87,88,24,23,22,-88,63,25,-89,39,0,-65,13,26,-77,50,25,-64,51,82,-13,82,52,53,54,-90,89,54,55,56,-91,90,56,57,58,-92,91,58,59,60,-93,92,60,61,62,-89,63,88,-63,65,64,-78,93,67,66,65,-78,94,69,68,67,-94,94,95,71,70,-70,96,73,72,71,-96,83,75,74,73,-97,76,75,-84,38,51,-13,93,77,-79,79,97,-95,94,97,-96,78,79,94,-94,84,83,-97,86,85,-98,96,95,85,-85,81,82,-90,90,97,-81,89,90,80,-82,92,88,-88,87,86,91,-93,97,90,-92,91,86,-98,97,79,-81,97,85,-96,88,25,-25,51,52,-83,0,1,-78,83,13,-77
  335. }
  336. Edges: *196 {
  337. a: 3,7,11,15,19,23,27,31,35,39,43,47,50,54,58,62,66,70,74,78,82,86,90,95,0,2,6,10,14,18,22,26,30,34,38,42,46,49,51,55,59,63,67,71,48,52,56,60,64,68,29,33,37,41,45,75,79,83,87,91,92,25,1,5,9,13,17,21,72,76,80,84,88,93,99,103,107,111,115,119,123,127,131,135,139,142,174,178,182,186,190,146,150,154,158,162,166,170,96,98,102,106,110,114,118,122,126,130,134,138,141,147,151,155,159,163,167,171,173,175,179,183,187,145,194,195,193,198,199,203,204,208,209,213,214,218,219,221,259,225,324,230,226,235,231,240,236,245,241,250,246,253,251,265,266,269,270,274,275,279,280,284,285,289,290,296,301,297,306,302,308,307,316,312,321,317,333,330,335,348,343,355,356,353,346,365,363,332,354,370,331,345,252,263,192,224
  338. }
  339. GeometryVersion: 124
  340. LayerElementNormal: 0 {
  341. Version: 102
  342. Name: ""
  343. MappingInformationType: "ByPolygonVertex"
  344. ReferenceInformationType: "Direct"
  345. Normals: *1176 {
  346. a: -0.974930167198181,-0.222510814666748,-4.10318889976224e-008,-0.672898590564728,-0.307168871164322,0.672944843769073,-0.590313494205475,-0.550447523593903,0.590370655059814,-0.920475363731384,-0.39080074429512,-9.86555903637054e-008,-0.920475363731384,-0.39080074429512,-9.86555903637054e-008,-0.590313494205475,-0.550447523593903,0.590370655059814,-0.435737937688828,-0.787564873695374,0.43574532866478,-0.763404548168182,-0.645920693874359,-1.65685392516934e-007,-0.763404548168182,-0.645920693874359,-1.65685392516934e-007,-0.435737937688828,-0.787564873695374,0.43574532866478,-0.313049376010895,-0.896658360958099,0.313055634498596,-0.60531622171402,-0.795985102653503,-2.79463165497873e-007,-0.60531622171402,-0.795985102653503,-2.79463165497873e-007,-0.313049376010895,-0.896658360958099,0.313055634498596,-0.194184720516205,-0.961552441120148,0.194188594818115,-0.417196750640869,-0.90881609916687,-1.45548440855237e-007,-0.417196750640869,-0.90881609916687,-1.45548440855237e-007,-0.194184720516205,-0.961552441120148,0.194188594818115,-0.0797009095549583,-0.993627548217773,0.0796998664736748,-0.207989722490311,-0.978130996227264,2.53324174082081e-007,-0.207989722490311,-0.978130996227264,2.53324174082081e-007,-0.0797009095549583,-0.993627548217773,0.0796998664736748,3.22804623920092e-007,-1,-3.12954000492027e-007,1.00748411568929e-006,-1,-9.59183950044462e-008,1.00748411568929e-006,-1,-9.59183950044462e-008,3.22804623920092e-007,-1,-3.12954000492027e-007,0.0797009989619255,-0.993627309799194,0.0797021239995956,0.207995176315308,-0.978129863739014,-3.61907837032049e-007,0.207995176315308,-0.978129863739014,-3.61907837032049e-007,0.0797009989619255,-0.993627309799194,0.0797021239995956,0.194191411137581,-0.961552023887634,0.194183677434921,0.417200863361359,-0.908814311027527,-9.70329736560416e-008,0.417200863361359,-0.908814311027527,-9.70329736560416e-008,0.194191411137581,-0.961552023887634,0.194183677434921,0.31305205821991,-0.896660447120667,0.313046962022781,0.605307281017303,-0.795992016792297,-1.3973014745261e-007,
  347. 0.605307281017303,-0.795992016792297,-1.3973014745261e-007,0.31305205821991,-0.896660447120667,0.313046962022781,0.435743719339371,-0.787567913532257,0.43573409318924,0.763399660587311,-0.645926415920258,0,0.763399660587311,-0.645926415920258,0,0.435743719339371,-0.787567913532257,0.43573409318924,0.590368747711182,-0.55045348405838,0.590309739112854,0.920480072498322,-0.390789568424225,2.6280080419383e-005,0.920480072498322,-0.390789568424225,2.6280080419383e-005,0.590368747711182,-0.55045348405838,0.590309739112854,0.672972142696381,-0.30715999007225,0.672875463962555,0.974931359291077,-0.222505673766136,5.46468472748529e-005,-0.590324521064758,-0.550448179244995,-0.590358912944794,-0.672876715660095,-0.307170540094376,-0.672966063022614,-0.974928200244904,-0.222519353032112,-2.73272144113434e-005,-0.920473575592041,-0.39080485701561,-1.30621237985906e-005,-0.435742944478989,-0.787558257579803,-0.435752272605896,-0.590324521064758,-0.550448179244995,-0.590358912944794,-0.920473575592041,-0.39080485701561,-1.30621237985906e-005,-0.763404130935669,-0.645921170711517,1.65686969921808e-007,-0.313048511743546,-0.896659255027771,-0.313053876161575,-0.435742944478989,-0.787558257579803,-0.435752272605896,-0.763404130935669,-0.645921170711517,1.65686969921808e-007,-0.605317652225494,-0.795983970165253,2.7946529712608e-007,-0.194182455539703,-0.961552917957306,-0.194188266992569,-0.313048511743546,-0.896659255027771,-0.313053876161575,-0.605317652225494,-0.795983970165253,2.7946529712608e-007,-0.417196422815323,-0.908816337585449,1.45549989838401e-007,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,-0.194182455539703,-0.961552917957306,-0.194188266992569,-0.417196422815323,-0.908816337585449,1.45549989838401e-007,-0.207987621426582,-0.978131473064423,-2.69911765826691e-007,3.22804623920092e-007,-1,-3.12954000492027e-007,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,-0.207987621426582,-0.978131473064423,-2.69911765826691e-007,8.54858626553323e-007,-0.999999940395355,8.12673377481588e-008,0.0797026455402374,-0.99362725019455,-0.0797006487846375,
  348. 3.22804623920092e-007,-1,-3.12954000492027e-007,8.54858626553323e-007,-0.999999940395355,8.12673377481588e-008,0.207992643117905,-0.978130400180817,-6.3851445020191e-007,0.194186642765999,-0.961552500724792,-0.19418603181839,0.0797026455402374,-0.99362725019455,-0.0797006487846375,0.207992643117905,-0.978130400180817,-6.3851445020191e-007,0.417196869850159,-0.908816158771515,-4.52371159553877e-006,0.313055604696274,-0.896659672260284,-0.313045620918274,0.194186642765999,-0.961552500724792,-0.19418603181839,0.417196869850159,-0.908816158771515,-4.52371159553877e-006,0.605309784412384,-0.79598993062973,-6.60908699501306e-006,0.435759514570236,-0.787558972835541,-0.435734629631042,0.313055604696274,-0.896659672260284,-0.313045620918274,0.605309784412384,-0.79598993062973,-6.60908699501306e-006,0.763400852680206,-0.645925045013428,-3.14797580358572e-006,0.590367615222931,-0.550451040267944,-0.590313255786896,0.435759514570236,-0.787558972835541,-0.435734629631042,0.763400852680206,-0.645925045013428,-3.14797580358572e-006,0.920478522777557,-0.390793204307556,-2.62013018073048e-005,0.974931359291077,-0.222505792975426,-5.46484370715916e-005,0.672939777374268,-0.307165622711182,-0.672905147075653,0.590367615222931,-0.550451040267944,-0.590313255786896,0.920478522777557,-0.390793204307556,-2.62013018073048e-005,-2.75765323749511e-005,-0.222513258457184,0.974929630756378,0.672972142696381,-0.30715999007225,0.672875463962555,0.590368747711182,-0.55045348405838,0.590309739112854,-3.03098458971363e-005,-0.390795588493347,0.920477390289307,-3.03098458971363e-005,-0.390795588493347,0.920477390289307,0.590368747711182,-0.55045348405838,0.590309739112854,0.435743719339371,-0.787567913532257,0.43573409318924,-1.85577682714211e-005,-0.645922541618347,0.763402998447418,-1.85577682714211e-005,-0.645922541618347,0.763402998447418,0.435743719339371,-0.787567913532257,0.43573409318924,0.31305205821991,-0.896660447120667,0.313046962022781,-4.12219014833681e-006,-0.795986831188202,0.605313897132874,-4.12219014833681e-006,-0.795986831188202,0.605313897132874,
  349. 0.31305205821991,-0.896660447120667,0.313046962022781,0.194191411137581,-0.961552023887634,0.194183677434921,-1.29785428271134e-006,-0.908813416957855,0.417202681303024,-1.29785428271134e-006,-0.908813416957855,0.417202681303024,0.194191411137581,-0.961552023887634,0.194183677434921,0.0797009989619255,-0.993627309799194,0.0797021239995956,-1.17904289709259e-006,-0.978130459785461,0.207992643117905,-1.17904289709259e-006,-0.978130459785461,0.207992643117905,0.0797009989619255,-0.993627309799194,0.0797021239995956,3.22804623920092e-007,-1,-3.12954000492027e-007,-3.0773202297496e-007,-1,-2.3203685941553e-006,-3.0773202297496e-007,-1,-2.3203685941553e-006,3.22804623920092e-007,-1,-3.12954000492027e-007,0.0797026455402374,-0.99362725019455,-0.0797006487846375,-1.5098366645816e-007,-0.978130638599396,-0.207991197705269,-1.5098366645816e-007,-0.978130638599396,-0.207991197705269,0.0797026455402374,-0.99362725019455,-0.0797006487846375,0.194186642765999,-0.961552500724792,-0.19418603181839,5.45827703035684e-008,-0.908816456794739,-0.417196065187454,5.45827703035684e-008,-0.908816456794739,-0.417196065187454,0.194186642765999,-0.961552500724792,-0.19418603181839,0.313055604696274,-0.896659672260284,-0.313045620918274,1.04802111877689e-007,-0.795989155769348,-0.605310916900635,1.04802111877689e-007,-0.795989155769348,-0.605310916900635,0.313055604696274,-0.896659672260284,-0.313045620918274,0.435759514570236,-0.787558972835541,-0.435734629631042,1.10463311386866e-007,-0.645916700363159,-0.763408005237579,1.10463311386866e-007,-0.645916700363159,-0.763408005237579,0.435759514570236,-0.787558972835541,-0.435734629631042,0.590367615222931,-0.550451040267944,-0.590313255786896,-2.61121131188702e-005,-0.390797585248947,-0.920476615428925,0.590367615222931,-0.550451040267944,-0.590313255786896,0.672939777374268,-0.307165622711182,-0.672905147075653,-5.43024434591644e-005,-0.222515910863876,-0.974929094314575,-2.61121131188702e-005,-0.390797585248947,-0.920476615428925,3.22804623920092e-007,-1,-3.12954000492027e-007,-0.0797009095549583,-0.993627548217773,0.0796998664736748,
  350. -1.76141156771337e-007,-0.978130757808685,0.207990884780884,-1.54610361846608e-007,-1,1.41454870572488e-006,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,3.22804623920092e-007,-1,-3.12954000492027e-007,-1.54610361846608e-007,-1,1.41454870572488e-006,-5.12192286805657e-007,-0.978130757808685,-0.207990869879723,-0.194182455539703,-0.961552917957306,-0.194188266992569,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,-5.12192286805657e-007,-0.978130757808685,-0.207990869879723,-6.98068845395028e-007,-0.908814489841461,-0.417200714349747,-0.313048511743546,-0.896659255027771,-0.313053876161575,-0.194182455539703,-0.961552917957306,-0.194188266992569,-6.98068845395028e-007,-0.908814489841461,-0.417200714349747,-2.11290057450242e-006,-0.795990407466888,-0.605309247970581,-0.435742944478989,-0.787558257579803,-0.435752272605896,-0.313048511743546,-0.896659255027771,-0.313053876161575,-2.11290057450242e-006,-0.795990407466888,-0.605309247970581,-1.54305016621947e-005,-0.645924985408783,-0.763400852680206,-0.590324521064758,-0.550448179244995,-0.590358912944794,-0.435742944478989,-0.787558257579803,-0.435752272605896,-1.54305016621947e-005,-0.645924985408783,-0.763400852680206,-4.39096038462594e-005,-0.390805423259735,-0.920473277568817,-0.672876715660095,-0.307170540094376,-0.672966063022614,-0.590324521064758,-0.550448179244995,-0.590358912944794,-4.39096038462594e-005,-0.390805423259735,-0.920473277568817,-5.53027566638775e-005,-0.222527652978897,-0.974926352500916,-0.590313494205475,-0.550447523593903,0.590370655059814,-0.672898590564728,-0.307168871164322,0.672944843769073,-5.42497800779529e-005,-0.222527459263802,0.974926352500916,-2.60889137280174e-005,-0.390790700912476,0.920479595661163,-0.435737937688828,-0.787564873695374,0.43574532866478,-0.590313494205475,-0.550447523593903,0.590370655059814,-2.60889137280174e-005,-0.390790700912476,0.920479595661163,-2.83677472623367e-008,-0.645931482315063,0.763395488262177,-0.313049376010895,-0.896658360958099,0.313055634498596,-0.435737937688828,-0.787564873695374,0.43574532866478,
  351. -2.83677472623367e-008,-0.645931482315063,0.763395488262177,9.66466906504593e-009,-0.795989990234375,0.605309724807739,-0.194184720516205,-0.961552441120148,0.194188594818115,-0.313049376010895,-0.896658360958099,0.313055634498596,9.66466906504593e-009,-0.795989990234375,0.605309724807739,1.72772089968021e-008,-0.908812284469604,0.417205393314362,-0.0797009095549583,-0.993627548217773,0.0796998664736748,-0.194184720516205,-0.961552441120148,0.194188594818115,1.72772089968021e-008,-0.908812284469604,0.417205393314362,-1.76141156771337e-007,-0.978130757808685,0.207990884780884,0.705560803413391,-0.0632423982024193,-0.705821812152863,0.705560803413391,-0.0632423907518387,-0.705821812152863,0.705560743808746,-0.0632423833012581,-0.705821752548218,2.02851497306256e-005,-4.53712527814787e-006,-1,1.54979061335325e-005,-1.90345861028618e-006,-0.999999940395355,2.45166552303999e-006,5.27383372173063e-006,-0.999999940395355,1.57071626745164e-005,3.30767397827003e-005,-1,1.48175122376415e-005,3.12107295030728e-005,-1,1.48175122376415e-005,3.12107295030728e-005,-1,1.57071626745164e-005,3.30767397827003e-005,-1,3.56587224814575e-005,7.49243627069518e-005,-1,1.77683377842186e-005,3.94377602788154e-005,-0.999999940395355,1.98115521925502e-005,4.3490592361195e-005,-1,1.98115521925502e-005,4.3490592361195e-005,-1,1.77683377842186e-005,3.94377602788154e-005,-0.999999940395355,0,4.19323578171316e-006,-1,4.90970660393941e-006,-1.81521845661337e-005,-0.999999940395355,5.47423996977159e-006,-2.07215252885362e-005,-1,5.47423996977159e-006,-2.07215252885362e-005,-1,4.90970660393941e-006,-1.81521845661337e-005,-0.999999940395355,9.85307633527555e-006,-4.06508152082097e-005,-1,1.79279286385281e-005,-2.06883214559639e-005,-1,1.82875264727045e-005,-1.97993322217371e-005,-0.999999940395355,1.82875264727045e-005,-1.97993322217371e-005,-0.999999940395355,1.79279286385281e-005,-2.06883214559639e-005,-1,2.32929196499754e-005,-7.4250970101275e-006,-1,2.33628020396282e-006,-1.85886153758474e-006,-1,-5.35237904841779e-006,1.83302049094891e-007,-1,2.33628020396282e-006,-1.85886153758474e-006,-1,
  352. -3.4659358789213e-005,7.96744825493079e-006,-1,-5.35237904841779e-006,1.83302049094891e-007,-1,4.03380327043124e-005,2.71057724603452e-005,1,3.58072029484902e-005,7.96738095232286e-006,1,3.93963200622238e-005,2.31279482250102e-005,1,4.02064652007539e-005,5.17178123118356e-005,0.999999940395355,4.00126009481028e-005,5.27072661498096e-005,1,4.29045940109063e-005,3.79470402549487e-005,1,4.03380327043124e-005,2.71057724603452e-005,1,3.93963200622238e-005,2.31279482250102e-005,1,1.98117559193634e-005,8.25233146315441e-005,1,1.77685124072013e-005,8.35029131849296e-005,1,3.56593882315792e-005,7.49253158573993e-005,1,4.00126009481028e-005,5.27072661498096e-005,1,4.02064652007539e-005,5.17178123118356e-005,0.999999940395355,-1.98115048988257e-005,8.25217066449113e-005,1,-1.77684050868265e-005,8.3501436165534e-005,1,0,9.20218444662169e-005,1,1.77685124072013e-005,8.35029131849296e-005,1,1.98117559193634e-005,8.25233146315441e-005,1,-4.02076548198238e-005,5.17191219842061e-005,0.999999940395355,-4.00137396354694e-005,5.27082374901511e-005,1,-3.56585514964536e-005,7.49226383049972e-005,1,-1.77684050868265e-005,8.3501436165534e-005,1,-1.98115048988257e-005,8.25217066449113e-005,1,-3.90374443668406e-005,2.31298490689369e-005,1,-4.00760254706256e-005,2.71070093731396e-005,1,-4.29073006671388e-005,3.79491393687204e-005,1,-4.00137396354694e-005,5.27082374901511e-005,1,-4.02076548198238e-005,5.17191219842061e-005,0.999999940395355,-0.705692768096924,-0.0632296875119209,0.705690979957581,-0.705692768096924,-0.0632296800613403,0.705690979957581,-0.705692708492279,-0.0632296726107597,0.705690920352936,-2.26166902521081e-015,-1,-2.46799523973365e-015,-2.26166881345257e-015,-1,-2.46799502797541e-015,-2.26166881345257e-015,-0.999999940395355,-2.46799481621717e-015,4.8362551297032e-007,-1,-4.83685369090381e-007,4.8362551297032e-007,-1,-4.83685369090381e-007,4.8362551297032e-007,-1,-4.83685369090381e-007,6.08233960974758e-008,-1,6.0763255760321e-008,6.08233960974758e-008,-1,6.0763255760321e-008,6.08233960974758e-008,-1,6.0763255760321e-008,
  353. -0.7057785987854,-0.0632381290197372,-0.705604493618011,-0.7057785987854,-0.0632381215691566,-0.705604434013367,-0.705778539180756,-0.0632381215691566,-0.705604434013367,-1,-2.28412573051173e-005,3.90862296626437e-005,-1,-2.67465729848482e-005,4.01819306716789e-005,-1,-3.73902112187352e-005,4.31681874033529e-005,-1,-5.9174548368901e-005,4.51169180450961e-005,-1,-5.77143000555225e-005,4.49862891400699e-005,-1,-5.77143000555225e-005,4.49862891400699e-005,-1,-5.9174548368901e-005,4.51169180450961e-005,-0.999999940395355,-9.19635931495577e-005,4.80500748381019e-005,-1,-9.117741137743e-005,1.97709850908723e-005,-1,-9.12671894184314e-005,2.30004188779276e-005,-1,-9.12671894184314e-005,2.30004188779276e-005,-1,-9.117741137743e-005,1.97709850908723e-005,-1,-9.03965992620215e-005,-8.31467696116306e-006,-1,-7.43435084586963e-005,-1.54331701196497e-005,-1,-7.24975761841051e-005,-1.62517208082136e-005,-1,-7.24975761841051e-005,-1.62517208082136e-005,-1,-7.43435084586963e-005,-1.54331701196497e-005,-1,-5.81800813961308e-005,-2.2600590455113e-005,-1,-4.60567061963957e-005,-3.49574729625601e-005,-1,-4.55168337794021e-005,-3.55077390850056e-005,-1,-4.55168337794021e-005,-3.55077390850056e-005,-1,-4.60567061963957e-005,-3.49574729625601e-005,-1,-3.80023302568588e-005,-4.31669832323678e-005,-1,-2.7137270080857e-005,-4.01810430048499e-005,-1,-2.31511821766617e-005,-3.90855857403949e-005,-1,-7.95738105807686e-006,-3.4910026442958e-005,-1,-2.31511821766617e-005,-3.90855857403949e-005,-1,-2.7137270080857e-005,-4.01810430048499e-005,1,2.71376447926741e-005,-4.01815741497558e-005,1,7.95746655057883e-006,-3.49104011547752e-005,1,2.31510584853822e-005,-3.90859677281696e-005,1,5.80970227019861e-005,-4.49853978352621e-005,1,5.95425044593867e-005,-4.51161577075254e-005,1,3.80025412596297e-005,-4.31675107392948e-005,1,2.71376447926741e-005,-4.01815741497558e-005,1,2.31510584853822e-005,-3.90859677281696e-005,1,9.17511497391388e-005,-2.30001915042521e-005,1,9.17240104172379e-005,-1.97707595361862e-005,0.999999940395355,9.19616722967476e-005,-4.8049016186269e-005,
  354. 1,5.95425044593867e-005,-4.51161577075254e-005,1,5.80970227019861e-005,-4.49853978352621e-005,1,9.17511497391388e-005,-2.30001915042521e-005,1,7.29827079339884e-005,1.625173172215e-005,1,7.48911334085278e-005,1.54331810335862e-005,1,9.14879565243609e-005,8.31460783956572e-006,1,9.17240104172379e-005,-1.97707595361862e-005,1,4.51324667665176e-005,3.55080956069287e-005,1,4.5688768295804e-005,3.49577821907587e-005,1,5.81802050874103e-005,2.26006959564984e-005,1,7.48911334085278e-005,1.54331810335862e-005,1,7.29827079339884e-005,1.625173172215e-005,1,2.28411499847425e-005,3.90858513128478e-005,1,2.67463346972363e-005,4.01814686483704e-005,1,3.73897528334055e-005,4.31675325671677e-005,1,4.5688768295804e-005,3.49577821907587e-005,1,4.51324667665176e-005,3.55080956069287e-005,1,7.95740834291792e-006,3.49101501342375e-005,1,2.67463346972363e-005,4.01814686483704e-005,1,2.28411499847425e-005,3.90858513128478e-005,5.14273324370151e-007,-1,-5.1372649068071e-007,5.14273267526733e-007,-0.999999940395355,-5.1372649068071e-007,5.14273267526733e-007,-1,-5.13726433837292e-007,0.422935217618942,0.801404118537903,-0.422938764095306,0.586424112319946,0.558758974075317,-0.58642578125,0.422935336828232,0.801404058933258,-0.422938883304596,0.10161679238081,0.988850355148315,-0.108853049576283,-1.22135659808009e-007,1,1.57720876359235e-007,0.108853377401829,0.988850057125092,-0.101618766784668,0.108853377401829,0.988850057125092,-0.101618766784668,-1.22135659808009e-007,1,1.57720876359235e-007,0.108853496611118,0.988849997520447,0.101619340479374,0.422935336828232,0.801404058933258,-0.422938883304596,0.10161679238081,0.988850355148315,-0.108853049576283,0.108853377401829,0.988850057125092,-0.101618766784668,0.422935217618942,0.801404118537903,-0.422938764095306,0.422932267189026,0.801405012607574,0.422940284013748,0.586416006088257,0.558761119842529,0.586431920528412,0.42293319106102,0.801403939723969,0.422941237688065,-0.101619966328144,0.988849878311157,0.108854696154594,0.101616941392422,0.988850176334381,0.108854338526726,-1.22135659808009e-007,1,1.57720876359235e-007,
  355. 0.42293319106102,0.801403939723969,0.422941237688065,0.108853496611118,0.988849997520447,0.101619340479374,0.101616941392422,0.988850176334381,0.108854338526726,0.422932267189026,0.801405012607574,0.422940284013748,-0.422944754362106,0.80139946937561,-0.422937899827957,-0.586433112621307,0.558758974075317,-0.586416780948639,-0.422943830490112,0.801400482654572,-0.422937005758286,-0.108855344355106,0.988850057125092,-0.101618237793446,-1.22135659808009e-007,1,1.57720876359235e-007,-0.101620301604271,0.988849759101868,-0.108854494988918,-0.422943830490112,0.801400482654572,-0.422937005758286,-0.108855344355106,0.988850057125092,-0.101618237793446,-0.101620301604271,0.988849759101868,-0.108854494988918,-0.422944754362106,0.80139946937561,-0.422937899827957,-0.422938168048859,0.801404356956482,0.422935545444489,-0.586426556110382,0.558757305145264,0.586424767971039,-0.422938048839569,0.801404476165771,0.422935396432877,-0.422938048839569,0.801404476165771,0.422935396432877,-0.101619966328144,0.988849878311157,0.108854696154594,-0.108854532241821,0.988850057125092,0.101618222892284,-0.422938168048859,0.801404356956482,0.422935545444489,-1.22135659808009e-007,1,1.57720876359235e-007,-0.108855344355106,0.988850057125092,-0.101618237793446,-0.108854532241821,0.988850057125092,0.101618222892284,-0.108854532241821,0.988850057125092,0.101618222892284,-0.101619966328144,0.988849878311157,0.108854696154594,-1.22135659808009e-007,1,1.57720876359235e-007,-1.22135659808009e-007,1,1.57720876359235e-007,0.10161679238081,0.988850355148315,-0.108853049576283,-0.101620301604271,0.988849759101868,-0.108854494988918,-1.22135659808009e-007,1,1.57720876359235e-007,0.101616941392422,0.988850176334381,0.108854338526726,0.108853496611118,0.988849997520447,0.101619340479374,-3.90374443668406e-005,2.31298490689369e-005,1,-3.50779737345874e-005,7.96739550423808e-006,1,-4.00760254706256e-005,2.71070093731396e-005,1,-1,-7.95744836068479e-006,3.49103211192414e-005,-1,-2.67465729848482e-005,4.01819306716789e-005,-1,-2.28412573051173e-005,3.90862296626437e-005,
  356. 3.85295134037733e-005,-1.45741250889841e-005,-0.999999940395355,1.54979061335325e-005,-1.90345861028618e-006,-0.999999940395355,2.02851497306256e-005,-4.53712527814787e-006,-1,0.705559968948364,-0.0632264316082001,0.705824136734009,0.705559849739075,-0.0632264316082001,0.705824077129364,0.705559909343719,-0.0632264316082001,0.705824136734009
  357. }
  358. NormalsW: *392 {
  359. 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
  360. }
  361. }
  362. LayerElementBinormal: 0 {
  363. Version: 102
  364. Name: "map1"
  365. MappingInformationType: "ByPolygonVertex"
  366. ReferenceInformationType: "Direct"
  367. Binormals: *1176 {
  368. a: 0.22251084446907,-0.974930286407471,5.67448341826093e-006,0.415267795324326,-0.909699320793152,2.63750575868471e-006,0.681979238986969,-0.731371521949768,-1.34110450744629e-007,0.39080074429512,-0.920475363731384,1.68793985722004e-006,0.39080074429512,-0.920475363731384,1.68793985722004e-006,0.681979238986969,-0.731371521949768,-1.34110450744629e-007,0.87500411272049,-0.484115600585938,1.49011611938477e-007,0.645920693874359,-0.763404548168182,-7.2139954454542e-008,0.645920693874359,-0.763404548168182,-7.2139954454542e-008,0.87500411272049,-0.484115600585938,1.49011611938477e-007,0.944114506244659,-0.329617649316788,1.63912773132324e-007,0.795985102653503,-0.60531622171402,2.91815496211711e-007,0.795985102653503,-0.60531622171402,2.91815496211711e-007,0.944114506244659,-0.329617649316788,1.63912773132324e-007,0.980211615562439,-0.197952970862389,-2.19792156030962e-007,0.90881621837616,-0.417196810245514,-1.3219133165876e-007,0.90881621837616,-0.417196810245514,-1.3219133165876e-007,0.980211615562439,-0.197952970862389,-2.19792156030962e-007,0.996798515319824,-0.0799555405974388,-3.53017867382732e-006,0.978130996227264,-0.207989722490311,-5.50015286648886e-008,0.978130996227264,-0.207989722490311,-5.50015286648886e-008,0.996798515319824,-0.0799555405974388,-3.53017867382732e-006,1,3.22804652341802e-007,-5.53485648424612e-008,1,1.00748468412348e-006,-5.40063319931505e-006,1,1.00748468412348e-006,-5.40063319931505e-006,1,3.22804652341802e-007,-5.53485648424612e-008,0.996798515319824,0.0799550786614418,-3.60840977009502e-006,0.978129863739014,0.207995176315308,8.56566160223338e-008,0.978129863739014,0.207995176315308,8.56566160223338e-008,0.996798515319824,0.0799550786614418,-3.60840977009502e-006,0.980210185050964,0.197959572076797,1.49011626149331e-007,0.908814311027527,0.417200863361359,1.43449000233886e-007,0.908814311027527,0.417200863361359,1.43449000233886e-007,0.980210185050964,0.197959572076797,1.49011626149331e-007,0.944113850593567,0.329619526863098,2.23517417907715e-008,0.795991897583008,0.605307221412659,2.77937992620991e-008,
  369. 0.795991897583008,0.605307221412659,2.77937992620991e-008,0.944113850593567,0.329619526863098,2.23517417907715e-008,0.875002086162567,0.484119147062302,8.94069671630859e-008,0.645926415920258,0.763399660587311,7.42335899417412e-008,0.645926415920258,0.763399660587311,7.42335899417412e-008,0.875002086162567,0.484119147062302,8.94069671630859e-008,0.681949138641357,0.731399655342102,4.47034906869703e-008,0.390789568424225,0.920480072498322,3.24503125739284e-005,0.390789568424225,0.920480072498322,3.24503125739284e-005,0.681949138641357,0.731399655342102,4.47034906869703e-008,0.415175318717957,0.909741520881653,5.16623258590698e-005,0.222505703568459,0.974931478500366,5.55970982532017e-005,0.681973040103912,-0.731377363204956,-1.63912773132324e-007,0.415257394313812,-0.909704029560089,2.5629997253418e-005,0.222519382834435,-0.974928319454193,2.70849595835898e-005,0.39080485701561,-0.920473575592041,1.61578482220648e-005,0.87500011920929,-0.484122812747955,-5.0663948059082e-007,0.681973040103912,-0.731377363204956,-1.63912773132324e-007,0.39080485701561,-0.920473575592041,1.61578482220648e-005,0.645921170711517,-0.763404130935669,-5.22800803537393e-007,0.944114923477173,-0.329616576433182,-7.45058059692383e-008,0.87500011920929,-0.484122812747955,-5.0663948059082e-007,0.645921170711517,-0.763404130935669,-5.22800803537393e-007,0.795984089374542,-0.605317711830139,-2.19618200958394e-007,0.980212032794952,-0.197950556874275,-2.23517417907715e-007,0.944114923477173,-0.329616576433182,-7.45058059692383e-008,0.795984089374542,-0.605317711830139,-2.19618200958394e-007,0.908816456794739,-0.417196482419968,-1.90269460631498e-007,0.996798455715179,-0.079956166446209,3.58512625098228e-006,0.980212032794952,-0.197950556874275,-2.23517417907715e-007,0.908816456794739,-0.417196482419968,-1.90269460631498e-007,0.978131473064423,-0.207987621426582,-1.03747815671795e-007,1,3.22804652341802e-007,-5.53485648424612e-008,0.996798455715179,-0.079956166446209,3.58512625098228e-006,0.978131473064423,-0.207987621426582,-1.03747815671795e-007,
  370. 1,8.54859194987512e-007,5.38044923814596e-006,0.996798396110535,0.0799567326903343,3.57162298314506e-006,1,3.22804652341802e-007,-5.53485648424612e-008,1,8.54859194987512e-007,5.38044923814596e-006,0.978130400180817,0.207992643117905,-5.48183152204729e-006,0.980210721492767,0.197956904768944,-1.09635293483734e-005,0.996798396110535,0.0799567326903343,3.57162298314506e-006,0.978130400180817,0.207992643117905,-5.48183152204729e-006,0.908816158771515,0.417196869850159,-1.39680478241644e-005,0.944111168384552,0.329627186059952,-1.31130218505859e-005,0.980210721492767,0.197956904768944,-1.09635293483734e-005,0.908816158771515,0.417196869850159,-1.39680478241644e-005,0.79599004983902,0.605309844017029,-6.63177252135938e-006,0.874991536140442,0.484138250350952,-3.5166735870007e-006,0.944111168384552,0.329627186059952,-1.31130218505859e-005,0.79599004983902,0.605309844017029,-6.63177252135938e-006,0.645925045013428,0.763400852680206,7.65883214626228e-008,0.681948184967041,0.731400489807129,-7.45058059692383e-008,0.874991536140442,0.484138250350952,-3.5166735870007e-006,0.645925045013428,0.763400852680206,7.65883214626228e-008,0.390793204307556,0.920478522777557,-3.24482534779236e-005,0.222505822777748,0.974931478500366,-5.51554112462327e-005,0.41519820690155,0.909730970859528,-5.15580177307129e-005,0.681948184967041,0.731400489807129,-7.45058059692383e-008,0.390793204307556,0.920478522777557,-3.24482534779236e-005,5.01377201089781e-007,-0.974929749965668,-0.222513288259506,8.03172588348389e-006,-0.909696400165558,-0.415274083614349,2.57492101809476e-005,-0.731352746486664,-0.681999385356903,9.96104154182831e-006,-0.920477509498596,-0.390795648097992,9.96104154182831e-006,-0.920477509498596,-0.390795648097992,2.57492101809476e-005,-0.731352746486664,-0.681999385356903,2.3186206817627e-005,-0.484101116657257,-0.875012099742889,2.49258082476445e-005,-0.763402998447418,-0.645922541618347,2.49258082476445e-005,-0.763402998447418,-0.645922541618347,2.3186206817627e-005,-0.484101116657257,-0.875012099742889,3.12924470335929e-007,-0.329614698886871,-0.94411563873291,
  371. 1.09597203845624e-005,-0.605313897132874,-0.795986831188202,1.09597203845624e-005,-0.605313897132874,-0.795986831188202,3.12924470335929e-007,-0.329614698886871,-0.94411563873291,3.82214784622192e-006,-0.197951227426529,-0.980211913585663,-1.64409375003061e-008,-0.417202740907669,-0.908813536167145,-1.64409375003061e-008,-0.417202740907669,-0.908813536167145,3.82214784622192e-006,-0.197951227426529,-0.980211913585663,7.30203555576736e-006,-0.0799559056758881,-0.996798455715179,7.9865912994137e-006,-0.207992643117905,-0.978130459785461,7.9865912994137e-006,-0.207992643117905,-0.978130459785461,7.30203555576736e-006,-0.0799559056758881,-0.996798455715179,-5.53589387664033e-008,3.12953972070318e-007,-1,1.65907977134339e-006,2.32036813940795e-006,-1,1.65907977134339e-006,2.32036813940795e-006,-1,-5.53589387664033e-008,3.12953972070318e-007,-1,-9.58796817940311e-007,0.0799549520015717,-0.996798574924469,4.96799401616954e-008,0.207991227507591,-0.978130757808685,4.96799401616954e-008,0.207991227507591,-0.978130757808685,-9.58796817940311e-007,0.0799549520015717,-0.996798574924469,1.22934579849243e-007,0.197954192757607,-0.98021125793457,1.00101594568969e-007,0.417196124792099,-0.908816576004028,1.00101594568969e-007,0.417196124792099,-0.908816576004028,1.22934579849243e-007,0.197954192757607,-0.98021125793457,2.23517417907715e-008,0.329613715410233,-0.944115877151489,-7.67631220810472e-008,0.605310916900635,-0.795989155769348,-7.67631220810472e-008,0.605310916900635,-0.795989155769348,2.23517417907715e-008,0.329613715410233,-0.944115877151489,-2.9802315282268e-008,0.484115540981293,-0.875004053115845,-2.12975010072114e-007,0.76340788602829,-0.645916640758514,-2.12975010072114e-007,0.76340788602829,-0.645916640758514,-2.9802315282268e-008,0.484115540981293,-0.875004053115845,-4.17232513427734e-007,0.731368958950043,-0.681982040405273,-3.27753004967235e-005,0.920476615428925,-0.390797585248947,-4.17232513427734e-007,0.731368958950043,-0.681982040405273,-5.18411470693536e-005,0.9096839427948,-0.415301501750946,-5.51852353964932e-005,0.974929094314575,-0.222515910863876,
  372. -3.27753004967235e-005,0.920476615428925,-0.390797585248947,-5.53589387664033e-008,3.12953972070318e-007,-1,1.00722536444664e-006,-0.0799542888998985,-0.996798515319824,-3.68615573620446e-008,-0.207990884780884,-0.978130757808685,-1.26633707964174e-007,-1.41454870572488e-006,-1,-3.20514664053917e-006,0.0799545645713806,-0.996798515319824,-5.53589387664033e-008,3.12953972070318e-007,-1,-1.26633707964174e-007,-1.41454870572488e-006,-1,-4.04519141739002e-006,0.207990869879723,-0.978130757808685,-2.03773379325867e-006,0.197956681251526,-0.980210781097412,-3.20514664053917e-006,0.0799545645713806,-0.996798515319824,-4.04519141739002e-006,0.207990869879723,-0.978130757808685,-5.58683765916612e-008,0.417200654745102,-0.908814370632172,-5.96046447753906e-008,0.329621642827988,-0.94411313533783,-2.03773379325867e-006,0.197956681251526,-0.980210781097412,-5.58683765916612e-008,0.417200654745102,-0.908814370632172,-5.14415660290979e-006,0.605309247970581,-0.795990407466888,-1.13099813461304e-005,0.484135687351227,-0.874992907047272,-5.96046447753906e-008,0.329621642827988,-0.94411313533783,-5.14415660290979e-006,0.605309247970581,-0.795990407466888,-2.38483698922209e-005,0.763400971889496,-0.645925045013428,-3.72231043002103e-005,0.731415808200836,-0.681931793689728,-1.13099813461304e-005,0.484135687351227,-0.874992907047272,-2.38483698922209e-005,0.763400971889496,-0.645925045013428,-1.88820085895713e-005,0.920473396778107,-0.39080548286438,-1.51693802763475e-005,0.909720838069916,-0.415220379829407,-3.72231043002103e-005,0.731415808200836,-0.681931793689728,-1.88820085895713e-005,0.920473396778107,-0.39080548286438,-4.71500243293121e-007,0.974926352500916,-0.222527652978897,5.81145286560059e-007,-0.731404662132263,-0.681943714618683,5.20795583724976e-005,-0.909730672836304,-0.41519883275032,5.50946970179211e-005,-0.974926471710205,-0.222527489066124,3.31706905853935e-005,-0.920479595661163,-0.390790700912476,-5.81145343403477e-007,-0.484121680259705,-0.875000715255737,5.81145286560059e-007,-0.731404662132263,-0.681943714618683,
  373. 3.31706905853935e-005,-0.920479595661163,-0.390790700912476,-1.1774983477153e-007,-0.763395488262177,-0.645931482315063,-1.564621925354e-007,-0.32962355017662,-0.944112539291382,-5.81145343403477e-007,-0.484121680259705,-0.875000715255737,-1.1774983477153e-007,-0.763395488262177,-0.645931482315063,-3.73130490061158e-007,-0.605309784412384,-0.795990109443665,-1.86264514923096e-007,-0.197956666350365,-0.980210781097412,-1.564621925354e-007,-0.32962355017662,-0.944112539291382,-3.73130490061158e-007,-0.605309784412384,-0.795990109443665,-2.43166766722425e-007,-0.417205393314362,-0.908812284469604,1.00722536444664e-006,-0.0799542888998985,-0.996798515319824,-1.86264514923096e-007,-0.197956666350365,-0.980210781097412,-2.43166766722425e-007,-0.417205393314362,-0.908812284469604,-3.68615573620446e-008,-0.207990884780884,-0.978130757808685,-0.707127749919891,0.00240463926456869,-0.707081735134125,-0.707127749919891,0.00240463740192354,-0.707081735134125,-0.707127749919891,0.00240463577210903,-0.707081735134125,-0.997323930263519,-0.0731103718280792,-1.98991529032355e-005,-0.986752986907959,-0.162230312824249,-1.49838069773978e-005,-0.955273449420929,-0.295724153518677,-3.90161130781053e-006,-0.949907600879669,-0.312531113624573,-2.52578647632618e-005,-0.967697083950043,-0.252116143703461,-2.22075923375087e-005,-0.967697083950043,-0.252116143703461,-2.22075923375087e-005,-0.949907600879669,-0.312531113624573,-2.52578647632618e-005,-0.9679194688797,-0.251260697841644,-5.33403181179892e-005,-0.991798937320709,0.127808228135109,-1.25821479741717e-005,-0.97021496295929,-0.242245674133301,-2.97568731184583e-005,-0.97021496295929,-0.242245674133301,-2.97568731184583e-005,-0.991798937320709,0.127808228135109,-1.25821479741717e-005,-0.912252902984619,0.40962740778923,1.7176643041239e-006,-0.989179491996765,0.146710440516472,-7.51969673729036e-006,-0.967468738555908,0.25299084186554,-1.05385115602985e-005,-0.967468738555908,0.25299084186554,-1.05385115602985e-005,-0.989179491996765,0.146710440516472,-7.51969673729036e-006,-0.967940807342529,0.251178503036499,-1.97478038899135e-005,
  374. -0.949919700622559,0.312493979930878,-2.34950675803702e-005,-0.969556093215942,0.244869694113731,-2.25790390686598e-005,-0.969556093215942,0.244869694113731,-2.25790390686598e-005,-0.949919700622559,0.312493979930878,-2.34950675803702e-005,-0.955257713794708,0.295774966478348,-2.44468974415213e-005,-0.991711139678955,0.128487750887871,-2.55575605478953e-006,-0.999754548072815,0.0221587065607309,5.35512708665919e-006,-0.991711139678955,0.128487750887871,-2.55575605478953e-006,-0.999878108501434,-0.0156140113249421,3.45307307725307e-005,-0.999754548072815,0.0221587065607309,5.35512708665919e-006,-0.991708338260651,-0.128509297966957,4.34869070886634e-005,-0.999878466129303,0.0155918095260859,3.56786258635111e-005,-0.999753713607788,-0.0221968404948711,3.98999836761504e-005,-0.969551026821136,-0.244889467954636,5.16473701281939e-005,-0.949903607368469,-0.31254318356514,5.44814101886004e-005,-0.95525586605072,-0.295780718326569,5.22088666912168e-005,-0.991708338260651,-0.128509297966957,4.34869070886634e-005,-0.999753713607788,-0.0221968404948711,3.98999836761504e-005,-0.967486917972565,-0.252921313047409,4.00395183532964e-005,-0.98917680978775,-0.146728649735451,2.98284685413819e-005,-0.967925608158112,-0.25123730301857,5.33396705577616e-005,-0.949903607368469,-0.31254318356514,5.44814101886004e-005,-0.969551026821136,-0.244889467954636,5.16473701281939e-005,-0.970232486724854,0.242175698280334,-3.92065157939214e-005,-0.991823792457581,-0.127615451812744,-6.96705319569446e-006,-0.912378013134003,-0.409348905086517,3.76690404664259e-005,-0.98917680978775,-0.146728649735451,2.98284685413819e-005,-0.967486917972565,-0.252921313047409,4.00395183532964e-005,-0.967690289020538,0.252142190933228,-5.19491331942845e-005,-0.949934542179108,0.312448978424072,-5.44790673302487e-005,-0.967957615852356,0.251113682985306,-5.33300699316897e-005,-0.991823792457581,-0.127615451812744,-6.96705319569446e-006,-0.970232486724854,0.242175698280334,-3.92065157939214e-005,-0.999794483184814,-0.0202721804380417,-3.85605308110826e-005,-0.994923055171967,0.100639209151268,-4.26005899498705e-005,
  375. -0.955258965492249,0.295770823955536,-5.22118316439446e-005,-0.949934542179108,0.312448978424072,-5.44790673302487e-005,-0.967690289020538,0.252142190933228,-5.19491331942845e-005,-0.700574219226837,-0.086457833647728,-0.708322584629059,-0.700574219226837,-0.086457833647728,-0.708322584629059,-0.700574219226837,-0.0864578261971474,-0.708322584629059,1,-2.26166902521081e-015,-5.58179035013385e-030,1,-2.26166881345257e-015,-5.58178959781746e-030,1,-2.26166902521081e-015,-5.58179035013385e-030,1,4.83565600006841e-007,0.000123839010484517,1,4.83565600006841e-007,0.000123839010484517,1,4.83565600006841e-007,0.000123839010484517,-1,-6.08083468023324e-008,0.000247616699198261,-1,-6.08083468023324e-008,0.000247616699198261,-1,-6.08083468023324e-008,0.000247616699198261,0.708103597164154,-0.0326184071600437,-0.705354928970337,0.708103537559509,-0.032618410885334,-0.705354928970337,0.708103537559509,-0.0326184071600437,-0.705354869365692,-3.95835813833401e-005,0.0221957694739103,-0.999753713607788,-4.32864071626682e-005,0.128530979156494,-0.991705596446991,-5.22968075529207e-005,0.295815736055374,-0.955245018005371,-6.13496013102122e-005,0.312504231929779,-0.949916481971741,-5.77506179979537e-005,0.244900122284889,-0.969548285007477,-5.77506179979537e-005,0.244900122284889,-0.969548285007477,-6.13496013102122e-005,0.312504231929779,-0.949916481971741,-6.96096176397987e-005,0.251187354326248,-0.967938482761383,-7.98308064986486e-006,-0.127515196800232,-0.991836607456207,-4.44214419985656e-005,0.242210701107979,-0.970223665237427,-4.44214419985656e-005,0.242210701107979,-0.970223665237427,-7.98308064986486e-006,-0.127515196800232,-0.991836607456207,4.45763398602139e-005,-0.409192711114883,-0.912447988986969,2.61736822722014e-005,-0.146717920899391,-0.989178359508514,3.40523984050378e-005,-0.252817124128342,-0.967514097690582,3.40523984050378e-005,-0.252817124128342,-0.967514097690582,2.61736822722014e-005,-0.146717920899391,-0.989178359508514,3.64848965546116e-005,-0.251088201999664,-0.967964231967926,4.75975757581182e-005,-0.312445938587189,-0.949935555458069,
  376. 4.58372196590062e-005,-0.252142429351807,-0.967690229415894,4.58372196590062e-005,-0.252142429351807,-0.967690229415894,4.75975757581182e-005,-0.312445938587189,-0.949935555458069,5.24759707332123e-005,-0.295784771442413,-0.95525461435318,4.27074010076467e-005,-0.100608214735985,-0.99492621421814,3.86068895750213e-005,0.0203281342983246,-0.999793350696564,3.35727090714499e-005,0.130526900291443,-0.991444766521454,3.86068895750213e-005,0.0203281342983246,-0.999793350696564,4.27074010076467e-005,-0.100608214735985,-0.99492621421814,-4.4131804315839e-005,0.166140884160995,-0.986102044582367,-3.53696414094884e-005,0.0678101629018784,-0.997698247432709,-4.07922270824201e-005,0.0789742097258568,-0.99687671661377,-5.8179852203466e-005,0.252125233411789,-0.967694640159607,-6.14625168964267e-005,0.312474101781845,-0.949926257133484,-5.24763236171566e-005,0.295776188373566,-0.955257296562195,-4.4131804315839e-005,0.166140884160995,-0.986102044582367,-4.07922270824201e-005,0.0789742097258568,-0.99687671661377,-4.4536151108332e-005,0.242184087634087,-0.970230340957642,-7.91170623415383e-006,-0.127530604600906,-0.991834700107574,-6.96069037076086e-005,0.251172184944153,-0.967942476272583,-6.14625168964267e-005,0.312474101781845,-0.949926257133484,-5.8179852203466e-005,0.252125233411789,-0.967694640159607,-4.4536151108332e-005,0.242184087634087,-0.970230340957642,3.41766317433212e-005,-0.252840012311935,-0.967508137226105,2.625614979479e-005,-0.146746963262558,-0.989174067974091,4.50236875622068e-005,-0.409202247858047,-0.91244375705719,-7.91170623415383e-006,-0.127530604600906,-0.991834700107574,4.5479569962481e-005,-0.244894802570343,-0.969549715518951,4.7483710659435e-005,-0.312469184398651,-0.949927985668182,3.64869738405105e-005,-0.251125395298004,-0.967954576015472,2.625614979479e-005,-0.146746963262558,-0.989174067974091,3.41766317433212e-005,-0.252840012311935,-0.967508137226105,3.95832721551415e-005,-0.022199060767889,-0.999753594398499,4.32856431871187e-005,-0.128518328070641,-0.991707146167755,5.22955160704441e-005,-0.295793533325195,-0.95525187253952,
  377. 4.7483710659435e-005,-0.312469184398651,-0.949927985668182,4.5479569962481e-005,-0.244894802570343,-0.969549715518951,3.47819332091603e-005,0.0155802769586444,-0.999878644943237,4.32856431871187e-005,-0.128518328070641,-0.991707146167755,3.95832721551415e-005,-0.022199060767889,-0.999753594398499,-2.64194211212904e-013,5.1372649068071e-007,-1,-2.64194238317958e-013,5.13726547524129e-007,-1,-2.64194184107849e-013,5.13726433837292e-007,-1,-0.724735200405121,0.0189794022589922,-0.688766062259674,-0.707102715969086,-1.07139339888818e-005,-0.707110941410065,-0.75122857093811,0.0490845888853073,-0.658214569091797,-0.729936420917511,-0.000231467216508463,-0.683515012264252,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.682946801185608,0.00011304767394904,-0.730468153953552,-0.682946801185608,0.00011304767394904,-0.730468153953552,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.694587409496307,0.148792400956154,-0.703853130340576,-0.75122857093811,0.0490845888853073,-0.658214569091797,-0.729936420917511,-0.000231467216508463,-0.683515012264252,-0.682946801185608,0.00011304767394904,-0.730468153953552,-0.724735200405121,0.0189794022589922,-0.688766062259674,-0.56628292798996,0.59812206029892,-0.567074656486511,-0.394555032253265,0.829328417778015,-0.395652264356613,-0.566168785095215,0.59812343120575,-0.567187309265137,-0.730108320713043,0.000192403793334961,-0.683331489562988,-0.705080389976501,0.148780509829521,-0.693344116210938,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.566168785095215,0.59812343120575,-0.567187309265137,-0.694587409496307,0.148792400956154,-0.703853130340576,-0.705080389976501,0.148780509829521,-0.693344116210938,-0.56628292798996,0.59812206029892,-0.567074656486511,-0.566670060157776,-0.598129451274872,-0.566680073738098,-0.395096033811569,-0.829330205917358,-0.395108610391617,-0.56667298078537,-0.598128139972687,-0.566678524017334,-0.69490385055542,-0.148795574903488,-0.703540027141571,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.704956412315369,-0.14878411591053,-0.693469285964966,
  378. -0.56667298078537,-0.598128139972687,-0.566678524017334,-0.69490385055542,-0.148795574903488,-0.703540027141571,-0.704956412315369,-0.14878411591053,-0.693469285964966,-0.566670060157776,-0.598129451274872,-0.566680073738098,-0.724739253520966,-0.0189893562346697,-0.688761532306671,-0.707109153270721,-7.25686641089851e-006,-0.707104444503784,-0.751237094402313,-0.0491002276539803,-0.658203661441803,-0.751237094402313,-0.0491002276539803,-0.658203661441803,-0.730108320713043,0.000192403793334961,-0.683331489562988,-0.68311208486557,-0.000148333623656072,-0.73031359910965,-0.724739253520966,-0.0189893562346697,-0.688761532306671,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.69490385055542,-0.148795574903488,-0.703540027141571,-0.68311208486557,-0.000148333623656072,-0.73031359910965,-0.68311208486557,-0.000148333623656072,-0.73031359910965,-0.730108320713043,0.000192403793334961,-0.683331489562988,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.729936420917511,-0.000231467216508463,-0.683515012264252,-0.704956412315369,-0.14878411591053,-0.693469285964966,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.705080389976501,0.148780509829521,-0.693344116210938,-0.694587409496307,0.148792400956154,-0.703853130340576,-0.999794483184814,-0.0202721804380417,-3.85605308110826e-005,-0.991454660892487,-0.130451709032059,-3.37388592015486e-005,-0.994923055171967,0.100639209151268,-4.26005899498705e-005,-3.47820387105457e-005,-0.0155878877267241,-0.999878525733948,-4.32864071626682e-005,0.128530979156494,-0.991705596446991,-3.95835813833401e-005,0.0221957694739103,-0.999753713607788,-0.998428463935852,-0.0560419671237469,-3.76522039005067e-005,-0.986752986907959,-0.162230312824249,-1.49838069773978e-005,-0.997323930263519,-0.0731103718280792,-1.98991529032355e-005,-0.705398738384247,0.0326427333056927,0.708058774471283,-0.705398738384247,0.032642737030983,0.708058714866638,-0.705398738384247,0.032642737030983,0.708058714866638
  379. }
  380. BinormalsW: *392 {
  381. 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
  382. }
  383. }
  384. LayerElementTangent: 0 {
  385. Version: 102
  386. Name: "map1"
  387. MappingInformationType: "ByPolygonVertex"
  388. ReferenceInformationType: "Direct"
  389. Tangents: *1176 {
  390. a: 1.30263731534797e-006,-5.52309529666672e-006,-1,-0.612176597118378,-0.279454052448273,-0.739692687988281,-0.431780397891998,-0.402620494365692,-0.807132244110107,7.50458070797322e-007,-1.51515212110098e-006,-1,7.50458070797322e-007,-1.51515212110098e-006,-1,-0.431780397891998,-0.402620494365692,-0.807132244110107,-0.210950970649719,-0.381278991699219,-0.900070071220398,7.98882950903135e-008,1.62091595257152e-007,-1,7.98882950903135e-008,1.62091595257152e-007,-1,-0.210950970649719,-0.381278991699219,-0.900070071220398,-0.103188499808311,-0.295560389757156,-0.949734807014465,4.01444367525983e-007,4.58078766030212e-008,-1,4.01444367525983e-007,4.58078766030212e-008,-1,-0.103188499808311,-0.295560389757156,-0.949734807014465,-0.0384404174983501,-0.190345853567123,-0.980964183807373,-5.94152638200285e-008,1.87426593356577e-007,-1,-5.94152638200285e-008,1.87426593356577e-007,-1,-0.0384404174983501,-0.190345853567123,-0.980964183807373,-0.00637595308944583,-0.0794444233179092,-0.996818900108337,-1.06487526352339e-007,-2.36344476434169e-007,-1,-1.06487526352339e-007,-2.36344476434169e-007,-1,-0.00637595308944583,-0.0794444233179092,-0.996818900108337,-5.53486643184442e-008,3.12954000492027e-007,-1,-5.40063319931505e-006,9.59129522470903e-008,-1,-5.40063319931505e-006,9.59129522470903e-008,-1,-5.53486643184442e-008,3.12954000492027e-007,-1,0.00636900356039405,-0.0794472396373749,-0.996818721294403,8.50820924824802e-009,3.71809022681191e-007,-1,8.50820924824802e-009,3.71809022681191e-007,-1,0.00636900356039405,-0.0794472396373749,-0.996818721294403,0.0384406559169292,-0.190340772271156,-0.980965137481689,8.98862566600656e-008,1.48032000879539e-007,-1,8.98862566600656e-008,1.48032000879539e-007,-1,0.0384406559169292,-0.190340772271156,-0.980965137481689,0.103186413645744,-0.295551955699921,-0.949737668037415,-6.24560314577138e-008,1.28047858538594e-007,-1,-6.24560314577138e-008,1.28047858538594e-007,-1,0.103186413645744,-0.295551955699921,-0.949737668037415,0.210947275161743,-0.381268203258514,-0.900075435638428,
  391. 4.79494381977474e-008,5.66699007720217e-008,-1,4.79494381977474e-008,5.66699007720217e-008,-1,0.210947275161743,-0.381268203258514,-0.900075435638428,0.431752324104309,-0.402561157941818,-0.807176828384399,3.68715300282929e-005,1.95998836716171e-005,-1,3.68715300282929e-005,1.95998836716171e-005,-1,0.431752324104309,-0.402561157941818,-0.807176828384399,0.612158596515656,-0.279326528310776,-0.739755749702454,6.56476113363169e-005,4.20441137976013e-005,-1,0.431775033473969,0.402608960866928,-0.807140946388245,0.61220782995224,0.279436886310577,-0.739673316478729,3.26690169458743e-005,-2.03250547201606e-005,-1,1.83379052032251e-005,-9.76813134911936e-006,-1,0.210957214236259,0.381283521652222,-0.900066733360291,0.431775033473969,0.402608960866928,-0.807140946388245,1.83379052032251e-005,-9.76813134911936e-006,-1,-4.64174235048631e-007,2.92087577236089e-007,-1,0.103187695145607,0.295558899641037,-0.949735462665558,0.210957214236259,0.381283521652222,-0.900066733360291,-4.64174235048631e-007,2.92087577236089e-007,-1,-3.43977831107622e-007,-8.95111469390031e-008,-1,0.0384394600987434,0.190345719456673,-0.980964303016663,0.103187695145607,0.295558899641037,-0.949735462665558,-3.43977831107622e-007,-8.95111469390031e-008,-1,-2.33642907687681e-007,-5.28984820391543e-008,-1,0.00637606624513865,0.079444520175457,-0.996818900108337,0.0384394600987434,0.190345719456673,-0.980964303016663,-2.33642907687681e-007,-5.28984820391543e-008,-1,-4.53406912015453e-008,2.85587475445936e-007,-1,-5.53486643184442e-008,3.12954000492027e-007,-1,0.00637606624513865,0.079444520175457,-0.996818900108337,-4.53406912015453e-008,2.85587475445936e-007,-1,5.38044923814596e-006,-8.12627405366584e-008,-1,-0.00636905338615179,0.0794457495212555,-0.996818780899048,-5.53486643184442e-008,3.12954000492027e-007,-1,5.38044923814596e-006,-8.12627405366584e-008,-1,-5.49475225852802e-006,-5.15630233621778e-007,-1,-0.0384510084986687,0.190341100096703,-0.980964779853821,-0.00636905338615179,0.0794457495212555,-0.996818780899048,-5.49475225852802e-006,-5.15630233621778e-007,-1,
  392. -1.45816648000618e-005,-1.71620365563285e-006,-1,-0.103200100362301,0.295545756816864,-0.949738144874573,-0.0384510084986687,0.190341100096703,-0.980964779853821,-1.45816648000618e-005,-1.71620365563285e-006,-1,-9.27936980588129e-006,1.24649068311555e-006,-1,-0.21095860004425,0.38126266002655,-0.900075197219849,-0.103200100362301,0.295545756816864,-0.949738144874573,-9.27936980588129e-006,1.24649068311555e-006,-1,-2.35369725487544e-006,2.09182417165721e-006,-1,-0.431755423545837,0.402563005685806,-0.807174265384674,-0.21095860004425,0.38126266002655,-0.900075197219849,-2.35369725487544e-006,2.09182417165721e-006,-1,-3.67982902389485e-005,-1.96286309801508e-005,-1,-6.55508774798363e-005,-4.16131370002404e-005,-1,-0.612178504467011,0.279354333877563,-0.73972874879837,-0.431755423545837,0.402563005685806,-0.807174265384674,-3.67982902389485e-005,-1.96286309801508e-005,-1,-1,5.64733636565506e-006,-2.69967422354966e-005,-0.739667773246765,-0.279473304748535,0.612197875976563,-0.807133674621582,-0.40264630317688,0.431753635406494,-1,2.67604218606721e-006,-3.17922640533652e-005,-1,2.67604218606721e-006,-3.17922640533652e-005,-0.807133674621582,-0.40264630317688,0.431753635406494,-0.90007084608078,-0.381291121244431,0.210925757884979,-1,-7.04155536368489e-006,-3.02671960525913e-005,-1,-7.04155536368489e-006,-3.02671960525913e-005,-0.90007084608078,-0.381291121244431,0.210925757884979,-0.949735879898071,-0.295557409524918,0.103186257183552,-1,-3.35286199515394e-006,-1.12190127765643e-005,-1,-3.35286199515394e-006,-1.12190127765643e-005,-0.949735879898071,-0.295557409524918,0.103186257183552,-0.98096376657486,-0.190349489450455,0.0384367555379868,-1,1.18636660317861e-006,-5.26526548583206e-007,-1,1.18636660317861e-006,-5.26526548583206e-007,-0.98096376657486,-0.190349489450455,0.0384367555379868,-0.996818780899048,-0.0794463977217674,0.00636530900374055,-1,-5.07894299062173e-007,-8.05715899332426e-006,-1,-5.07894299062173e-007,-8.05715899332426e-006,-0.996818780899048,-0.0794463977217674,0.00636530900374055,-1,-3.22804652341802e-007,5.53588392904203e-008,
  393. -1,3.07735888327443e-007,-1.65907908922236e-006,-1,3.07735888327443e-007,-1.65907908922236e-006,-1,-3.22804652341802e-007,5.53588392904203e-008,-0.996818661689758,-0.0794475451111794,-0.00637166714295745,-1,1.58014728413036e-007,-1.71901994860946e-008,-1,1.58014728413036e-007,-1.71901994860946e-008,-0.996818661689758,-0.0794475451111794,-0.00637166714295745,-0.980964601039886,-0.190343901515007,-0.0384401753544807,-1,-7.84373366258251e-009,-1.13745691976419e-007,-1,-7.84373366258251e-009,-1.13745691976419e-007,-0.980964601039886,-0.190343901515007,-0.0384401753544807,-0.949734807014465,-0.295560717582703,-0.103187434375286,-1,-1.29886899458143e-007,-2.33525687676206e-009,-1,-1.29886899458143e-007,-2.33525687676206e-009,-0.949734807014465,-0.295560717582703,-0.103187434375286,-0.900063216686249,-0.381291449069977,-0.210957989096642,-1,-2.33936901850029e-007,5.32355599602852e-008,-1,-2.33936901850029e-007,5.32355599602852e-008,-0.900063216686249,-0.381291449069977,-0.210957989096642,-0.807134509086609,-0.402620375156403,-0.431776344776154,-1,-1.99643454834586e-005,3.68441033060662e-005,-0.807134509086609,-0.402620375156403,-0.431776344776154,-0.739697277545929,-0.279507756233215,-0.612146496772766,-1,-4.17185365222394e-005,6.52206072118133e-005,-1,-1.99643454834586e-005,3.68441033060662e-005,-1,-3.22804652341802e-007,5.53588392904203e-008,-0.996818780899048,0.0794456675648689,-0.00637343060225248,-1,1.7995596124365e-007,-5.8033344796371e-010,-1,1.54610546587719e-007,1.26633494801354e-007,-0.996818721294403,0.0794461145997047,0.00637568673118949,-1,-3.22804652341802e-007,5.53588392904203e-008,-1,1.54610546587719e-007,1.26633494801354e-007,-1,-3.40371855145349e-007,4.06325762014603e-006,-0.980965495109558,0.190339326858521,0.0384416729211807,-0.996818721294403,0.0794461145997047,0.00637568673118949,-1,-3.40371855145349e-007,4.06325762014603e-006,-1,6.11106770520564e-007,3.42008831921703e-007,-0.949737191200256,0.295553177595139,0.10318761318922,-0.980965495109558,0.190339326858521,0.0384416729211807,-1,6.11106770520564e-007,3.42008831921703e-007,
  394. -1,-1.43195688906417e-006,5.37365758646047e-006,-0.900071144104004,0.381267070770264,0.210967630147934,-0.949737191200256,0.295553177595139,0.10318761318922,-1,-1.43195688906417e-006,5.37365758646047e-006,-1,-8.23891696200008e-006,2.71839162451215e-005,-0.807166039943695,0.402539074420929,0.43179315328598,-0.900071144104004,0.381267070770264,0.210967630147934,-1,-8.23891696200008e-006,2.71839162451215e-005,-1,-2.20270521822385e-007,4.77968096674886e-005,-0.739754617214203,0.279381960630417,0.612134695053101,-0.807166039943695,0.402539074420929,0.43179315328598,-1,-2.20270521822385e-007,4.77968096674886e-005,-1,1.18467150969082e-005,5.40210385224782e-005,-0.80717408657074,0.402560234069824,-0.431758373975754,-0.739734768867493,0.279351651668549,-0.612172484397888,-1,-4.16412003687583e-005,-6.51496520731598e-005,-1,-2.03376384888543e-005,-3.69771041732747e-005,-0.900073528289795,0.381271213293076,-0.210949689149857,-0.80717408657074,0.402560234069824,-0.431758373975754,-1,-2.03376384888543e-005,-3.69771041732747e-005,-1,1.08213292548953e-007,5.44025056115061e-008,-0.949736952781677,0.295553892850876,-0.103188306093216,-0.900073528289795,0.381271213293076,-0.210949689149857,-1,1.08213292548953e-007,5.44025056115061e-008,-1,2.18166519516672e-007,3.02858239820125e-007,-0.9809650182724,0.190341994166374,-0.0384399816393852,-0.949736952781677,0.295553892850876,-0.103188306093216,-1,2.18166519516672e-007,3.02858239820125e-007,-1,8.57487449934524e-008,2.28201074037315e-007,-0.996818780899048,0.0794456675648689,-0.00637343060225248,-0.9809650182724,0.190341994166374,-0.0384399816393852,-1,8.57487449934524e-008,2.28201074037315e-007,-1,1.7995596124365e-007,-5.8033344796371e-010,-0.0464147888123989,-0.997995316982269,0.0430238358676434,-0.0464147813618183,-0.997995316982269,0.0430238284170628,-0.0464147813618183,-0.997995316982269,0.0430238284170628,0.0731103643774986,-0.99732381105423,6.00803787165205e-006,0.162230312824249,-0.986752927303314,4.3924765122938e-006,0.295724153518677,-0.955273389816284,-4.31293028668733e-006,0.312531113624573,-0.949907600879669,-2.65108701569261e-005,
  395. 0.252116113901138,-0.967696964740753,-2.64667942246888e-005,0.252116113901138,-0.967696964740753,-2.64667942246888e-005,0.312531113624573,-0.949907600879669,-2.65108701569261e-005,0.251260697841644,-0.9679194688797,-6.3561114075128e-005,-0.127808228135109,-0.991798877716064,-4.13852285419125e-005,0.242245674133301,-0.97021496295929,-3.73959592252504e-005,0.242245674133301,-0.97021496295929,-3.73959592252504e-005,-0.127808228135109,-0.991798877716064,-4.13852285419125e-005,-0.40962740778923,-0.912252902984619,-3.8252915146586e-006,-0.146710455417633,-0.98917955160141,1.72354557435028e-005,-0.25299084186554,-0.967468738555908,1.86624965863302e-005,-0.25299084186554,-0.967468738555908,1.86624965863302e-005,-0.146710455417633,-0.98917955160141,1.72354557435028e-005,-0.251178503036499,-0.967940807342529,3.68727014574688e-005,-0.3124940097332,-0.949919819831848,1.40498759719776e-005,-0.24486967921257,-0.969556033611298,1.47185055539012e-005,-0.24486967921257,-0.969556033611298,1.47185055539012e-005,-0.3124940097332,-0.949919819831848,1.40498759719776e-005,-0.295774966478348,-0.955257713794708,2.0341875028862e-007,-0.128487750887871,-0.991711139678955,1.54327028667467e-006,-0.0221587065607309,-0.999754548072815,-6.46552464900196e-008,-0.128487750887871,-0.991711139678955,1.54327028667467e-006,0.0156140113249421,-0.999878108501434,-8.50764899951173e-006,-0.0221587065607309,-0.999754548072815,-6.46552464900196e-008,-0.128509297966957,0.991708338260651,-2.1697207557736e-005,0.0155918095260859,0.999878466129303,-8.52471112011699e-006,-0.022196838632226,0.999753594398499,-2.22477774514118e-005,-0.244889453053474,0.969550967216492,-4.02969199058134e-005,-0.31254318356514,0.949903607368469,-3.75611525669228e-005,-0.295780718326569,0.95525586605072,-2.35587831411976e-005,-0.128509297966957,0.991708338260651,-2.1697207557736e-005,-0.022196838632226,0.999753594398499,-2.22477774514118e-005,-0.252921283245087,0.967486798763275,-7.48293969081715e-005,-0.146728649735451,0.98917680978775,-7.99919944256544e-005,-0.25123730301857,0.967925608158112,-6.35631586192176e-005,
  396. -0.31254318356514,0.949903607368469,-3.75611525669228e-005,-0.244889453053474,0.969550967216492,-4.02969199058134e-005,0.242175668478012,0.970232367515564,-7.52673731767572e-005,-0.127615436911583,0.991823673248291,-8.50862270453945e-005,-0.409348845481873,0.912377893924713,-8.39587009977549e-005,-0.146728649735451,0.98917680978775,-7.99919944256544e-005,-0.252921283245087,0.967486798763275,-7.48293969081715e-005,0.252142190933228,0.967690229415894,-3.99100463255309e-005,0.312448978424072,0.949934542179108,-3.75671261281241e-005,0.251113682985306,0.967957615852356,-6.35675896774046e-005,-0.127615436911583,0.991823673248291,-8.50862270453945e-005,0.242175668478012,0.970232367515564,-7.52673731767572e-005,-0.0202721785753965,0.999794483184814,-2.39164692175109e-005,0.100639194250107,0.994922935962677,-2.29361667152261e-005,0.295770823955536,0.955258965492249,-2.35605275520356e-005,0.312448978424072,0.949934542179108,-3.75671261281241e-005,0.252142190933228,0.967690229415894,-3.99100463255309e-005,-0.105799533426762,0.994247078895569,-0.0167155768722296,-0.105799533426762,0.994247078895569,-0.016715582460165,-0.105799525976181,0.994247078895569,-0.0167155843228102,-1.74212456373699e-036,2.46799523973365e-015,-1,-2.22105133972221e-036,2.46799502797541e-015,-1,-2.3672778434094e-036,2.46799502797541e-015,-1,0.000123839010484517,4.8374528205386e-007,-1,0.000123839010484517,4.8374528205386e-007,-1,0.000123839010484517,4.8374528205386e-007,-1,0.000247616699198261,6.07783192663192e-008,1,0.000247616699198261,6.07783192663192e-008,1,0.000247616699198261,6.07783192663192e-008,1,-0.0215896274894476,0.997465372085571,-0.0678005144000053,-0.0215896256268024,0.997465372085571,-0.0678005144000053,-0.0215896256268024,0.997465372085571,-0.0678005144000053,-2.1968082364765e-005,0.999753594398499,0.0221957676112652,-2.13600978895556e-005,0.991705477237701,0.128530964255333,-2.2946984245209e-005,0.955245018005371,0.295815736055374,-4.21116455981974e-005,0.949916362762451,0.312504202127457,-4.49396502517629e-005,0.969548285007477,0.244900122284889,
  397. -4.49396502517629e-005,0.969548285007477,0.244900122284889,-4.21116455981974e-005,0.949916362762451,0.312504202127457,-7.69455364206806e-005,0.967938423156738,0.251187354326248,-9.29542002268136e-005,0.991836607456207,-0.127515196800232,-8.29786440590397e-005,0.970223665237427,0.242210701107979,-8.29786440590397e-005,0.970223665237427,0.242210701107979,-9.29542002268136e-005,0.991836607456207,-0.127515196800232,-7.9079887655098e-005,0.912447988986969,-0.409192711114883,-7.12746696081012e-005,0.989178359508514,-0.146717920899391,-6.60337173030712e-005,0.967514097690582,-0.252817124128342,-6.60337173030712e-005,0.967514097690582,-0.252817124128342,-7.12746696081012e-005,0.989178359508514,-0.146717920899391,-5.06414980918635e-005,0.967964231967926,-0.251088201999664,-3.28285823343322e-005,0.949935555458069,-0.312445938587189,-3.50931877619587e-005,0.967690110206604,-0.252142399549484,-3.50931877619587e-005,0.967690110206604,-0.252142399549484,-3.28285823343322e-005,0.949935555458069,-0.312445938587189,-2.35337629419519e-005,0.95525461435318,-0.295784771442413,-2.29570323426742e-005,0.99492609500885,-0.100608199834824,-2.3940936443978e-005,0.999793350696564,0.0203281324356794,-1.24460011647898e-005,0.991444766521454,0.130526900291443,-2.3940936443978e-005,0.999793350696564,0.0203281324356794,-2.29570323426742e-005,0.99492609500885,-0.100608199834824,2.0084684365429e-005,-0.986102044582367,-0.166140884160995,5.57187058802811e-006,-0.997698247432709,-0.0678101629018784,1.99919686565408e-005,-0.99687671661377,-0.0789742097258568,4.4878226617584e-005,-0.967694640159607,-0.252125233411789,4.24633544753306e-005,-0.949926257133484,-0.312474101781845,2.35342813539319e-005,-0.955257296562195,-0.295776188373566,2.0084684365429e-005,-0.986102044582367,-0.166140884160995,1.99919686565408e-005,-0.99687671661377,-0.0789742097258568,8.34494785522111e-005,-0.970230340957642,-0.242184087634087,9.34964264160953e-005,-0.991834580898285,0.127530589699745,7.69450343796052e-005,-0.967942416667938,-0.251172184944153,4.24633544753306e-005,-0.949926257133484,-0.312474101781845,
  398. 4.4878226617584e-005,-0.967694640159607,-0.252125233411789,8.34494785522111e-005,-0.970230340957642,-0.242184087634087,6.65022744215094e-005,-0.967508137226105,0.252840012311935,7.18155934009701e-005,-0.989174067974091,0.146746963262558,8.00752677605487e-005,-0.91244375705719,0.409202247858047,9.34964264160953e-005,-0.991834580898285,0.127530589699745,3.50624213751871e-005,-0.969549596309662,0.244894772768021,3.24778011417948e-005,-0.949927866458893,0.312469154596329,5.06401884194929e-005,-0.967954576015472,0.251125395298004,7.18155934009701e-005,-0.989174067974091,0.146746963262558,6.65022744215094e-005,-0.967508137226105,0.252840012311935,2.19678531721001e-005,-0.999753594398499,0.022199060767889,2.13604762393516e-005,-0.991707146167755,0.128518328070641,2.29479519475717e-005,-0.95525187253952,0.295793533325195,3.24778011417948e-005,-0.949927866458893,0.312469154596329,3.50624213751871e-005,-0.969549596309662,0.244894772768021,8.50035212351941e-006,-0.999878644943237,-0.0155802769586444,2.13604762393516e-005,-0.991707146167755,0.128518328070641,2.19678531721001e-005,-0.999753594398499,0.022199060767889,-1,-5.14273324370151e-007,-1.63473160878471e-018,-1,-5.14273324370151e-007,-1.6212767923385e-018,-1,-5.14273267526733e-007,-1.6055294448246e-018,0.543952822685242,-0.59782201051712,-0.588832795619965,0.395110875368118,-0.829330205917358,-0.395093739032745,0.506735980510712,-0.596105933189392,-0.622797191143036,0.67591917514801,-0.148912385106087,-0.721774339675903,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.722312033176422,-0.148914158344269,-0.675344288349152,0.722312033176422,-0.148914158344269,-0.675344288349152,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.711125373840332,-0.00603336142376065,-0.703039348125458,0.506735980510712,-0.596105933189392,-0.622797191143036,0.67591917514801,-0.148912385106087,-0.721774339675903,0.722312033176422,-0.148914158344269,-0.675344288349152,0.543952822685242,-0.59782201051712,-0.588832795619965,0.707426309585571,-0.000330283161019906,-0.706787049770355,
  399. 0.707419693470001,-0.000637153163552284,-0.706793427467346,0.707517206668854,-0.000426200072979555,-0.706696093082428,0.675733149051666,0.148915812373161,-0.721947908401489,0.70180881023407,0.00629555433988571,-0.712337493896484,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.707517206668854,-0.000426200072979555,-0.706696093082428,0.711125373840332,-0.00603336142376065,-0.703039348125458,0.70180881023407,0.00629555433988571,-0.712337493896484,0.707426309585571,-0.000330283161019906,-0.706787049770355,0.707108736038208,8.13893257145537e-006,-0.707104861736298,0.707103550434113,1.38288778543938e-005,-0.707110047340393,0.707106947898865,6.24241965851979e-006,-0.707106590270996,0.710815846920013,0.0059691951610148,-0.703352808952332,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.701932847499847,-0.00626711687073112,-0.712215542793274,0.707106947898865,6.24241965851979e-006,-0.707106590270996,0.710815846920013,0.0059691951610148,-0.703352808952332,0.701932847499847,-0.00626711687073112,-0.712215542793274,0.707108736038208,8.13893257145537e-006,-0.707104861736298,0.543945133686066,0.597821414470673,-0.588840425014496,0.395095527172089,0.82933121919632,-0.395106703042984,0.506721138954163,0.596104085445404,-0.622811198234558,0.506721138954163,0.596104085445404,-0.622811198234558,0.675733149051666,0.148915812373161,-0.721947908401489,0.722155511379242,0.148914575576782,-0.675511538982391,0.543945133686066,0.597821414470673,-0.588840425014496,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.710815846920013,0.0059691951610148,-0.703352808952332,0.722155511379242,0.148914575576782,-0.675511538982391,0.722155511379242,0.148914575576782,-0.675511538982391,0.675733149051666,0.148915812373161,-0.721947908401489,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.67591917514801,-0.148912385106087,-0.721774339675903,0.701932847499847,-0.00626711687073112,-0.712215542793274,0.707107603549957,1.97888439856797e-007,-0.707105994224548,
  400. 0.70180881023407,0.00629555433988571,-0.712337493896484,0.711125373840332,-0.00603336142376065,-0.703039348125458,-0.0202721785753965,0.999794483184814,-2.39164692175109e-005,-0.130451709032059,0.991454660892487,-1.24752932606498e-005,0.100639194250107,0.994922935962677,-2.29361667152261e-005,-8.50065953272861e-006,0.999878525733948,-0.0155878877267241,-2.13600978895556e-005,0.991705477237701,0.128530964255333,-2.1968082364765e-005,0.999753594398499,0.0221957676112652,0.0560419708490372,-0.998428523540497,1.67104935826501e-005,0.162230312824249,-0.986752927303314,4.3924765122938e-006,0.0731103643774986,-0.99732381105423,6.00803787165205e-006,0.0678080543875694,0.997465312480927,0.0215684361755848,0.06780806183815,0.997465312480927,0.0215684436261654,0.06780806183815,0.997465312480927,0.0215684399008751
  401. }
  402. TangentsW: *392 {
  403. 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
  404. }
  405. }
  406. LayerElementUV: 0 {
  407. Version: 101
  408. Name: "map1"
  409. MappingInformationType: "ByPolygonVertex"
  410. ReferenceInformationType: "IndexToDirect"
  411. UV: *412 {
  412. a: 0.999999403953552,1.60481059551239,0.980277836322784,1.60481071472168,0.932693302631378,1.3769816160202,0.999999403953552,1.3769816160202,0.875447392463684,1.26250064373016,0.999999403953552,1.26250064373016,0.799369394779205,1.14773893356323,0.999999403953552,1.14773881435394,0.708262205123901,1.03275179862976,0.999999403953552,1.03275191783905,0.606702923774719,0.917625248432159,0.999999403953552,0.917625188827515,0.499780982732773,0.802421808242798,0.999999403953552,0.802422404289246,0.606699526309967,0.687222123146057,0.999999403953552,0.687222123146057,0.708258867263794,0.572092950344086,0.999999403953552,0.572092890739441,0.799365878105164,0.457105398178101,0.999999403953552,0.457105427980423,0.875443935394287,0.342337101697922,0.999999403953552,0.342337071895599,0.932689785957336,0.227852284908295,0.999999403953552,0.227852299809456,0.98027092218399,3.26931476593018e-005,0.999999403953552,3.26931476593018e-005,0.0668686553835869,1.37698173522949,0.019287534058094,1.60481035709381,-0.000433812703704461,1.60481035709381,-0.000433812703704461,1.37698173522949,0.12411455065012,1.26250016689301,-0.000433812703704461,1.26250004768372,0.200195997953415,1.14773893356323,-0.000433812703704461,1.14773893356323,0.291303038597107,1.03275167942047,-0.000433812703704461,1.03275156021118,0.392858982086182,0.917625248432159,-0.000433812703704461,0.917625248432159,-0.000433812703704461,0.802422344684601,0.392864108085632,0.687222123146057,-0.000433812703704461,0.687222123146057,0.291306793689728,0.57209300994873,-0.000433812703704461,0.57209300994873,0.200199857354164,0.457105398178101,-0.000433812703704461,0.457105368375778,0.124118395149708,0.342337161302567,-0.000433812703704461,0.342337191104889,0.0668725222349167,0.227852180600166,-0.000433812703704461,0.227852180600166,-0.000433812703704461,3.26931476593018e-005,0.0192949511110783,3.26931476593018e-005,0.999999403953552,1.60481059551239,0.980280041694641,1.60481059551239,0.932697594165802,1.3769816160202,0.999999403953552,1.3769816160202,0.875451266765594,
  413. 1.26250064373016,0.999999403953552,1.26250064373016,0.799369812011719,1.14773893356323,0.999999403953552,1.14773881435394,0.708263218402863,1.03275179862976,0.999999403953552,1.03275191783905,0.606707274913788,0.917625188827515,0.999999403953552,0.917625188827515,0.499788284301758,0.802423477172852,0.999999403953552,0.802422404289246,0.606709361076355,0.687222123146057,0.999999403953552,0.687222123146057,0.70826780796051,0.572092950344086,0.999999403953552,0.572092890739441,0.799374282360077,0.457105427980423,0.999999403953552,0.457105427980423,0.875453412532806,0.342337071895599,0.999999403953552,0.342337071895599,0.932699739933014,0.227852284908295,0.999999403953552,0.227852299809456,0.980282664299011,3.26931476593018e-005,0.999999403953552,3.26931476593018e-005,0.392868250608444,0.917625188827515,-0.000433812703704461,0.917625248432159,-0.000433812703704461,0.802422344684601,0.392866313457489,0.687222123146057,-0.000433812703704461,0.687222123146057,0.291307419538498,0.57209300994873,-0.000433812703704461,0.57209300994873,0.20020118355751,0.457105398178101,-0.000433812703704461,0.457105368375778,0.124122306704521,0.342337161302567,-0.000433812703704461,0.342337191104889,0.0668759867548943,0.227852180600166,-0.000433812703704461,0.227852180600166,0.0192931387573481,3.26931476593018e-005,-0.000433812703704461,3.26931476593018e-005,0.0668793171644211,1.3769816160202,0.0192940831184387,1.60481035709381,-0.000433812703704461,1.60481035709381,-0.000433812703704461,1.37698173522949,0.124124869704247,1.26250016689301,-0.000433812703704461,1.26250004768372,0.200205147266388,1.14773893356323,-0.000433812703704461,1.14773893356323,0.291312336921692,1.03275167942047,-0.000433812703704461,1.03275156021118,1.693603515625,-0.098988339304924,1.573566198349,-0.119449205696583,1.6991081237793,-0.141525462269783,1.60111939907074,-0.0761062428355217,1.51815474033356,-0.0392469726502895,1.44887006282806,0.00974329002201557,1.39921998977661,-0.0182553455233574,1.3967399597168,0.0684090182185173,1.36437773704529,0.133805483579636,1.30246424674988,
  414. 0.123812712728977,1.35340666770935,0.202654108405113,1.36437678337097,0.27150297164917,1.30246329307556,0.281495124101639,1.39673805236816,0.336895346641541,1.4488673210144,0.395561695098877,1.39921641349792,0.423559069633484,1.51815140247345,0.444553047418594,1.6011153459549,0.481418013572693,1.57356119155884,0.521872937679291,1.79096579551697,0.512055814266205,0.126266300678253,-0.720321714878082,-0.0635844022035599,-0.750960409641266,0.153820142149925,-0.760782182216644,0.328165233135223,-0.662469446659088,0.278514921665192,-0.634470880031586,0.209230571985245,-0.683459460735321,0.42492014169693,-0.520400702953339,0.363006591796875,-0.510408222675323,0.330644845962524,-0.575805008411407,0.424919724464417,-0.362718194723129,0.363006591796875,-0.372711002826691,0.37397712469101,-0.441557228565216,0.328165650367737,-0.220652759075165,0.278514921665192,-0.248650446534157,0.330644845962524,-0.307316362857819,0.153820529580116,-0.119458436965942,0.126266300678253,-0.162797570228577,0.209230571985245,-0.199659466743469,-0.00859923660755157,-0.0809093713760376,-0.0185023248195648,-0.113371431827545,0,0,1,0,0.5,1,0,0,1,0,0.5,1,0,0,1,0,0.5,1,-0.0635844022035599,0.512043356895447,0.153820142149925,0.521864295005798,-0.0564292073249817,0.552719295024872,0.126266300678253,0.481404811143875,0.209230571985245,0.444542646408081,0.278514921665192,0.395551830530167,0.328165650367737,0.423549622297287,0.330644428730011,0.336885750293732,0.363006234169006,0.271491289138794,0.424919724464417,0.281483948230743,0.37397712469101,0.202640414237976,0.363006234169006,0.133793950080872,0.424919724464417,0.123801738023758,0.330644428730011,0.0683972835540771,0.278514921665192,0.00973117351531982,0.328165233135223,-0.0182669758796692,0.209230571985245,-0.0392574667930603,0.126266300678253,-0.0761195421218872,-0.0184962302446365,-0.125559449195862,1.60111999511719,-0.162790820002556,1.39922106266022,-0.22064745426178,1.4488719701767,-0.248644828796387,1.51815593242645,-0.19965372979641,1.30246794223785,-0.362713992595673,1.36438131332397,-0.37270599603653,
  415. 1.39674258232117,-0.307311505079269,1.30246901512146,-0.520396173000336,1.36438226699829,-0.510403275489807,1.35341131687164,-0.441557168960571,1.3992246389389,-0.662464201450348,1.44887471199036,-0.63446569442749,1.3967444896698,-0.575799763202667,1.57357025146484,-0.760773539543152,1.60112392902374,-0.720315098762512,1.51815938949585,-0.683453738689423,1.79097473621368,-0.750954806804657,0,0,1,0,0.5,1,1.26463115215302,0.123812288045883,0.863685607910156,-0.119452849030495,1.26463794708252,-0.362714439630508,1.10672187805176,-0.520686030387878,0.762951850891113,-0.6939657330513,0.864228904247284,-0.893857002258301,0.965162575244904,-0.693794131278992,0.462749809026718,-0.362717628479004,0.620857954025269,-0.520811915397644,0.961992084980011,0.442973077297211,0.863686800003052,0.623706698417664,0.765384018421173,0.442969769239426,0.620428264141083,0.281485587358475,1.10695040225983,0.281493574380875,0.462749630212784,0.123802296817303,-0.056427538394928,-0.791638255119324
  416. }
  417. UVIndex: *392 {
  418. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,9,8,10,11,11,10,12,13,13,12,14,15,15,14,16,17,17,16,18,19,19,18,20,21,21,20,22,23,23,22,24,25,26,27,28,29,30,26,29,31,32,30,31,33,34,32,33,35,36,34,35,37,12,36,37,38,39,12,38,40,41,39,40,42,43,41,42,44,45,43,44,46,47,45,46,48,49,50,47,48,51,52,53,54,54,53,55,56,56,55,57,58,58,57,59,60,60,59,61,62,62,61,63,64,64,63,65,66,66,65,67,68,68,67,69,70,70,69,71,72,72,71,73,74,73,75,76,74,63,77,78,79,80,63,79,81,82,80,81,83,84,82,83,85,86,84,85,87,88,86,87,89,90,88,89,91,92,93,94,95,96,92,95,97,98,96,97,99,100,98,99,101,77,100,101,78,102,103,104,103,105,106,107,108,108,107,109,110,111,111,110,112,113,114,114,113,115,116,117,117,116,118,119,120,119,121,120,122,123,124,125,126,127,122,124,128,129,130,126,125,131,132,133,129,128,134,135,136,132,131,137,138,139,135,134,140,141,137,142,143,144,145,146,147,148,149,150,151,152,153,152,154,155,156,157,157,156,158,159,160,160,159,161,162,163,163,162,164,165,166,166,165,167,168,137,169,137,168,170,104,103,171,172,173,170,103,174,175,176,172,171,174,177,178,179,175,180,181,182,178,177,183,184,185,181,180,186,184,183,187,188,189,171,103,108,190,191,192,192,191,193,108,190,192,171,194,195,196,197,198,191,196,193,198,194,199,200,201,202,191,203,201,202,203,199,166,137,134,134,197,204,166,191,202,204,204,197,191,191,190,203,191,198,193,137,141,138,151,154,152,102,105,103,124,123,205
  419. }
  420. }
  421. LayerElementSmoothing: 0 {
  422. Version: 102
  423. Name: ""
  424. MappingInformationType: "ByEdge"
  425. ReferenceInformationType: "Direct"
  426. Smoothing: *196 {
  427. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0
  428. }
  429. }
  430. LayerElementMaterial: 0 {
  431. Version: 101
  432. Name: ""
  433. MappingInformationType: "AllSame"
  434. ReferenceInformationType: "IndexToDirect"
  435. Materials: *1 {
  436. a: 0
  437. }
  438. }
  439. Layer: 0 {
  440. Version: 100
  441. LayerElement: {
  442. Type: "LayerElementNormal"
  443. TypedIndex: 0
  444. }
  445. LayerElement: {
  446. Type: "LayerElementBinormal"
  447. TypedIndex: 0
  448. }
  449. LayerElement: {
  450. Type: "LayerElementTangent"
  451. TypedIndex: 0
  452. }
  453. LayerElement: {
  454. Type: "LayerElementMaterial"
  455. TypedIndex: 0
  456. }
  457. LayerElement: {
  458. Type: "LayerElementSmoothing"
  459. TypedIndex: 0
  460. }
  461. LayerElement: {
  462. Type: "LayerElementUV"
  463. TypedIndex: 0
  464. }
  465. }
  466. }
  467. Geometry: 2463645299504, "Geometry::", "Mesh" {
  468. Vertices: *294 {
  469. a: 192.1123046875,3.73035275087232e-014,-199.9990234375,173.087890625,83.3554000854492,-200.0009765625,150.19921875,119.781463623047,-199.9990234375,119.78125,150.201232910156,-200.0009765625,83.3544921875,173.089218139648,-200.0009765625,42.748046875,187.297882080078,-200.0009765625,-0.0029296875,192.114562988281,-199.9990234375,-42.7509765625,187.297882080078,-200.0009765625,-83.35546875,173.089218139648,-199.9990234375,-119.783203125,150.201232910156,-199.9990234375,-150.2021484375,119.781463623047,-199.9990234375,-173.0908203125,83.3554000854492,-200.0009765625,-192.11328125,8.10751225799322e-006,-200.0009765625,192.1123046875,-4.44089142087427e-014,200.0009765625,173.087890625,83.3554000854492,200.0009765625,150.19921875,119.781463623047,200.0009765625,119.78125,150.201232910156,200.0009765625,83.3544921875,173.089218139648,200.0009765625,42.748046875,187.297882080078,200.0009765625,-0.0029296875,192.114562988281,200.0009765625,-42.7509765625,187.297882080078,200.0009765625,-83.35546875,173.089218139648,200.0009765625,-119.783203125,150.201232910156,200.0009765625,-150.2021484375,119.781463623047,200.0009765625,-173.0908203125,83.3554000854492,200.0009765625,-192.11328125,8.58819294080604e-006,200.0009765625,192.11328125,3.814697265625e-006,192.115234375,173.087890625,83.3553924560547,173.0908203125,150.19921875,119.781463623047,150.2021484375,119.78125,150.201217651367,119.783203125,83.3544921875,173.089202880859,83.35546875,42.748046875,187.297866821289,42.7509765625,-0.0009765625,192.114547729492,0,-42.7509765625,187.297866821289,-42.748046875,-83.35546875,173.089202880859,-83.3544921875,-119.783203125,150.201217651367,-119.78125,-150.2021484375,119.781471252441,-150.19921875,-173.0908203125,83.3553924560547,-173.087890625,-192.115234375,4.05439732276136e-006,-192.11328125,192.1123046875,1.78463675586625e-014,-192.115234375,173.087890625,83.3553924560547,-173.0888671875,150.19921875,119.781463623047,-150.201171875,119.78125,150.201217651367,-119.78125,83.3544921875,173.089202880859,-83.3544921875,
  470. 42.748046875,187.297866821289,-42.75,-42.7509765625,187.297866821289,42.75,-83.357421875,173.089202880859,83.35546875,-119.7841796875,150.201202392578,119.783203125,-150.2021484375,119.781463623047,150.201171875,-173.0908203125,83.3553924560547,173.0888671875,-192.115234375,8.10879373602802e-006,192.11328125,-199.9990234375,0,-192.11328125,-199.9990234375,83.3553771972656,-173.0888671875,-199.9990234375,119.781463623047,-150.201171875,-199.9990234375,150.201187133789,-119.78125,-199.9990234375,173.089202880859,-83.3544921875,-199.998046875,187.2978515625,-42.75,-199.9990234375,192.114562988281,0.0009765625,-200,187.2978515625,42.75,-199.9990234375,173.089202880859,83.35546875,-199.9990234375,150.201187133789,119.783203125,-199.9990234375,119.781463623047,150.201171875,-199.9990234375,83.3553771972656,173.0888671875,-199.9990234375,7.62939453125e-006,192.115234375,200.0009765625,0,-192.11328125,200.0009765625,83.3553848266602,-173.0888671875,200.0009765625,119.781463623047,-150.201171875,200.0009765625,150.201202392578,-119.78125,200.0009765625,173.089218139648,-83.3544921875,200.001953125,187.2978515625,-42.75,200.0009765625,192.114562988281,0.0009765625,200,187.2978515625,42.75,200.0009765625,173.089218139648,83.35546875,200.0009765625,150.201202392578,119.783203125,200.0009765625,119.781463623047,150.201171875,200.0009765625,83.3553848266602,173.0888671875,200.0009765625,7.62939453125e-006,192.115234375,200,88.009765625,-200,129.484375,162.016738891602,-200,46.830078125,200.208831787109,-200,-46.8330078125,200.208801269531,-200,-129.4853515625,162.016983032227,-200,-200,88.0098876953125,-200,200,88.0101776123047,200,129.4833984375,162.016860961914,200,46.830078125,200.208831787109,200,-46.8330078125,200.208740234375,200,-129.4853515625,162.017181396484,200,-200,88.0106811523438,200,-200,162.016952514648,-129.4833984375,-200,200.208786010742,-46.83203125,-200,200.208755493164,46.83203125,-200,162.01692199707,129.4853515625,200,162.016937255859,-129.484375,200,200.208755493164,-46.83203125,200,200.208801269531,46.83203125,
  471. 200,162.016830444336,129.4853515625,-0.0029296875,204.850540161133,0.0009765625
  472. }
  473. PolygonVertexIndex: *392 {
  474. a: 0,39,40,-2,1,40,41,-3,2,41,42,-4,3,42,43,-5,4,43,44,-6,5,44,32,-7,6,32,33,-8,7,33,34,-9,8,34,35,-10,9,35,36,-11,10,36,37,-12,11,37,38,-13,27,26,13,-15,28,27,14,-16,29,28,15,-17,30,29,16,-18,31,30,17,-19,32,31,18,-20,45,32,19,-21,46,45,20,-22,47,46,21,-23,48,47,22,-24,49,48,23,-25,25,50,49,-25,51,38,37,-53,52,37,36,-54,53,36,35,-55,54,35,34,-56,55,34,33,-57,56,33,32,-58,57,32,45,-59,58,45,46,-60,59,46,47,-61,60,47,48,-62,61,48,49,-63,49,50,63,-63,32,44,69,-71,31,32,70,-72,30,31,71,-73,29,30,72,-74,28,29,73,-75,27,28,74,-76,26,27,75,-77,40,39,64,-66,41,40,65,-67,42,41,66,-68,43,42,67,-69,44,43,68,-70,0,77,-65,77,1,2,3,-79,78,3,4,5,-80,79,5,6,7,-81,80,7,8,9,-82,81,9,10,11,-83,11,12,-83,14,13,-84,84,16,15,14,-84,85,18,17,16,-85,86,20,19,18,-86,87,22,21,20,-87,88,24,23,22,-88,63,25,-89,39,0,-65,13,26,-77,50,25,-64,51,82,-13,82,52,53,54,-90,89,54,55,56,-91,90,56,57,58,-92,91,58,59,60,-93,92,60,61,62,-89,63,88,-63,65,64,-78,93,67,66,65,-78,94,69,68,67,-94,94,95,71,70,-70,96,73,72,71,-96,83,75,74,73,-97,76,75,-84,38,51,-13,93,77,-79,79,97,-95,94,97,-96,78,79,94,-94,84,83,-97,86,85,-98,96,95,85,-85,81,82,-90,90,97,-81,89,90,80,-82,92,88,-88,87,86,91,-93,97,90,-92,91,86,-98,97,79,-81,97,85,-96,88,25,-25,51,52,-83,0,1,-78,83,13,-77
  475. }
  476. Edges: *196 {
  477. a: 3,7,11,15,19,23,27,31,35,39,43,47,50,54,58,62,66,70,74,78,82,86,90,95,0,2,6,10,14,18,22,26,30,34,38,42,46,49,51,55,59,63,67,71,48,52,56,60,64,68,29,33,37,41,45,75,79,83,87,91,92,25,1,5,9,13,17,21,72,76,80,84,88,93,99,103,107,111,115,119,123,127,131,135,139,142,174,178,182,186,190,146,150,154,158,162,166,170,96,98,102,106,110,114,118,122,126,130,134,138,141,147,151,155,159,163,167,171,173,175,179,183,187,145,194,195,193,198,199,203,204,208,209,213,214,218,219,221,259,225,324,230,226,235,231,240,236,245,241,250,246,253,251,265,266,269,270,274,275,279,280,284,285,289,290,296,301,297,306,302,308,307,316,312,321,317,333,330,335,348,343,355,356,353,346,365,363,332,354,370,331,345,252,263,192,224
  478. }
  479. GeometryVersion: 124
  480. LayerElementNormal: 0 {
  481. Version: 102
  482. Name: ""
  483. MappingInformationType: "ByPolygonVertex"
  484. ReferenceInformationType: "Direct"
  485. Normals: *1176 {
  486. a: -0.974930167198181,-0.222510814666748,-4.10318889976224e-008,-0.672898590564728,-0.307168871164322,0.672944843769073,-0.590313494205475,-0.550447523593903,0.590370655059814,-0.920475363731384,-0.39080074429512,-9.86555903637054e-008,-0.920475363731384,-0.39080074429512,-9.86555903637054e-008,-0.590313494205475,-0.550447523593903,0.590370655059814,-0.435737937688828,-0.787564873695374,0.43574532866478,-0.763404548168182,-0.645920693874359,-1.65685392516934e-007,-0.763404548168182,-0.645920693874359,-1.65685392516934e-007,-0.435737937688828,-0.787564873695374,0.43574532866478,-0.313049376010895,-0.896658360958099,0.313055634498596,-0.60531622171402,-0.795985102653503,-2.79463165497873e-007,-0.60531622171402,-0.795985102653503,-2.79463165497873e-007,-0.313049376010895,-0.896658360958099,0.313055634498596,-0.194184720516205,-0.961552441120148,0.194188594818115,-0.417196750640869,-0.90881609916687,-1.45548440855237e-007,-0.417196750640869,-0.90881609916687,-1.45548440855237e-007,-0.194184720516205,-0.961552441120148,0.194188594818115,-0.0797009095549583,-0.993627548217773,0.0796998664736748,-0.207989722490311,-0.978130996227264,2.53324174082081e-007,-0.207989722490311,-0.978130996227264,2.53324174082081e-007,-0.0797009095549583,-0.993627548217773,0.0796998664736748,3.22804623920092e-007,-1,-3.12954000492027e-007,1.00748411568929e-006,-1,-9.59183950044462e-008,1.00748411568929e-006,-1,-9.59183950044462e-008,3.22804623920092e-007,-1,-3.12954000492027e-007,0.0797009989619255,-0.993627309799194,0.0797021239995956,0.207995176315308,-0.978129863739014,-3.61907837032049e-007,0.207995176315308,-0.978129863739014,-3.61907837032049e-007,0.0797009989619255,-0.993627309799194,0.0797021239995956,0.194191411137581,-0.961552023887634,0.194183677434921,0.417200863361359,-0.908814311027527,-9.70329736560416e-008,0.417200863361359,-0.908814311027527,-9.70329736560416e-008,0.194191411137581,-0.961552023887634,0.194183677434921,0.31305205821991,-0.896660447120667,0.313046962022781,0.605307281017303,-0.795992016792297,-1.3973014745261e-007,
  487. 0.605307281017303,-0.795992016792297,-1.3973014745261e-007,0.31305205821991,-0.896660447120667,0.313046962022781,0.435743719339371,-0.787567913532257,0.43573409318924,0.763399660587311,-0.645926415920258,0,0.763399660587311,-0.645926415920258,0,0.435743719339371,-0.787567913532257,0.43573409318924,0.590368747711182,-0.55045348405838,0.590309739112854,0.920480072498322,-0.390789568424225,2.6280080419383e-005,0.920480072498322,-0.390789568424225,2.6280080419383e-005,0.590368747711182,-0.55045348405838,0.590309739112854,0.672972142696381,-0.30715999007225,0.672875463962555,0.974931359291077,-0.222505673766136,5.46468472748529e-005,-0.590324521064758,-0.550448179244995,-0.590358912944794,-0.672876715660095,-0.307170540094376,-0.672966063022614,-0.974928200244904,-0.222519353032112,-2.73272144113434e-005,-0.920473575592041,-0.39080485701561,-1.30621237985906e-005,-0.435742944478989,-0.787558257579803,-0.435752272605896,-0.590324521064758,-0.550448179244995,-0.590358912944794,-0.920473575592041,-0.39080485701561,-1.30621237985906e-005,-0.763404130935669,-0.645921170711517,1.65686969921808e-007,-0.313048511743546,-0.896659255027771,-0.313053876161575,-0.435742944478989,-0.787558257579803,-0.435752272605896,-0.763404130935669,-0.645921170711517,1.65686969921808e-007,-0.605317652225494,-0.795983970165253,2.7946529712608e-007,-0.194182455539703,-0.961552917957306,-0.194188266992569,-0.313048511743546,-0.896659255027771,-0.313053876161575,-0.605317652225494,-0.795983970165253,2.7946529712608e-007,-0.417196422815323,-0.908816337585449,1.45549989838401e-007,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,-0.194182455539703,-0.961552917957306,-0.194188266992569,-0.417196422815323,-0.908816337585449,1.45549989838401e-007,-0.207987621426582,-0.978131473064423,-2.69911765826691e-007,3.22804623920092e-007,-1,-3.12954000492027e-007,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,-0.207987621426582,-0.978131473064423,-2.69911765826691e-007,8.54858626553323e-007,-0.999999940395355,8.12673377481588e-008,0.0797026455402374,-0.99362725019455,-0.0797006487846375,
  488. 3.22804623920092e-007,-1,-3.12954000492027e-007,8.54858626553323e-007,-0.999999940395355,8.12673377481588e-008,0.207992643117905,-0.978130400180817,-6.3851445020191e-007,0.194186642765999,-0.961552500724792,-0.19418603181839,0.0797026455402374,-0.99362725019455,-0.0797006487846375,0.207992643117905,-0.978130400180817,-6.3851445020191e-007,0.417196869850159,-0.908816158771515,-4.52371159553877e-006,0.313055604696274,-0.896659672260284,-0.313045620918274,0.194186642765999,-0.961552500724792,-0.19418603181839,0.417196869850159,-0.908816158771515,-4.52371159553877e-006,0.605309784412384,-0.79598993062973,-6.60908699501306e-006,0.435759514570236,-0.787558972835541,-0.435734629631042,0.313055604696274,-0.896659672260284,-0.313045620918274,0.605309784412384,-0.79598993062973,-6.60908699501306e-006,0.763400852680206,-0.645925045013428,-3.14797580358572e-006,0.590367615222931,-0.550451040267944,-0.590313255786896,0.435759514570236,-0.787558972835541,-0.435734629631042,0.763400852680206,-0.645925045013428,-3.14797580358572e-006,0.920478522777557,-0.390793204307556,-2.62013018073048e-005,0.974931359291077,-0.222505792975426,-5.46484370715916e-005,0.672939777374268,-0.307165622711182,-0.672905147075653,0.590367615222931,-0.550451040267944,-0.590313255786896,0.920478522777557,-0.390793204307556,-2.62013018073048e-005,-2.75765323749511e-005,-0.222513258457184,0.974929630756378,0.672972142696381,-0.30715999007225,0.672875463962555,0.590368747711182,-0.55045348405838,0.590309739112854,-3.03098458971363e-005,-0.390795588493347,0.920477390289307,-3.03098458971363e-005,-0.390795588493347,0.920477390289307,0.590368747711182,-0.55045348405838,0.590309739112854,0.435743719339371,-0.787567913532257,0.43573409318924,-1.85577682714211e-005,-0.645922541618347,0.763402998447418,-1.85577682714211e-005,-0.645922541618347,0.763402998447418,0.435743719339371,-0.787567913532257,0.43573409318924,0.31305205821991,-0.896660447120667,0.313046962022781,-4.12219014833681e-006,-0.795986831188202,0.605313897132874,-4.12219014833681e-006,-0.795986831188202,0.605313897132874,
  489. 0.31305205821991,-0.896660447120667,0.313046962022781,0.194191411137581,-0.961552023887634,0.194183677434921,-1.29785428271134e-006,-0.908813416957855,0.417202681303024,-1.29785428271134e-006,-0.908813416957855,0.417202681303024,0.194191411137581,-0.961552023887634,0.194183677434921,0.0797009989619255,-0.993627309799194,0.0797021239995956,-1.17904289709259e-006,-0.978130459785461,0.207992643117905,-1.17904289709259e-006,-0.978130459785461,0.207992643117905,0.0797009989619255,-0.993627309799194,0.0797021239995956,3.22804623920092e-007,-1,-3.12954000492027e-007,-3.0773202297496e-007,-1,-2.3203685941553e-006,-3.0773202297496e-007,-1,-2.3203685941553e-006,3.22804623920092e-007,-1,-3.12954000492027e-007,0.0797026455402374,-0.99362725019455,-0.0797006487846375,-1.5098366645816e-007,-0.978130638599396,-0.207991197705269,-1.5098366645816e-007,-0.978130638599396,-0.207991197705269,0.0797026455402374,-0.99362725019455,-0.0797006487846375,0.194186642765999,-0.961552500724792,-0.19418603181839,5.45827703035684e-008,-0.908816456794739,-0.417196065187454,5.45827703035684e-008,-0.908816456794739,-0.417196065187454,0.194186642765999,-0.961552500724792,-0.19418603181839,0.313055604696274,-0.896659672260284,-0.313045620918274,1.04802111877689e-007,-0.795989155769348,-0.605310916900635,1.04802111877689e-007,-0.795989155769348,-0.605310916900635,0.313055604696274,-0.896659672260284,-0.313045620918274,0.435759514570236,-0.787558972835541,-0.435734629631042,1.10463311386866e-007,-0.645916700363159,-0.763408005237579,1.10463311386866e-007,-0.645916700363159,-0.763408005237579,0.435759514570236,-0.787558972835541,-0.435734629631042,0.590367615222931,-0.550451040267944,-0.590313255786896,-2.61121131188702e-005,-0.390797585248947,-0.920476615428925,0.590367615222931,-0.550451040267944,-0.590313255786896,0.672939777374268,-0.307165622711182,-0.672905147075653,-5.43024434591644e-005,-0.222515910863876,-0.974929094314575,-2.61121131188702e-005,-0.390797585248947,-0.920476615428925,3.22804623920092e-007,-1,-3.12954000492027e-007,-0.0797009095549583,-0.993627548217773,0.0796998664736748,
  490. -1.76141156771337e-007,-0.978130757808685,0.207990884780884,-1.54610361846608e-007,-1,1.41454870572488e-006,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,3.22804623920092e-007,-1,-3.12954000492027e-007,-1.54610361846608e-007,-1,1.41454870572488e-006,-5.12192286805657e-007,-0.978130757808685,-0.207990869879723,-0.194182455539703,-0.961552917957306,-0.194188266992569,-0.0797015279531479,-0.993627548217773,-0.0796999633312225,-5.12192286805657e-007,-0.978130757808685,-0.207990869879723,-6.98068845395028e-007,-0.908814489841461,-0.417200714349747,-0.313048511743546,-0.896659255027771,-0.313053876161575,-0.194182455539703,-0.961552917957306,-0.194188266992569,-6.98068845395028e-007,-0.908814489841461,-0.417200714349747,-2.11290057450242e-006,-0.795990407466888,-0.605309247970581,-0.435742944478989,-0.787558257579803,-0.435752272605896,-0.313048511743546,-0.896659255027771,-0.313053876161575,-2.11290057450242e-006,-0.795990407466888,-0.605309247970581,-1.54305016621947e-005,-0.645924985408783,-0.763400852680206,-0.590324521064758,-0.550448179244995,-0.590358912944794,-0.435742944478989,-0.787558257579803,-0.435752272605896,-1.54305016621947e-005,-0.645924985408783,-0.763400852680206,-4.39096038462594e-005,-0.390805423259735,-0.920473277568817,-0.672876715660095,-0.307170540094376,-0.672966063022614,-0.590324521064758,-0.550448179244995,-0.590358912944794,-4.39096038462594e-005,-0.390805423259735,-0.920473277568817,-5.53027566638775e-005,-0.222527652978897,-0.974926352500916,-0.590313494205475,-0.550447523593903,0.590370655059814,-0.672898590564728,-0.307168871164322,0.672944843769073,-5.42497800779529e-005,-0.222527459263802,0.974926352500916,-2.60889137280174e-005,-0.390790700912476,0.920479595661163,-0.435737937688828,-0.787564873695374,0.43574532866478,-0.590313494205475,-0.550447523593903,0.590370655059814,-2.60889137280174e-005,-0.390790700912476,0.920479595661163,-2.83677472623367e-008,-0.645931482315063,0.763395488262177,-0.313049376010895,-0.896658360958099,0.313055634498596,-0.435737937688828,-0.787564873695374,0.43574532866478,
  491. -2.83677472623367e-008,-0.645931482315063,0.763395488262177,9.66466906504593e-009,-0.795989990234375,0.605309724807739,-0.194184720516205,-0.961552441120148,0.194188594818115,-0.313049376010895,-0.896658360958099,0.313055634498596,9.66466906504593e-009,-0.795989990234375,0.605309724807739,1.72772089968021e-008,-0.908812284469604,0.417205393314362,-0.0797009095549583,-0.993627548217773,0.0796998664736748,-0.194184720516205,-0.961552441120148,0.194188594818115,1.72772089968021e-008,-0.908812284469604,0.417205393314362,-1.76141156771337e-007,-0.978130757808685,0.207990884780884,0.705560803413391,-0.0632423982024193,-0.705821812152863,0.705560803413391,-0.0632423907518387,-0.705821812152863,0.705560743808746,-0.0632423833012581,-0.705821752548218,2.02851497306256e-005,-4.53712527814787e-006,-1,1.54979061335325e-005,-1.90345861028618e-006,-0.999999940395355,2.45166552303999e-006,5.27383372173063e-006,-0.999999940395355,1.57071626745164e-005,3.30767397827003e-005,-1,1.48175122376415e-005,3.12107295030728e-005,-1,1.48175122376415e-005,3.12107295030728e-005,-1,1.57071626745164e-005,3.30767397827003e-005,-1,3.56587224814575e-005,7.49243627069518e-005,-1,1.77683377842186e-005,3.94377602788154e-005,-0.999999940395355,1.98115521925502e-005,4.3490592361195e-005,-1,1.98115521925502e-005,4.3490592361195e-005,-1,1.77683377842186e-005,3.94377602788154e-005,-0.999999940395355,0,4.19323578171316e-006,-1,4.90970660393941e-006,-1.81521845661337e-005,-0.999999940395355,5.47423996977159e-006,-2.07215252885362e-005,-1,5.47423996977159e-006,-2.07215252885362e-005,-1,4.90970660393941e-006,-1.81521845661337e-005,-0.999999940395355,9.85307633527555e-006,-4.06508152082097e-005,-1,1.79279286385281e-005,-2.06883214559639e-005,-1,1.82875264727045e-005,-1.97993322217371e-005,-0.999999940395355,1.82875264727045e-005,-1.97993322217371e-005,-0.999999940395355,1.79279286385281e-005,-2.06883214559639e-005,-1,2.32929196499754e-005,-7.4250970101275e-006,-1,2.33628020396282e-006,-1.85886153758474e-006,-1,-5.35237904841779e-006,1.83302049094891e-007,-1,2.33628020396282e-006,-1.85886153758474e-006,-1,
  492. -3.4659358789213e-005,7.96744825493079e-006,-1,-5.35237904841779e-006,1.83302049094891e-007,-1,4.03380327043124e-005,2.71057724603452e-005,1,3.58072029484902e-005,7.96738095232286e-006,1,3.93963200622238e-005,2.31279482250102e-005,1,4.02064652007539e-005,5.17178123118356e-005,0.999999940395355,4.00126009481028e-005,5.27072661498096e-005,1,4.29045940109063e-005,3.79470402549487e-005,1,4.03380327043124e-005,2.71057724603452e-005,1,3.93963200622238e-005,2.31279482250102e-005,1,1.98117559193634e-005,8.25233146315441e-005,1,1.77685124072013e-005,8.35029131849296e-005,1,3.56593882315792e-005,7.49253158573993e-005,1,4.00126009481028e-005,5.27072661498096e-005,1,4.02064652007539e-005,5.17178123118356e-005,0.999999940395355,-1.98115048988257e-005,8.25217066449113e-005,1,-1.77684050868265e-005,8.3501436165534e-005,1,0,9.20218444662169e-005,1,1.77685124072013e-005,8.35029131849296e-005,1,1.98117559193634e-005,8.25233146315441e-005,1,-4.02076548198238e-005,5.17191219842061e-005,0.999999940395355,-4.00137396354694e-005,5.27082374901511e-005,1,-3.56585514964536e-005,7.49226383049972e-005,1,-1.77684050868265e-005,8.3501436165534e-005,1,-1.98115048988257e-005,8.25217066449113e-005,1,-3.90374443668406e-005,2.31298490689369e-005,1,-4.00760254706256e-005,2.71070093731396e-005,1,-4.29073006671388e-005,3.79491393687204e-005,1,-4.00137396354694e-005,5.27082374901511e-005,1,-4.02076548198238e-005,5.17191219842061e-005,0.999999940395355,-0.705692768096924,-0.0632296875119209,0.705690979957581,-0.705692768096924,-0.0632296800613403,0.705690979957581,-0.705692708492279,-0.0632296726107597,0.705690920352936,-2.26166902521081e-015,-1,-2.46799523973365e-015,-2.26166881345257e-015,-1,-2.46799502797541e-015,-2.26166881345257e-015,-0.999999940395355,-2.46799481621717e-015,4.8362551297032e-007,-1,-4.83685369090381e-007,4.8362551297032e-007,-1,-4.83685369090381e-007,4.8362551297032e-007,-1,-4.83685369090381e-007,6.08233960974758e-008,-1,6.0763255760321e-008,6.08233960974758e-008,-1,6.0763255760321e-008,6.08233960974758e-008,-1,6.0763255760321e-008,
  493. -0.7057785987854,-0.0632381290197372,-0.705604493618011,-0.7057785987854,-0.0632381215691566,-0.705604434013367,-0.705778539180756,-0.0632381215691566,-0.705604434013367,-1,-2.28412573051173e-005,3.90862296626437e-005,-1,-2.67465729848482e-005,4.01819306716789e-005,-1,-3.73902112187352e-005,4.31681874033529e-005,-1,-5.9174548368901e-005,4.51169180450961e-005,-1,-5.77143000555225e-005,4.49862891400699e-005,-1,-5.77143000555225e-005,4.49862891400699e-005,-1,-5.9174548368901e-005,4.51169180450961e-005,-0.999999940395355,-9.19635931495577e-005,4.80500748381019e-005,-1,-9.117741137743e-005,1.97709850908723e-005,-1,-9.12671894184314e-005,2.30004188779276e-005,-1,-9.12671894184314e-005,2.30004188779276e-005,-1,-9.117741137743e-005,1.97709850908723e-005,-1,-9.03965992620215e-005,-8.31467696116306e-006,-1,-7.43435084586963e-005,-1.54331701196497e-005,-1,-7.24975761841051e-005,-1.62517208082136e-005,-1,-7.24975761841051e-005,-1.62517208082136e-005,-1,-7.43435084586963e-005,-1.54331701196497e-005,-1,-5.81800813961308e-005,-2.2600590455113e-005,-1,-4.60567061963957e-005,-3.49574729625601e-005,-1,-4.55168337794021e-005,-3.55077390850056e-005,-1,-4.55168337794021e-005,-3.55077390850056e-005,-1,-4.60567061963957e-005,-3.49574729625601e-005,-1,-3.80023302568588e-005,-4.31669832323678e-005,-1,-2.7137270080857e-005,-4.01810430048499e-005,-1,-2.31511821766617e-005,-3.90855857403949e-005,-1,-7.95738105807686e-006,-3.4910026442958e-005,-1,-2.31511821766617e-005,-3.90855857403949e-005,-1,-2.7137270080857e-005,-4.01810430048499e-005,1,2.71376447926741e-005,-4.01815741497558e-005,1,7.95746655057883e-006,-3.49104011547752e-005,1,2.31510584853822e-005,-3.90859677281696e-005,1,5.80970227019861e-005,-4.49853978352621e-005,1,5.95425044593867e-005,-4.51161577075254e-005,1,3.80025412596297e-005,-4.31675107392948e-005,1,2.71376447926741e-005,-4.01815741497558e-005,1,2.31510584853822e-005,-3.90859677281696e-005,1,9.17511497391388e-005,-2.30001915042521e-005,1,9.17240104172379e-005,-1.97707595361862e-005,0.999999940395355,9.19616722967476e-005,-4.8049016186269e-005,
  494. 1,5.95425044593867e-005,-4.51161577075254e-005,1,5.80970227019861e-005,-4.49853978352621e-005,1,9.17511497391388e-005,-2.30001915042521e-005,1,7.29827079339884e-005,1.625173172215e-005,1,7.48911334085278e-005,1.54331810335862e-005,1,9.14879565243609e-005,8.31460783956572e-006,1,9.17240104172379e-005,-1.97707595361862e-005,1,4.51324667665176e-005,3.55080956069287e-005,1,4.5688768295804e-005,3.49577821907587e-005,1,5.81802050874103e-005,2.26006959564984e-005,1,7.48911334085278e-005,1.54331810335862e-005,1,7.29827079339884e-005,1.625173172215e-005,1,2.28411499847425e-005,3.90858513128478e-005,1,2.67463346972363e-005,4.01814686483704e-005,1,3.73897528334055e-005,4.31675325671677e-005,1,4.5688768295804e-005,3.49577821907587e-005,1,4.51324667665176e-005,3.55080956069287e-005,1,7.95740834291792e-006,3.49101501342375e-005,1,2.67463346972363e-005,4.01814686483704e-005,1,2.28411499847425e-005,3.90858513128478e-005,5.14273324370151e-007,-1,-5.1372649068071e-007,5.14273267526733e-007,-0.999999940395355,-5.1372649068071e-007,5.14273267526733e-007,-1,-5.13726433837292e-007,0.422935217618942,0.801404118537903,-0.422938764095306,0.586424112319946,0.558758974075317,-0.58642578125,0.422935336828232,0.801404058933258,-0.422938883304596,0.10161679238081,0.988850355148315,-0.108853049576283,-1.22135659808009e-007,1,1.57720876359235e-007,0.108853377401829,0.988850057125092,-0.101618766784668,0.108853377401829,0.988850057125092,-0.101618766784668,-1.22135659808009e-007,1,1.57720876359235e-007,0.108853496611118,0.988849997520447,0.101619340479374,0.422935336828232,0.801404058933258,-0.422938883304596,0.10161679238081,0.988850355148315,-0.108853049576283,0.108853377401829,0.988850057125092,-0.101618766784668,0.422935217618942,0.801404118537903,-0.422938764095306,0.422932267189026,0.801405012607574,0.422940284013748,0.586416006088257,0.558761119842529,0.586431920528412,0.42293319106102,0.801403939723969,0.422941237688065,-0.101619966328144,0.988849878311157,0.108854696154594,0.101616941392422,0.988850176334381,0.108854338526726,-1.22135659808009e-007,1,1.57720876359235e-007,
  495. 0.42293319106102,0.801403939723969,0.422941237688065,0.108853496611118,0.988849997520447,0.101619340479374,0.101616941392422,0.988850176334381,0.108854338526726,0.422932267189026,0.801405012607574,0.422940284013748,-0.422944754362106,0.80139946937561,-0.422937899827957,-0.586433112621307,0.558758974075317,-0.586416780948639,-0.422943830490112,0.801400482654572,-0.422937005758286,-0.108855344355106,0.988850057125092,-0.101618237793446,-1.22135659808009e-007,1,1.57720876359235e-007,-0.101620301604271,0.988849759101868,-0.108854494988918,-0.422943830490112,0.801400482654572,-0.422937005758286,-0.108855344355106,0.988850057125092,-0.101618237793446,-0.101620301604271,0.988849759101868,-0.108854494988918,-0.422944754362106,0.80139946937561,-0.422937899827957,-0.422938168048859,0.801404356956482,0.422935545444489,-0.586426556110382,0.558757305145264,0.586424767971039,-0.422938048839569,0.801404476165771,0.422935396432877,-0.422938048839569,0.801404476165771,0.422935396432877,-0.101619966328144,0.988849878311157,0.108854696154594,-0.108854532241821,0.988850057125092,0.101618222892284,-0.422938168048859,0.801404356956482,0.422935545444489,-1.22135659808009e-007,1,1.57720876359235e-007,-0.108855344355106,0.988850057125092,-0.101618237793446,-0.108854532241821,0.988850057125092,0.101618222892284,-0.108854532241821,0.988850057125092,0.101618222892284,-0.101619966328144,0.988849878311157,0.108854696154594,-1.22135659808009e-007,1,1.57720876359235e-007,-1.22135659808009e-007,1,1.57720876359235e-007,0.10161679238081,0.988850355148315,-0.108853049576283,-0.101620301604271,0.988849759101868,-0.108854494988918,-1.22135659808009e-007,1,1.57720876359235e-007,0.101616941392422,0.988850176334381,0.108854338526726,0.108853496611118,0.988849997520447,0.101619340479374,-3.90374443668406e-005,2.31298490689369e-005,1,-3.50779737345874e-005,7.96739550423808e-006,1,-4.00760254706256e-005,2.71070093731396e-005,1,-1,-7.95744836068479e-006,3.49103211192414e-005,-1,-2.67465729848482e-005,4.01819306716789e-005,-1,-2.28412573051173e-005,3.90862296626437e-005,
  496. 3.85295134037733e-005,-1.45741250889841e-005,-0.999999940395355,1.54979061335325e-005,-1.90345861028618e-006,-0.999999940395355,2.02851497306256e-005,-4.53712527814787e-006,-1,0.705559968948364,-0.0632264316082001,0.705824136734009,0.705559849739075,-0.0632264316082001,0.705824077129364,0.705559909343719,-0.0632264316082001,0.705824136734009
  497. }
  498. NormalsW: *392 {
  499. 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
  500. }
  501. }
  502. LayerElementBinormal: 0 {
  503. Version: 102
  504. Name: "map1"
  505. MappingInformationType: "ByPolygonVertex"
  506. ReferenceInformationType: "Direct"
  507. Binormals: *1176 {
  508. a: 0.22251084446907,-0.974930286407471,5.67448341826093e-006,0.415267795324326,-0.909699320793152,2.63750575868471e-006,0.681979238986969,-0.731371521949768,-1.34110450744629e-007,0.39080074429512,-0.920475363731384,1.68793985722004e-006,0.39080074429512,-0.920475363731384,1.68793985722004e-006,0.681979238986969,-0.731371521949768,-1.34110450744629e-007,0.87500411272049,-0.484115600585938,1.49011611938477e-007,0.645920693874359,-0.763404548168182,-7.2139954454542e-008,0.645920693874359,-0.763404548168182,-7.2139954454542e-008,0.87500411272049,-0.484115600585938,1.49011611938477e-007,0.944114506244659,-0.329617649316788,1.63912773132324e-007,0.795985102653503,-0.60531622171402,2.91815496211711e-007,0.795985102653503,-0.60531622171402,2.91815496211711e-007,0.944114506244659,-0.329617649316788,1.63912773132324e-007,0.980211615562439,-0.197952970862389,-2.19792156030962e-007,0.90881621837616,-0.417196810245514,-1.3219133165876e-007,0.90881621837616,-0.417196810245514,-1.3219133165876e-007,0.980211615562439,-0.197952970862389,-2.19792156030962e-007,0.996798515319824,-0.0799555405974388,-3.53017867382732e-006,0.978130996227264,-0.207989722490311,-5.50015286648886e-008,0.978130996227264,-0.207989722490311,-5.50015286648886e-008,0.996798515319824,-0.0799555405974388,-3.53017867382732e-006,1,3.22804652341802e-007,-5.53485648424612e-008,1,1.00748468412348e-006,-5.40063319931505e-006,1,1.00748468412348e-006,-5.40063319931505e-006,1,3.22804652341802e-007,-5.53485648424612e-008,0.996798515319824,0.0799550786614418,-3.60840977009502e-006,0.978129863739014,0.207995176315308,8.56566160223338e-008,0.978129863739014,0.207995176315308,8.56566160223338e-008,0.996798515319824,0.0799550786614418,-3.60840977009502e-006,0.980210185050964,0.197959572076797,1.49011626149331e-007,0.908814311027527,0.417200863361359,1.43449000233886e-007,0.908814311027527,0.417200863361359,1.43449000233886e-007,0.980210185050964,0.197959572076797,1.49011626149331e-007,0.944113850593567,0.329619526863098,2.23517417907715e-008,0.795991897583008,0.605307221412659,2.77937992620991e-008,
  509. 0.795991897583008,0.605307221412659,2.77937992620991e-008,0.944113850593567,0.329619526863098,2.23517417907715e-008,0.875002086162567,0.484119147062302,8.94069671630859e-008,0.645926415920258,0.763399660587311,7.42335899417412e-008,0.645926415920258,0.763399660587311,7.42335899417412e-008,0.875002086162567,0.484119147062302,8.94069671630859e-008,0.681949138641357,0.731399655342102,4.47034906869703e-008,0.390789568424225,0.920480072498322,3.24503125739284e-005,0.390789568424225,0.920480072498322,3.24503125739284e-005,0.681949138641357,0.731399655342102,4.47034906869703e-008,0.415175318717957,0.909741520881653,5.16623258590698e-005,0.222505703568459,0.974931478500366,5.55970982532017e-005,0.681973040103912,-0.731377363204956,-1.63912773132324e-007,0.415257394313812,-0.909704029560089,2.5629997253418e-005,0.222519382834435,-0.974928319454193,2.70849595835898e-005,0.39080485701561,-0.920473575592041,1.61578482220648e-005,0.87500011920929,-0.484122812747955,-5.0663948059082e-007,0.681973040103912,-0.731377363204956,-1.63912773132324e-007,0.39080485701561,-0.920473575592041,1.61578482220648e-005,0.645921170711517,-0.763404130935669,-5.22800803537393e-007,0.944114923477173,-0.329616576433182,-7.45058059692383e-008,0.87500011920929,-0.484122812747955,-5.0663948059082e-007,0.645921170711517,-0.763404130935669,-5.22800803537393e-007,0.795984089374542,-0.605317711830139,-2.19618200958394e-007,0.980212032794952,-0.197950556874275,-2.23517417907715e-007,0.944114923477173,-0.329616576433182,-7.45058059692383e-008,0.795984089374542,-0.605317711830139,-2.19618200958394e-007,0.908816456794739,-0.417196482419968,-1.90269460631498e-007,0.996798455715179,-0.079956166446209,3.58512625098228e-006,0.980212032794952,-0.197950556874275,-2.23517417907715e-007,0.908816456794739,-0.417196482419968,-1.90269460631498e-007,0.978131473064423,-0.207987621426582,-1.03747815671795e-007,1,3.22804652341802e-007,-5.53485648424612e-008,0.996798455715179,-0.079956166446209,3.58512625098228e-006,0.978131473064423,-0.207987621426582,-1.03747815671795e-007,
  510. 1,8.54859194987512e-007,5.38044923814596e-006,0.996798396110535,0.0799567326903343,3.57162298314506e-006,1,3.22804652341802e-007,-5.53485648424612e-008,1,8.54859194987512e-007,5.38044923814596e-006,0.978130400180817,0.207992643117905,-5.48183152204729e-006,0.980210721492767,0.197956904768944,-1.09635293483734e-005,0.996798396110535,0.0799567326903343,3.57162298314506e-006,0.978130400180817,0.207992643117905,-5.48183152204729e-006,0.908816158771515,0.417196869850159,-1.39680478241644e-005,0.944111168384552,0.329627186059952,-1.31130218505859e-005,0.980210721492767,0.197956904768944,-1.09635293483734e-005,0.908816158771515,0.417196869850159,-1.39680478241644e-005,0.79599004983902,0.605309844017029,-6.63177252135938e-006,0.874991536140442,0.484138250350952,-3.5166735870007e-006,0.944111168384552,0.329627186059952,-1.31130218505859e-005,0.79599004983902,0.605309844017029,-6.63177252135938e-006,0.645925045013428,0.763400852680206,7.65883214626228e-008,0.681948184967041,0.731400489807129,-7.45058059692383e-008,0.874991536140442,0.484138250350952,-3.5166735870007e-006,0.645925045013428,0.763400852680206,7.65883214626228e-008,0.390793204307556,0.920478522777557,-3.24482534779236e-005,0.222505822777748,0.974931478500366,-5.51554112462327e-005,0.41519820690155,0.909730970859528,-5.15580177307129e-005,0.681948184967041,0.731400489807129,-7.45058059692383e-008,0.390793204307556,0.920478522777557,-3.24482534779236e-005,5.01377201089781e-007,-0.974929749965668,-0.222513288259506,8.03172588348389e-006,-0.909696400165558,-0.415274083614349,2.57492101809476e-005,-0.731352746486664,-0.681999385356903,9.96104154182831e-006,-0.920477509498596,-0.390795648097992,9.96104154182831e-006,-0.920477509498596,-0.390795648097992,2.57492101809476e-005,-0.731352746486664,-0.681999385356903,2.3186206817627e-005,-0.484101116657257,-0.875012099742889,2.49258082476445e-005,-0.763402998447418,-0.645922541618347,2.49258082476445e-005,-0.763402998447418,-0.645922541618347,2.3186206817627e-005,-0.484101116657257,-0.875012099742889,3.12924470335929e-007,-0.329614698886871,-0.94411563873291,
  511. 1.09597203845624e-005,-0.605313897132874,-0.795986831188202,1.09597203845624e-005,-0.605313897132874,-0.795986831188202,3.12924470335929e-007,-0.329614698886871,-0.94411563873291,3.82214784622192e-006,-0.197951227426529,-0.980211913585663,-1.64409375003061e-008,-0.417202740907669,-0.908813536167145,-1.64409375003061e-008,-0.417202740907669,-0.908813536167145,3.82214784622192e-006,-0.197951227426529,-0.980211913585663,7.30203555576736e-006,-0.0799559056758881,-0.996798455715179,7.9865912994137e-006,-0.207992643117905,-0.978130459785461,7.9865912994137e-006,-0.207992643117905,-0.978130459785461,7.30203555576736e-006,-0.0799559056758881,-0.996798455715179,-5.53589387664033e-008,3.12953972070318e-007,-1,1.65907977134339e-006,2.32036813940795e-006,-1,1.65907977134339e-006,2.32036813940795e-006,-1,-5.53589387664033e-008,3.12953972070318e-007,-1,-9.58796817940311e-007,0.0799549520015717,-0.996798574924469,4.96799401616954e-008,0.207991227507591,-0.978130757808685,4.96799401616954e-008,0.207991227507591,-0.978130757808685,-9.58796817940311e-007,0.0799549520015717,-0.996798574924469,1.22934579849243e-007,0.197954192757607,-0.98021125793457,1.00101594568969e-007,0.417196124792099,-0.908816576004028,1.00101594568969e-007,0.417196124792099,-0.908816576004028,1.22934579849243e-007,0.197954192757607,-0.98021125793457,2.23517417907715e-008,0.329613715410233,-0.944115877151489,-7.67631220810472e-008,0.605310916900635,-0.795989155769348,-7.67631220810472e-008,0.605310916900635,-0.795989155769348,2.23517417907715e-008,0.329613715410233,-0.944115877151489,-2.9802315282268e-008,0.484115540981293,-0.875004053115845,-2.12975010072114e-007,0.76340788602829,-0.645916640758514,-2.12975010072114e-007,0.76340788602829,-0.645916640758514,-2.9802315282268e-008,0.484115540981293,-0.875004053115845,-4.17232513427734e-007,0.731368958950043,-0.681982040405273,-3.27753004967235e-005,0.920476615428925,-0.390797585248947,-4.17232513427734e-007,0.731368958950043,-0.681982040405273,-5.18411470693536e-005,0.9096839427948,-0.415301501750946,-5.51852353964932e-005,0.974929094314575,-0.222515910863876,
  512. -3.27753004967235e-005,0.920476615428925,-0.390797585248947,-5.53589387664033e-008,3.12953972070318e-007,-1,1.00722536444664e-006,-0.0799542888998985,-0.996798515319824,-3.68615573620446e-008,-0.207990884780884,-0.978130757808685,-1.26633707964174e-007,-1.41454870572488e-006,-1,-3.20514664053917e-006,0.0799545645713806,-0.996798515319824,-5.53589387664033e-008,3.12953972070318e-007,-1,-1.26633707964174e-007,-1.41454870572488e-006,-1,-4.04519141739002e-006,0.207990869879723,-0.978130757808685,-2.03773379325867e-006,0.197956681251526,-0.980210781097412,-3.20514664053917e-006,0.0799545645713806,-0.996798515319824,-4.04519141739002e-006,0.207990869879723,-0.978130757808685,-5.58683765916612e-008,0.417200654745102,-0.908814370632172,-5.96046447753906e-008,0.329621642827988,-0.94411313533783,-2.03773379325867e-006,0.197956681251526,-0.980210781097412,-5.58683765916612e-008,0.417200654745102,-0.908814370632172,-5.14415660290979e-006,0.605309247970581,-0.795990407466888,-1.13099813461304e-005,0.484135687351227,-0.874992907047272,-5.96046447753906e-008,0.329621642827988,-0.94411313533783,-5.14415660290979e-006,0.605309247970581,-0.795990407466888,-2.38483698922209e-005,0.763400971889496,-0.645925045013428,-3.72231043002103e-005,0.731415808200836,-0.681931793689728,-1.13099813461304e-005,0.484135687351227,-0.874992907047272,-2.38483698922209e-005,0.763400971889496,-0.645925045013428,-1.88820085895713e-005,0.920473396778107,-0.39080548286438,-1.51693802763475e-005,0.909720838069916,-0.415220379829407,-3.72231043002103e-005,0.731415808200836,-0.681931793689728,-1.88820085895713e-005,0.920473396778107,-0.39080548286438,-4.71500243293121e-007,0.974926352500916,-0.222527652978897,5.81145286560059e-007,-0.731404662132263,-0.681943714618683,5.20795583724976e-005,-0.909730672836304,-0.41519883275032,5.50946970179211e-005,-0.974926471710205,-0.222527489066124,3.31706905853935e-005,-0.920479595661163,-0.390790700912476,-5.81145343403477e-007,-0.484121680259705,-0.875000715255737,5.81145286560059e-007,-0.731404662132263,-0.681943714618683,
  513. 3.31706905853935e-005,-0.920479595661163,-0.390790700912476,-1.1774983477153e-007,-0.763395488262177,-0.645931482315063,-1.564621925354e-007,-0.32962355017662,-0.944112539291382,-5.81145343403477e-007,-0.484121680259705,-0.875000715255737,-1.1774983477153e-007,-0.763395488262177,-0.645931482315063,-3.73130490061158e-007,-0.605309784412384,-0.795990109443665,-1.86264514923096e-007,-0.197956666350365,-0.980210781097412,-1.564621925354e-007,-0.32962355017662,-0.944112539291382,-3.73130490061158e-007,-0.605309784412384,-0.795990109443665,-2.43166766722425e-007,-0.417205393314362,-0.908812284469604,1.00722536444664e-006,-0.0799542888998985,-0.996798515319824,-1.86264514923096e-007,-0.197956666350365,-0.980210781097412,-2.43166766722425e-007,-0.417205393314362,-0.908812284469604,-3.68615573620446e-008,-0.207990884780884,-0.978130757808685,-0.707127749919891,0.00240463926456869,-0.707081735134125,-0.707127749919891,0.00240463740192354,-0.707081735134125,-0.707127749919891,0.00240463577210903,-0.707081735134125,-0.997323930263519,-0.0731103718280792,-1.98991529032355e-005,-0.986752986907959,-0.162230312824249,-1.49838069773978e-005,-0.955273449420929,-0.295724153518677,-3.90161130781053e-006,-0.949907600879669,-0.312531113624573,-2.52578647632618e-005,-0.967697083950043,-0.252116143703461,-2.22075923375087e-005,-0.967697083950043,-0.252116143703461,-2.22075923375087e-005,-0.949907600879669,-0.312531113624573,-2.52578647632618e-005,-0.9679194688797,-0.251260697841644,-5.33403181179892e-005,-0.991798937320709,0.127808228135109,-1.25821479741717e-005,-0.97021496295929,-0.242245674133301,-2.97568731184583e-005,-0.97021496295929,-0.242245674133301,-2.97568731184583e-005,-0.991798937320709,0.127808228135109,-1.25821479741717e-005,-0.912252902984619,0.40962740778923,1.7176643041239e-006,-0.989179491996765,0.146710440516472,-7.51969673729036e-006,-0.967468738555908,0.25299084186554,-1.05385115602985e-005,-0.967468738555908,0.25299084186554,-1.05385115602985e-005,-0.989179491996765,0.146710440516472,-7.51969673729036e-006,-0.967940807342529,0.251178503036499,-1.97478038899135e-005,
  514. -0.949919700622559,0.312493979930878,-2.34950675803702e-005,-0.969556093215942,0.244869694113731,-2.25790390686598e-005,-0.969556093215942,0.244869694113731,-2.25790390686598e-005,-0.949919700622559,0.312493979930878,-2.34950675803702e-005,-0.955257713794708,0.295774966478348,-2.44468974415213e-005,-0.991711139678955,0.128487750887871,-2.55575605478953e-006,-0.999754548072815,0.0221587065607309,5.35512708665919e-006,-0.991711139678955,0.128487750887871,-2.55575605478953e-006,-0.999878108501434,-0.0156140113249421,3.45307307725307e-005,-0.999754548072815,0.0221587065607309,5.35512708665919e-006,-0.991708338260651,-0.128509297966957,4.34869070886634e-005,-0.999878466129303,0.0155918095260859,3.56786258635111e-005,-0.999753713607788,-0.0221968404948711,3.98999836761504e-005,-0.969551026821136,-0.244889467954636,5.16473701281939e-005,-0.949903607368469,-0.31254318356514,5.44814101886004e-005,-0.95525586605072,-0.295780718326569,5.22088666912168e-005,-0.991708338260651,-0.128509297966957,4.34869070886634e-005,-0.999753713607788,-0.0221968404948711,3.98999836761504e-005,-0.967486917972565,-0.252921313047409,4.00395183532964e-005,-0.98917680978775,-0.146728649735451,2.98284685413819e-005,-0.967925608158112,-0.25123730301857,5.33396705577616e-005,-0.949903607368469,-0.31254318356514,5.44814101886004e-005,-0.969551026821136,-0.244889467954636,5.16473701281939e-005,-0.970232486724854,0.242175698280334,-3.92065157939214e-005,-0.991823792457581,-0.127615451812744,-6.96705319569446e-006,-0.912378013134003,-0.409348905086517,3.76690404664259e-005,-0.98917680978775,-0.146728649735451,2.98284685413819e-005,-0.967486917972565,-0.252921313047409,4.00395183532964e-005,-0.967690289020538,0.252142190933228,-5.19491331942845e-005,-0.949934542179108,0.312448978424072,-5.44790673302487e-005,-0.967957615852356,0.251113682985306,-5.33300699316897e-005,-0.991823792457581,-0.127615451812744,-6.96705319569446e-006,-0.970232486724854,0.242175698280334,-3.92065157939214e-005,-0.999794483184814,-0.0202721804380417,-3.85605308110826e-005,-0.994923055171967,0.100639209151268,-4.26005899498705e-005,
  515. -0.955258965492249,0.295770823955536,-5.22118316439446e-005,-0.949934542179108,0.312448978424072,-5.44790673302487e-005,-0.967690289020538,0.252142190933228,-5.19491331942845e-005,-0.700574219226837,-0.086457833647728,-0.708322584629059,-0.700574219226837,-0.086457833647728,-0.708322584629059,-0.700574219226837,-0.0864578261971474,-0.708322584629059,1,-2.26166902521081e-015,-5.58179035013385e-030,1,-2.26166881345257e-015,-5.58178959781746e-030,1,-2.26166902521081e-015,-5.58179035013385e-030,1,4.83565600006841e-007,0.000123839010484517,1,4.83565600006841e-007,0.000123839010484517,1,4.83565600006841e-007,0.000123839010484517,-1,-6.08083468023324e-008,0.000247616699198261,-1,-6.08083468023324e-008,0.000247616699198261,-1,-6.08083468023324e-008,0.000247616699198261,0.708103597164154,-0.0326184071600437,-0.705354928970337,0.708103537559509,-0.032618410885334,-0.705354928970337,0.708103537559509,-0.0326184071600437,-0.705354869365692,-3.95835813833401e-005,0.0221957694739103,-0.999753713607788,-4.32864071626682e-005,0.128530979156494,-0.991705596446991,-5.22968075529207e-005,0.295815736055374,-0.955245018005371,-6.13496013102122e-005,0.312504231929779,-0.949916481971741,-5.77506179979537e-005,0.244900122284889,-0.969548285007477,-5.77506179979537e-005,0.244900122284889,-0.969548285007477,-6.13496013102122e-005,0.312504231929779,-0.949916481971741,-6.96096176397987e-005,0.251187354326248,-0.967938482761383,-7.98308064986486e-006,-0.127515196800232,-0.991836607456207,-4.44214419985656e-005,0.242210701107979,-0.970223665237427,-4.44214419985656e-005,0.242210701107979,-0.970223665237427,-7.98308064986486e-006,-0.127515196800232,-0.991836607456207,4.45763398602139e-005,-0.409192711114883,-0.912447988986969,2.61736822722014e-005,-0.146717920899391,-0.989178359508514,3.40523984050378e-005,-0.252817124128342,-0.967514097690582,3.40523984050378e-005,-0.252817124128342,-0.967514097690582,2.61736822722014e-005,-0.146717920899391,-0.989178359508514,3.64848965546116e-005,-0.251088201999664,-0.967964231967926,4.75975757581182e-005,-0.312445938587189,-0.949935555458069,
  516. 4.58372196590062e-005,-0.252142429351807,-0.967690229415894,4.58372196590062e-005,-0.252142429351807,-0.967690229415894,4.75975757581182e-005,-0.312445938587189,-0.949935555458069,5.24759707332123e-005,-0.295784771442413,-0.95525461435318,4.27074010076467e-005,-0.100608214735985,-0.99492621421814,3.86068895750213e-005,0.0203281342983246,-0.999793350696564,3.35727090714499e-005,0.130526900291443,-0.991444766521454,3.86068895750213e-005,0.0203281342983246,-0.999793350696564,4.27074010076467e-005,-0.100608214735985,-0.99492621421814,-4.4131804315839e-005,0.166140884160995,-0.986102044582367,-3.53696414094884e-005,0.0678101629018784,-0.997698247432709,-4.07922270824201e-005,0.0789742097258568,-0.99687671661377,-5.8179852203466e-005,0.252125233411789,-0.967694640159607,-6.14625168964267e-005,0.312474101781845,-0.949926257133484,-5.24763236171566e-005,0.295776188373566,-0.955257296562195,-4.4131804315839e-005,0.166140884160995,-0.986102044582367,-4.07922270824201e-005,0.0789742097258568,-0.99687671661377,-4.4536151108332e-005,0.242184087634087,-0.970230340957642,-7.91170623415383e-006,-0.127530604600906,-0.991834700107574,-6.96069037076086e-005,0.251172184944153,-0.967942476272583,-6.14625168964267e-005,0.312474101781845,-0.949926257133484,-5.8179852203466e-005,0.252125233411789,-0.967694640159607,-4.4536151108332e-005,0.242184087634087,-0.970230340957642,3.41766317433212e-005,-0.252840012311935,-0.967508137226105,2.625614979479e-005,-0.146746963262558,-0.989174067974091,4.50236875622068e-005,-0.409202247858047,-0.91244375705719,-7.91170623415383e-006,-0.127530604600906,-0.991834700107574,4.5479569962481e-005,-0.244894802570343,-0.969549715518951,4.7483710659435e-005,-0.312469184398651,-0.949927985668182,3.64869738405105e-005,-0.251125395298004,-0.967954576015472,2.625614979479e-005,-0.146746963262558,-0.989174067974091,3.41766317433212e-005,-0.252840012311935,-0.967508137226105,3.95832721551415e-005,-0.022199060767889,-0.999753594398499,4.32856431871187e-005,-0.128518328070641,-0.991707146167755,5.22955160704441e-005,-0.295793533325195,-0.95525187253952,
  517. 4.7483710659435e-005,-0.312469184398651,-0.949927985668182,4.5479569962481e-005,-0.244894802570343,-0.969549715518951,3.47819332091603e-005,0.0155802769586444,-0.999878644943237,4.32856431871187e-005,-0.128518328070641,-0.991707146167755,3.95832721551415e-005,-0.022199060767889,-0.999753594398499,-2.64194211212904e-013,5.1372649068071e-007,-1,-2.64194238317958e-013,5.13726547524129e-007,-1,-2.64194184107849e-013,5.13726433837292e-007,-1,-0.724735200405121,0.0189794022589922,-0.688766062259674,-0.707102715969086,-1.07139339888818e-005,-0.707110941410065,-0.75122857093811,0.0490845888853073,-0.658214569091797,-0.729936420917511,-0.000231467216508463,-0.683515012264252,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.682946801185608,0.00011304767394904,-0.730468153953552,-0.682946801185608,0.00011304767394904,-0.730468153953552,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.694587409496307,0.148792400956154,-0.703853130340576,-0.75122857093811,0.0490845888853073,-0.658214569091797,-0.729936420917511,-0.000231467216508463,-0.683515012264252,-0.682946801185608,0.00011304767394904,-0.730468153953552,-0.724735200405121,0.0189794022589922,-0.688766062259674,-0.56628292798996,0.59812206029892,-0.567074656486511,-0.394555032253265,0.829328417778015,-0.395652264356613,-0.566168785095215,0.59812343120575,-0.567187309265137,-0.730108320713043,0.000192403793334961,-0.683331489562988,-0.705080389976501,0.148780509829521,-0.693344116210938,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.566168785095215,0.59812343120575,-0.567187309265137,-0.694587409496307,0.148792400956154,-0.703853130340576,-0.705080389976501,0.148780509829521,-0.693344116210938,-0.56628292798996,0.59812206029892,-0.567074656486511,-0.566670060157776,-0.598129451274872,-0.566680073738098,-0.395096033811569,-0.829330205917358,-0.395108610391617,-0.56667298078537,-0.598128139972687,-0.566678524017334,-0.69490385055542,-0.148795574903488,-0.703540027141571,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.704956412315369,-0.14878411591053,-0.693469285964966,
  518. -0.56667298078537,-0.598128139972687,-0.566678524017334,-0.69490385055542,-0.148795574903488,-0.703540027141571,-0.704956412315369,-0.14878411591053,-0.693469285964966,-0.566670060157776,-0.598129451274872,-0.566680073738098,-0.724739253520966,-0.0189893562346697,-0.688761532306671,-0.707109153270721,-7.25686641089851e-006,-0.707104444503784,-0.751237094402313,-0.0491002276539803,-0.658203661441803,-0.751237094402313,-0.0491002276539803,-0.658203661441803,-0.730108320713043,0.000192403793334961,-0.683331489562988,-0.68311208486557,-0.000148333623656072,-0.73031359910965,-0.724739253520966,-0.0189893562346697,-0.688761532306671,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.69490385055542,-0.148795574903488,-0.703540027141571,-0.68311208486557,-0.000148333623656072,-0.73031359910965,-0.68311208486557,-0.000148333623656072,-0.73031359910965,-0.730108320713043,0.000192403793334961,-0.683331489562988,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.729936420917511,-0.000231467216508463,-0.683515012264252,-0.704956412315369,-0.14878411591053,-0.693469285964966,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.705080389976501,0.148780509829521,-0.693344116210938,-0.694587409496307,0.148792400956154,-0.703853130340576,-0.999794483184814,-0.0202721804380417,-3.85605308110826e-005,-0.991454660892487,-0.130451709032059,-3.37388592015486e-005,-0.994923055171967,0.100639209151268,-4.26005899498705e-005,-3.47820387105457e-005,-0.0155878877267241,-0.999878525733948,-4.32864071626682e-005,0.128530979156494,-0.991705596446991,-3.95835813833401e-005,0.0221957694739103,-0.999753713607788,-0.998428463935852,-0.0560419671237469,-3.76522039005067e-005,-0.986752986907959,-0.162230312824249,-1.49838069773978e-005,-0.997323930263519,-0.0731103718280792,-1.98991529032355e-005,-0.705398738384247,0.0326427333056927,0.708058774471283,-0.705398738384247,0.032642737030983,0.708058714866638,-0.705398738384247,0.032642737030983,0.708058714866638
  519. }
  520. BinormalsW: *392 {
  521. 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
  522. }
  523. }
  524. LayerElementTangent: 0 {
  525. Version: 102
  526. Name: "map1"
  527. MappingInformationType: "ByPolygonVertex"
  528. ReferenceInformationType: "Direct"
  529. Tangents: *1176 {
  530. a: 1.30263731534797e-006,-5.52309529666672e-006,-1,-0.612176597118378,-0.279454052448273,-0.739692687988281,-0.431780397891998,-0.402620494365692,-0.807132244110107,7.50458070797322e-007,-1.51515212110098e-006,-1,7.50458070797322e-007,-1.51515212110098e-006,-1,-0.431780397891998,-0.402620494365692,-0.807132244110107,-0.210950970649719,-0.381278991699219,-0.900070071220398,7.98882950903135e-008,1.62091595257152e-007,-1,7.98882950903135e-008,1.62091595257152e-007,-1,-0.210950970649719,-0.381278991699219,-0.900070071220398,-0.103188499808311,-0.295560389757156,-0.949734807014465,4.01444367525983e-007,4.58078766030212e-008,-1,4.01444367525983e-007,4.58078766030212e-008,-1,-0.103188499808311,-0.295560389757156,-0.949734807014465,-0.0384404174983501,-0.190345853567123,-0.980964183807373,-5.94152638200285e-008,1.87426593356577e-007,-1,-5.94152638200285e-008,1.87426593356577e-007,-1,-0.0384404174983501,-0.190345853567123,-0.980964183807373,-0.00637595308944583,-0.0794444233179092,-0.996818900108337,-1.06487526352339e-007,-2.36344476434169e-007,-1,-1.06487526352339e-007,-2.36344476434169e-007,-1,-0.00637595308944583,-0.0794444233179092,-0.996818900108337,-5.53486643184442e-008,3.12954000492027e-007,-1,-5.40063319931505e-006,9.59129522470903e-008,-1,-5.40063319931505e-006,9.59129522470903e-008,-1,-5.53486643184442e-008,3.12954000492027e-007,-1,0.00636900356039405,-0.0794472396373749,-0.996818721294403,8.50820924824802e-009,3.71809022681191e-007,-1,8.50820924824802e-009,3.71809022681191e-007,-1,0.00636900356039405,-0.0794472396373749,-0.996818721294403,0.0384406559169292,-0.190340772271156,-0.980965137481689,8.98862566600656e-008,1.48032000879539e-007,-1,8.98862566600656e-008,1.48032000879539e-007,-1,0.0384406559169292,-0.190340772271156,-0.980965137481689,0.103186413645744,-0.295551955699921,-0.949737668037415,-6.24560314577138e-008,1.28047858538594e-007,-1,-6.24560314577138e-008,1.28047858538594e-007,-1,0.103186413645744,-0.295551955699921,-0.949737668037415,0.210947275161743,-0.381268203258514,-0.900075435638428,
  531. 4.79494381977474e-008,5.66699007720217e-008,-1,4.79494381977474e-008,5.66699007720217e-008,-1,0.210947275161743,-0.381268203258514,-0.900075435638428,0.431752324104309,-0.402561157941818,-0.807176828384399,3.68715300282929e-005,1.95998836716171e-005,-1,3.68715300282929e-005,1.95998836716171e-005,-1,0.431752324104309,-0.402561157941818,-0.807176828384399,0.612158596515656,-0.279326528310776,-0.739755749702454,6.56476113363169e-005,4.20441137976013e-005,-1,0.431775033473969,0.402608960866928,-0.807140946388245,0.61220782995224,0.279436886310577,-0.739673316478729,3.26690169458743e-005,-2.03250547201606e-005,-1,1.83379052032251e-005,-9.76813134911936e-006,-1,0.210957214236259,0.381283521652222,-0.900066733360291,0.431775033473969,0.402608960866928,-0.807140946388245,1.83379052032251e-005,-9.76813134911936e-006,-1,-4.64174235048631e-007,2.92087577236089e-007,-1,0.103187695145607,0.295558899641037,-0.949735462665558,0.210957214236259,0.381283521652222,-0.900066733360291,-4.64174235048631e-007,2.92087577236089e-007,-1,-3.43977831107622e-007,-8.95111469390031e-008,-1,0.0384394600987434,0.190345719456673,-0.980964303016663,0.103187695145607,0.295558899641037,-0.949735462665558,-3.43977831107622e-007,-8.95111469390031e-008,-1,-2.33642907687681e-007,-5.28984820391543e-008,-1,0.00637606624513865,0.079444520175457,-0.996818900108337,0.0384394600987434,0.190345719456673,-0.980964303016663,-2.33642907687681e-007,-5.28984820391543e-008,-1,-4.53406912015453e-008,2.85587475445936e-007,-1,-5.53486643184442e-008,3.12954000492027e-007,-1,0.00637606624513865,0.079444520175457,-0.996818900108337,-4.53406912015453e-008,2.85587475445936e-007,-1,5.38044923814596e-006,-8.12627405366584e-008,-1,-0.00636905338615179,0.0794457495212555,-0.996818780899048,-5.53486643184442e-008,3.12954000492027e-007,-1,5.38044923814596e-006,-8.12627405366584e-008,-1,-5.49475225852802e-006,-5.15630233621778e-007,-1,-0.0384510084986687,0.190341100096703,-0.980964779853821,-0.00636905338615179,0.0794457495212555,-0.996818780899048,-5.49475225852802e-006,-5.15630233621778e-007,-1,
  532. -1.45816648000618e-005,-1.71620365563285e-006,-1,-0.103200100362301,0.295545756816864,-0.949738144874573,-0.0384510084986687,0.190341100096703,-0.980964779853821,-1.45816648000618e-005,-1.71620365563285e-006,-1,-9.27936980588129e-006,1.24649068311555e-006,-1,-0.21095860004425,0.38126266002655,-0.900075197219849,-0.103200100362301,0.295545756816864,-0.949738144874573,-9.27936980588129e-006,1.24649068311555e-006,-1,-2.35369725487544e-006,2.09182417165721e-006,-1,-0.431755423545837,0.402563005685806,-0.807174265384674,-0.21095860004425,0.38126266002655,-0.900075197219849,-2.35369725487544e-006,2.09182417165721e-006,-1,-3.67982902389485e-005,-1.96286309801508e-005,-1,-6.55508774798363e-005,-4.16131370002404e-005,-1,-0.612178504467011,0.279354333877563,-0.73972874879837,-0.431755423545837,0.402563005685806,-0.807174265384674,-3.67982902389485e-005,-1.96286309801508e-005,-1,-1,5.64733636565506e-006,-2.69967422354966e-005,-0.739667773246765,-0.279473304748535,0.612197875976563,-0.807133674621582,-0.40264630317688,0.431753635406494,-1,2.67604218606721e-006,-3.17922640533652e-005,-1,2.67604218606721e-006,-3.17922640533652e-005,-0.807133674621582,-0.40264630317688,0.431753635406494,-0.90007084608078,-0.381291121244431,0.210925757884979,-1,-7.04155536368489e-006,-3.02671960525913e-005,-1,-7.04155536368489e-006,-3.02671960525913e-005,-0.90007084608078,-0.381291121244431,0.210925757884979,-0.949735879898071,-0.295557409524918,0.103186257183552,-1,-3.35286199515394e-006,-1.12190127765643e-005,-1,-3.35286199515394e-006,-1.12190127765643e-005,-0.949735879898071,-0.295557409524918,0.103186257183552,-0.98096376657486,-0.190349489450455,0.0384367555379868,-1,1.18636660317861e-006,-5.26526548583206e-007,-1,1.18636660317861e-006,-5.26526548583206e-007,-0.98096376657486,-0.190349489450455,0.0384367555379868,-0.996818780899048,-0.0794463977217674,0.00636530900374055,-1,-5.07894299062173e-007,-8.05715899332426e-006,-1,-5.07894299062173e-007,-8.05715899332426e-006,-0.996818780899048,-0.0794463977217674,0.00636530900374055,-1,-3.22804652341802e-007,5.53588392904203e-008,
  533. -1,3.07735888327443e-007,-1.65907908922236e-006,-1,3.07735888327443e-007,-1.65907908922236e-006,-1,-3.22804652341802e-007,5.53588392904203e-008,-0.996818661689758,-0.0794475451111794,-0.00637166714295745,-1,1.58014728413036e-007,-1.71901994860946e-008,-1,1.58014728413036e-007,-1.71901994860946e-008,-0.996818661689758,-0.0794475451111794,-0.00637166714295745,-0.980964601039886,-0.190343901515007,-0.0384401753544807,-1,-7.84373366258251e-009,-1.13745691976419e-007,-1,-7.84373366258251e-009,-1.13745691976419e-007,-0.980964601039886,-0.190343901515007,-0.0384401753544807,-0.949734807014465,-0.295560717582703,-0.103187434375286,-1,-1.29886899458143e-007,-2.33525687676206e-009,-1,-1.29886899458143e-007,-2.33525687676206e-009,-0.949734807014465,-0.295560717582703,-0.103187434375286,-0.900063216686249,-0.381291449069977,-0.210957989096642,-1,-2.33936901850029e-007,5.32355599602852e-008,-1,-2.33936901850029e-007,5.32355599602852e-008,-0.900063216686249,-0.381291449069977,-0.210957989096642,-0.807134509086609,-0.402620375156403,-0.431776344776154,-1,-1.99643454834586e-005,3.68441033060662e-005,-0.807134509086609,-0.402620375156403,-0.431776344776154,-0.739697277545929,-0.279507756233215,-0.612146496772766,-1,-4.17185365222394e-005,6.52206072118133e-005,-1,-1.99643454834586e-005,3.68441033060662e-005,-1,-3.22804652341802e-007,5.53588392904203e-008,-0.996818780899048,0.0794456675648689,-0.00637343060225248,-1,1.7995596124365e-007,-5.8033344796371e-010,-1,1.54610546587719e-007,1.26633494801354e-007,-0.996818721294403,0.0794461145997047,0.00637568673118949,-1,-3.22804652341802e-007,5.53588392904203e-008,-1,1.54610546587719e-007,1.26633494801354e-007,-1,-3.40371855145349e-007,4.06325762014603e-006,-0.980965495109558,0.190339326858521,0.0384416729211807,-0.996818721294403,0.0794461145997047,0.00637568673118949,-1,-3.40371855145349e-007,4.06325762014603e-006,-1,6.11106770520564e-007,3.42008831921703e-007,-0.949737191200256,0.295553177595139,0.10318761318922,-0.980965495109558,0.190339326858521,0.0384416729211807,-1,6.11106770520564e-007,3.42008831921703e-007,
  534. -1,-1.43195688906417e-006,5.37365758646047e-006,-0.900071144104004,0.381267070770264,0.210967630147934,-0.949737191200256,0.295553177595139,0.10318761318922,-1,-1.43195688906417e-006,5.37365758646047e-006,-1,-8.23891696200008e-006,2.71839162451215e-005,-0.807166039943695,0.402539074420929,0.43179315328598,-0.900071144104004,0.381267070770264,0.210967630147934,-1,-8.23891696200008e-006,2.71839162451215e-005,-1,-2.20270521822385e-007,4.77968096674886e-005,-0.739754617214203,0.279381960630417,0.612134695053101,-0.807166039943695,0.402539074420929,0.43179315328598,-1,-2.20270521822385e-007,4.77968096674886e-005,-1,1.18467150969082e-005,5.40210385224782e-005,-0.80717408657074,0.402560234069824,-0.431758373975754,-0.739734768867493,0.279351651668549,-0.612172484397888,-1,-4.16412003687583e-005,-6.51496520731598e-005,-1,-2.03376384888543e-005,-3.69771041732747e-005,-0.900073528289795,0.381271213293076,-0.210949689149857,-0.80717408657074,0.402560234069824,-0.431758373975754,-1,-2.03376384888543e-005,-3.69771041732747e-005,-1,1.08213292548953e-007,5.44025056115061e-008,-0.949736952781677,0.295553892850876,-0.103188306093216,-0.900073528289795,0.381271213293076,-0.210949689149857,-1,1.08213292548953e-007,5.44025056115061e-008,-1,2.18166519516672e-007,3.02858239820125e-007,-0.9809650182724,0.190341994166374,-0.0384399816393852,-0.949736952781677,0.295553892850876,-0.103188306093216,-1,2.18166519516672e-007,3.02858239820125e-007,-1,8.57487449934524e-008,2.28201074037315e-007,-0.996818780899048,0.0794456675648689,-0.00637343060225248,-0.9809650182724,0.190341994166374,-0.0384399816393852,-1,8.57487449934524e-008,2.28201074037315e-007,-1,1.7995596124365e-007,-5.8033344796371e-010,-0.0464147888123989,-0.997995316982269,0.0430238358676434,-0.0464147813618183,-0.997995316982269,0.0430238284170628,-0.0464147813618183,-0.997995316982269,0.0430238284170628,0.0731103643774986,-0.99732381105423,6.00803787165205e-006,0.162230312824249,-0.986752927303314,4.3924765122938e-006,0.295724153518677,-0.955273389816284,-4.31293028668733e-006,0.312531113624573,-0.949907600879669,-2.65108701569261e-005,
  535. 0.252116113901138,-0.967696964740753,-2.64667942246888e-005,0.252116113901138,-0.967696964740753,-2.64667942246888e-005,0.312531113624573,-0.949907600879669,-2.65108701569261e-005,0.251260697841644,-0.9679194688797,-6.3561114075128e-005,-0.127808228135109,-0.991798877716064,-4.13852285419125e-005,0.242245674133301,-0.97021496295929,-3.73959592252504e-005,0.242245674133301,-0.97021496295929,-3.73959592252504e-005,-0.127808228135109,-0.991798877716064,-4.13852285419125e-005,-0.40962740778923,-0.912252902984619,-3.8252915146586e-006,-0.146710455417633,-0.98917955160141,1.72354557435028e-005,-0.25299084186554,-0.967468738555908,1.86624965863302e-005,-0.25299084186554,-0.967468738555908,1.86624965863302e-005,-0.146710455417633,-0.98917955160141,1.72354557435028e-005,-0.251178503036499,-0.967940807342529,3.68727014574688e-005,-0.3124940097332,-0.949919819831848,1.40498759719776e-005,-0.24486967921257,-0.969556033611298,1.47185055539012e-005,-0.24486967921257,-0.969556033611298,1.47185055539012e-005,-0.3124940097332,-0.949919819831848,1.40498759719776e-005,-0.295774966478348,-0.955257713794708,2.0341875028862e-007,-0.128487750887871,-0.991711139678955,1.54327028667467e-006,-0.0221587065607309,-0.999754548072815,-6.46552464900196e-008,-0.128487750887871,-0.991711139678955,1.54327028667467e-006,0.0156140113249421,-0.999878108501434,-8.50764899951173e-006,-0.0221587065607309,-0.999754548072815,-6.46552464900196e-008,-0.128509297966957,0.991708338260651,-2.1697207557736e-005,0.0155918095260859,0.999878466129303,-8.52471112011699e-006,-0.022196838632226,0.999753594398499,-2.22477774514118e-005,-0.244889453053474,0.969550967216492,-4.02969199058134e-005,-0.31254318356514,0.949903607368469,-3.75611525669228e-005,-0.295780718326569,0.95525586605072,-2.35587831411976e-005,-0.128509297966957,0.991708338260651,-2.1697207557736e-005,-0.022196838632226,0.999753594398499,-2.22477774514118e-005,-0.252921283245087,0.967486798763275,-7.48293969081715e-005,-0.146728649735451,0.98917680978775,-7.99919944256544e-005,-0.25123730301857,0.967925608158112,-6.35631586192176e-005,
  536. -0.31254318356514,0.949903607368469,-3.75611525669228e-005,-0.244889453053474,0.969550967216492,-4.02969199058134e-005,0.242175668478012,0.970232367515564,-7.52673731767572e-005,-0.127615436911583,0.991823673248291,-8.50862270453945e-005,-0.409348845481873,0.912377893924713,-8.39587009977549e-005,-0.146728649735451,0.98917680978775,-7.99919944256544e-005,-0.252921283245087,0.967486798763275,-7.48293969081715e-005,0.252142190933228,0.967690229415894,-3.99100463255309e-005,0.312448978424072,0.949934542179108,-3.75671261281241e-005,0.251113682985306,0.967957615852356,-6.35675896774046e-005,-0.127615436911583,0.991823673248291,-8.50862270453945e-005,0.242175668478012,0.970232367515564,-7.52673731767572e-005,-0.0202721785753965,0.999794483184814,-2.39164692175109e-005,0.100639194250107,0.994922935962677,-2.29361667152261e-005,0.295770823955536,0.955258965492249,-2.35605275520356e-005,0.312448978424072,0.949934542179108,-3.75671261281241e-005,0.252142190933228,0.967690229415894,-3.99100463255309e-005,-0.105799533426762,0.994247078895569,-0.0167155768722296,-0.105799533426762,0.994247078895569,-0.016715582460165,-0.105799525976181,0.994247078895569,-0.0167155843228102,-1.74212456373699e-036,2.46799523973365e-015,-1,-2.22105133972221e-036,2.46799502797541e-015,-1,-2.3672778434094e-036,2.46799502797541e-015,-1,0.000123839010484517,4.8374528205386e-007,-1,0.000123839010484517,4.8374528205386e-007,-1,0.000123839010484517,4.8374528205386e-007,-1,0.000247616699198261,6.07783192663192e-008,1,0.000247616699198261,6.07783192663192e-008,1,0.000247616699198261,6.07783192663192e-008,1,-0.0215896274894476,0.997465372085571,-0.0678005144000053,-0.0215896256268024,0.997465372085571,-0.0678005144000053,-0.0215896256268024,0.997465372085571,-0.0678005144000053,-2.1968082364765e-005,0.999753594398499,0.0221957676112652,-2.13600978895556e-005,0.991705477237701,0.128530964255333,-2.2946984245209e-005,0.955245018005371,0.295815736055374,-4.21116455981974e-005,0.949916362762451,0.312504202127457,-4.49396502517629e-005,0.969548285007477,0.244900122284889,
  537. -4.49396502517629e-005,0.969548285007477,0.244900122284889,-4.21116455981974e-005,0.949916362762451,0.312504202127457,-7.69455364206806e-005,0.967938423156738,0.251187354326248,-9.29542002268136e-005,0.991836607456207,-0.127515196800232,-8.29786440590397e-005,0.970223665237427,0.242210701107979,-8.29786440590397e-005,0.970223665237427,0.242210701107979,-9.29542002268136e-005,0.991836607456207,-0.127515196800232,-7.9079887655098e-005,0.912447988986969,-0.409192711114883,-7.12746696081012e-005,0.989178359508514,-0.146717920899391,-6.60337173030712e-005,0.967514097690582,-0.252817124128342,-6.60337173030712e-005,0.967514097690582,-0.252817124128342,-7.12746696081012e-005,0.989178359508514,-0.146717920899391,-5.06414980918635e-005,0.967964231967926,-0.251088201999664,-3.28285823343322e-005,0.949935555458069,-0.312445938587189,-3.50931877619587e-005,0.967690110206604,-0.252142399549484,-3.50931877619587e-005,0.967690110206604,-0.252142399549484,-3.28285823343322e-005,0.949935555458069,-0.312445938587189,-2.35337629419519e-005,0.95525461435318,-0.295784771442413,-2.29570323426742e-005,0.99492609500885,-0.100608199834824,-2.3940936443978e-005,0.999793350696564,0.0203281324356794,-1.24460011647898e-005,0.991444766521454,0.130526900291443,-2.3940936443978e-005,0.999793350696564,0.0203281324356794,-2.29570323426742e-005,0.99492609500885,-0.100608199834824,2.0084684365429e-005,-0.986102044582367,-0.166140884160995,5.57187058802811e-006,-0.997698247432709,-0.0678101629018784,1.99919686565408e-005,-0.99687671661377,-0.0789742097258568,4.4878226617584e-005,-0.967694640159607,-0.252125233411789,4.24633544753306e-005,-0.949926257133484,-0.312474101781845,2.35342813539319e-005,-0.955257296562195,-0.295776188373566,2.0084684365429e-005,-0.986102044582367,-0.166140884160995,1.99919686565408e-005,-0.99687671661377,-0.0789742097258568,8.34494785522111e-005,-0.970230340957642,-0.242184087634087,9.34964264160953e-005,-0.991834580898285,0.127530589699745,7.69450343796052e-005,-0.967942416667938,-0.251172184944153,4.24633544753306e-005,-0.949926257133484,-0.312474101781845,
  538. 4.4878226617584e-005,-0.967694640159607,-0.252125233411789,8.34494785522111e-005,-0.970230340957642,-0.242184087634087,6.65022744215094e-005,-0.967508137226105,0.252840012311935,7.18155934009701e-005,-0.989174067974091,0.146746963262558,8.00752677605487e-005,-0.91244375705719,0.409202247858047,9.34964264160953e-005,-0.991834580898285,0.127530589699745,3.50624213751871e-005,-0.969549596309662,0.244894772768021,3.24778011417948e-005,-0.949927866458893,0.312469154596329,5.06401884194929e-005,-0.967954576015472,0.251125395298004,7.18155934009701e-005,-0.989174067974091,0.146746963262558,6.65022744215094e-005,-0.967508137226105,0.252840012311935,2.19678531721001e-005,-0.999753594398499,0.022199060767889,2.13604762393516e-005,-0.991707146167755,0.128518328070641,2.29479519475717e-005,-0.95525187253952,0.295793533325195,3.24778011417948e-005,-0.949927866458893,0.312469154596329,3.50624213751871e-005,-0.969549596309662,0.244894772768021,8.50035212351941e-006,-0.999878644943237,-0.0155802769586444,2.13604762393516e-005,-0.991707146167755,0.128518328070641,2.19678531721001e-005,-0.999753594398499,0.022199060767889,-1,-5.14273324370151e-007,-1.63473160878471e-018,-1,-5.14273324370151e-007,-1.6212767923385e-018,-1,-5.14273267526733e-007,-1.6055294448246e-018,0.543952822685242,-0.59782201051712,-0.588832795619965,0.395110875368118,-0.829330205917358,-0.395093739032745,0.506735980510712,-0.596105933189392,-0.622797191143036,0.67591917514801,-0.148912385106087,-0.721774339675903,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.722312033176422,-0.148914158344269,-0.675344288349152,0.722312033176422,-0.148914158344269,-0.675344288349152,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.711125373840332,-0.00603336142376065,-0.703039348125458,0.506735980510712,-0.596105933189392,-0.622797191143036,0.67591917514801,-0.148912385106087,-0.721774339675903,0.722312033176422,-0.148914158344269,-0.675344288349152,0.543952822685242,-0.59782201051712,-0.588832795619965,0.707426309585571,-0.000330283161019906,-0.706787049770355,
  539. 0.707419693470001,-0.000637153163552284,-0.706793427467346,0.707517206668854,-0.000426200072979555,-0.706696093082428,0.675733149051666,0.148915812373161,-0.721947908401489,0.70180881023407,0.00629555433988571,-0.712337493896484,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.707517206668854,-0.000426200072979555,-0.706696093082428,0.711125373840332,-0.00603336142376065,-0.703039348125458,0.70180881023407,0.00629555433988571,-0.712337493896484,0.707426309585571,-0.000330283161019906,-0.706787049770355,0.707108736038208,8.13893257145537e-006,-0.707104861736298,0.707103550434113,1.38288778543938e-005,-0.707110047340393,0.707106947898865,6.24241965851979e-006,-0.707106590270996,0.710815846920013,0.0059691951610148,-0.703352808952332,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.701932847499847,-0.00626711687073112,-0.712215542793274,0.707106947898865,6.24241965851979e-006,-0.707106590270996,0.710815846920013,0.0059691951610148,-0.703352808952332,0.701932847499847,-0.00626711687073112,-0.712215542793274,0.707108736038208,8.13893257145537e-006,-0.707104861736298,0.543945133686066,0.597821414470673,-0.588840425014496,0.395095527172089,0.82933121919632,-0.395106703042984,0.506721138954163,0.596104085445404,-0.622811198234558,0.506721138954163,0.596104085445404,-0.622811198234558,0.675733149051666,0.148915812373161,-0.721947908401489,0.722155511379242,0.148914575576782,-0.675511538982391,0.543945133686066,0.597821414470673,-0.588840425014496,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.710815846920013,0.0059691951610148,-0.703352808952332,0.722155511379242,0.148914575576782,-0.675511538982391,0.722155511379242,0.148914575576782,-0.675511538982391,0.675733149051666,0.148915812373161,-0.721947908401489,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.67591917514801,-0.148912385106087,-0.721774339675903,0.701932847499847,-0.00626711687073112,-0.712215542793274,0.707107603549957,1.97888439856797e-007,-0.707105994224548,
  540. 0.70180881023407,0.00629555433988571,-0.712337493896484,0.711125373840332,-0.00603336142376065,-0.703039348125458,-0.0202721785753965,0.999794483184814,-2.39164692175109e-005,-0.130451709032059,0.991454660892487,-1.24752932606498e-005,0.100639194250107,0.994922935962677,-2.29361667152261e-005,-8.50065953272861e-006,0.999878525733948,-0.0155878877267241,-2.13600978895556e-005,0.991705477237701,0.128530964255333,-2.1968082364765e-005,0.999753594398499,0.0221957676112652,0.0560419708490372,-0.998428523540497,1.67104935826501e-005,0.162230312824249,-0.986752927303314,4.3924765122938e-006,0.0731103643774986,-0.99732381105423,6.00803787165205e-006,0.0678080543875694,0.997465312480927,0.0215684361755848,0.06780806183815,0.997465312480927,0.0215684436261654,0.06780806183815,0.997465312480927,0.0215684399008751
  541. }
  542. TangentsW: *392 {
  543. 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
  544. }
  545. }
  546. LayerElementUV: 0 {
  547. Version: 101
  548. Name: "map1"
  549. MappingInformationType: "ByPolygonVertex"
  550. ReferenceInformationType: "IndexToDirect"
  551. UV: *412 {
  552. a: 0.999999403953552,1.60481059551239,0.980277836322784,1.60481071472168,0.932693302631378,1.3769816160202,0.999999403953552,1.3769816160202,0.875447392463684,1.26250064373016,0.999999403953552,1.26250064373016,0.799369394779205,1.14773893356323,0.999999403953552,1.14773881435394,0.708262205123901,1.03275179862976,0.999999403953552,1.03275191783905,0.606702923774719,0.917625248432159,0.999999403953552,0.917625188827515,0.499780982732773,0.802421808242798,0.999999403953552,0.802422404289246,0.606699526309967,0.687222123146057,0.999999403953552,0.687222123146057,0.708258867263794,0.572092950344086,0.999999403953552,0.572092890739441,0.799365878105164,0.457105398178101,0.999999403953552,0.457105427980423,0.875443935394287,0.342337101697922,0.999999403953552,0.342337071895599,0.932689785957336,0.227852284908295,0.999999403953552,0.227852299809456,0.98027092218399,3.26931476593018e-005,0.999999403953552,3.26931476593018e-005,0.0668686553835869,1.37698173522949,0.019287534058094,1.60481035709381,-0.000433812703704461,1.60481035709381,-0.000433812703704461,1.37698173522949,0.12411455065012,1.26250016689301,-0.000433812703704461,1.26250004768372,0.200195997953415,1.14773893356323,-0.000433812703704461,1.14773893356323,0.291303038597107,1.03275167942047,-0.000433812703704461,1.03275156021118,0.392858982086182,0.917625248432159,-0.000433812703704461,0.917625248432159,-0.000433812703704461,0.802422344684601,0.392864108085632,0.687222123146057,-0.000433812703704461,0.687222123146057,0.291306793689728,0.57209300994873,-0.000433812703704461,0.57209300994873,0.200199857354164,0.457105398178101,-0.000433812703704461,0.457105368375778,0.124118395149708,0.342337161302567,-0.000433812703704461,0.342337191104889,0.0668725222349167,0.227852180600166,-0.000433812703704461,0.227852180600166,0.0192949511110783,3.26931476593018e-005,-0.000433812703704461,3.26931476593018e-005,0.999999403953552,1.60481059551239,0.980280041694641,1.60481059551239,0.932697594165802,1.3769816160202,0.999999403953552,1.3769816160202,0.875451266765594,
  553. 1.26250064373016,0.999999403953552,1.26250064373016,0.799369812011719,1.14773893356323,0.999999403953552,1.14773881435394,0.708263218402863,1.03275179862976,0.999999403953552,1.03275191783905,0.606707274913788,0.917625188827515,0.999999403953552,0.917625188827515,0.499788284301758,0.802423477172852,0.999999403953552,0.802422404289246,0.606709361076355,0.687222123146057,0.999999403953552,0.687222123146057,0.70826780796051,0.572092950344086,0.999999403953552,0.572092890739441,0.799374282360077,0.457105427980423,0.999999403953552,0.457105427980423,0.875453412532806,0.342337071895599,0.999999403953552,0.342337071895599,0.932699739933014,0.227852284908295,0.999999403953552,0.227852299809456,0.980282664299011,3.26931476593018e-005,0.999999403953552,3.26931476593018e-005,0.392868250608444,0.917625188827515,-0.000433812703704461,0.917625248432159,-0.000433812703704461,0.802422344684601,0.392866313457489,0.687222123146057,-0.000433812703704461,0.687222123146057,0.291307419538498,0.57209300994873,-0.000433812703704461,0.57209300994873,0.20020118355751,0.457105398178101,-0.000433812703704461,0.457105368375778,0.124122306704521,0.342337161302567,-0.000433812703704461,0.342337191104889,0.0668759867548943,0.227852180600166,-0.000433812703704461,0.227852180600166,0.0192931387573481,3.26931476593018e-005,-0.000433812703704461,3.26931476593018e-005,0.0668793171644211,1.3769816160202,0.0192940831184387,1.60481035709381,-0.000433812703704461,1.60481035709381,-0.000433812703704461,1.37698173522949,0.124124869704247,1.26250016689301,-0.000433812703704461,1.26250004768372,0.200205147266388,1.14773893356323,-0.000433812703704461,1.14773893356323,0.291312336921692,1.03275167942047,-0.000433812703704461,1.03275156021118,0,0,1,0,0.5,1,0,0,1,0,0.5,1,0,0,1,0,0.5,1,0,0,1,0,0.5,1,1.79096579551697,0.512055814266205,1.6011153459549,0.481418013572693,1.57356119155884,0.521872937679291,1.51815140247345,0.444553047418594,1.4488673210144,0.395561695098877,1.39921641349792,0.423559069633484,1.39673805236816,0.336895346641541,1.36437678337097,0.27150297164917,
  554. 1.30246329307556,0.281495124101639,1.35340666770935,0.202654108405113,1.36437773704529,0.133805483579636,1.30246424674988,0.123812712728977,1.3967399597168,0.0684090182185173,1.44887006282806,0.00974329002201557,1.39921998977661,-0.0182553455233574,1.39922106266022,-0.22064745426178,1.51815474033356,-0.0392469726502895,1.39674258232117,-0.307311505079269,1.4488719701767,-0.248644828796387,1.60111939907074,-0.0761062428355217,1.573566198349,-0.119449205696583,1.51815593242645,-0.19965372979641,1.36438131332397,-0.37270599603653,1.30246794223785,-0.362713992595673,1.693603515625,-0.098988339304924,1.6991081237793,-0.141525462269783,1.60111999511719,-0.162790820002556,1.35341131687164,-0.441557168960571,1.36438226699829,-0.510403275489807,1.30246901512146,-0.520396173000336,1.3967444896698,-0.575799763202667,1.44887471199036,-0.63446569442749,1.3992246389389,-0.662464201450348,1.51815938949585,-0.683453738689423,1.60112392902374,-0.720315098762512,1.57357025146484,-0.760773539543152,1.79097473621368,-0.750954806804657,-0.0635844022035599,-0.750960409641266,-0.056427538394928,-0.791638255119324,0.126266300678253,-0.720321714878082,0.153820142149925,-0.760782182216644,0.209230571985245,-0.683459460735321,0.278514921665192,-0.634470880031586,0.328165233135223,-0.662469446659088,0.330644845962524,-0.575805008411407,0.363006591796875,-0.510408222675323,0.42492014169693,-0.520400702953339,0.37397712469101,-0.441557228565216,0.363006591796875,-0.372711002826691,0.424919724464417,-0.362718194723129,0.330644845962524,-0.307316362857819,0.278514921665192,-0.248650446534157,0.328165650367737,-0.220652759075165,0.328165233135223,-0.0182669758796692,0.209230571985245,-0.199659466743469,0.330644428730011,0.0683972835540771,0.278514921665192,0.00973117351531982,0.126266300678253,-0.162797570228577,0.153820529580116,-0.119458436965942,0.209230571985245,-0.0392574667930603,0.363006234169006,0.133793950080872,0.424919724464417,0.123801738023758,-0.0184962302446365,-0.125559449195862,0.126266300678253,-0.0761195421218872,0.37397712469101,
  555. 0.202640414237976,0.363006234169006,0.271491289138794,0.424919724464417,0.281483948230743,0.330644428730011,0.336885750293732,0.278514921665192,0.395551830530167,0.328165650367737,0.423549622297287,0.209230571985245,0.444542646408081,0.126266300678253,0.481404811143875,0.153820142149925,0.521864295005798,-0.0635844022035599,0.512043356895447,-0.0564292073249817,0.552719295024872,1.26463115215302,0.123812288045883,0.863685607910156,-0.119452849030495,1.26463794708252,-0.362714439630508,1.10695040225983,0.281493574380875,0.620428264141083,0.281485587358475,1.10672187805176,-0.520686030387878,0.620857954025269,-0.520811915397644,0.462749630212784,0.123802296817303,0.765384018421173,0.442969769239426,0.961992084980011,0.442973077297211,0.462749809026718,-0.362717628479004,0.965162575244904,-0.693794131278992,0.762951850891113,-0.6939657330513,-0.0185023248195648,-0.113371431827545,-0.00859923660755157,-0.0809093713760376,0.864228904247284,-0.893857002258301,0.863686800003052,0.623706698417664
  556. }
  557. UVIndex: *392 {
  558. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,9,8,10,11,11,10,12,13,13,12,14,15,15,14,16,17,17,16,18,19,19,18,20,21,21,20,22,23,23,22,24,25,26,27,28,29,30,26,29,31,32,30,31,33,34,32,33,35,36,34,35,37,12,36,37,38,39,12,38,40,41,39,40,42,43,41,42,44,45,43,44,46,47,45,46,48,50,49,47,48,51,52,53,54,54,53,55,56,56,55,57,58,58,57,59,60,60,59,61,62,62,61,63,64,64,63,65,66,66,65,67,68,68,67,69,70,70,69,71,72,72,71,73,74,73,75,76,74,63,77,78,79,80,63,79,81,82,80,81,83,84,82,83,85,86,84,85,87,88,86,87,89,90,88,89,91,92,93,94,95,96,92,95,97,98,96,97,99,100,98,99,101,77,100,101,78,138,134,139,134,133,130,127,128,128,127,126,124,125,125,124,123,121,122,122,121,120,118,119,119,118,117,115,116,115,114,116,153,151,154,157,156,155,153,154,160,159,158,156,157,163,162,161,159,160,166,165,164,162,163,172,171,168,165,166,203,202,172,102,103,104,105,106,107,108,109,110,187,186,188,186,185,184,182,183,183,182,181,179,180,180,179,178,174,175,175,174,169,170,167,167,170,173,177,172,176,172,177,140,139,134,129,132,135,140,134,137,136,131,132,129,137,143,142,141,136,146,145,144,142,143,149,148,147,145,146,150,148,149,111,112,113,129,134,128,189,190,191,191,190,194,128,189,191,129,201,204,200,199,195,190,200,194,195,201,198,205,197,193,190,192,197,193,192,198,167,172,166,166,199,196,167,190,193,196,196,199,190,190,189,192,190,195,194,172,202,171,187,185,186,138,133,134,154,151,152
  559. }
  560. }
  561. LayerElementSmoothing: 0 {
  562. Version: 102
  563. Name: ""
  564. MappingInformationType: "ByEdge"
  565. ReferenceInformationType: "Direct"
  566. Smoothing: *196 {
  567. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0
  568. }
  569. }
  570. LayerElementMaterial: 0 {
  571. Version: 101
  572. Name: ""
  573. MappingInformationType: "AllSame"
  574. ReferenceInformationType: "IndexToDirect"
  575. Materials: *1 {
  576. a: 0
  577. }
  578. }
  579. Layer: 0 {
  580. Version: 100
  581. LayerElement: {
  582. Type: "LayerElementNormal"
  583. TypedIndex: 0
  584. }
  585. LayerElement: {
  586. Type: "LayerElementBinormal"
  587. TypedIndex: 0
  588. }
  589. LayerElement: {
  590. Type: "LayerElementTangent"
  591. TypedIndex: 0
  592. }
  593. LayerElement: {
  594. Type: "LayerElementMaterial"
  595. TypedIndex: 0
  596. }
  597. LayerElement: {
  598. Type: "LayerElementSmoothing"
  599. TypedIndex: 0
  600. }
  601. LayerElement: {
  602. Type: "LayerElementUV"
  603. TypedIndex: 0
  604. }
  605. }
  606. }
  607. Geometry: 2463645307184, "Geometry::", "Mesh" {
  608. Vertices: *138 {
  609. a: 196.056640625,1.86517637543616e-014,-196.05615234375,150.19921875,119.781463623047,-199.9990234375,83.3544921875,173.089218139648,-200.0009765625,-0.0029296875,192.114562988281,-199.9990234375,-83.35546875,173.089218139648,-199.9990234375,-150.2021484375,119.781463623047,-199.9990234375,-196.056640625,4.05375612899661e-006,-196.05712890625,196.056640625,3.814697265625e-006,196.05810546875,150.19921875,119.781463623047,200.0009765625,83.3544921875,173.089218139648,200.0009765625,-0.0029296875,192.114562988281,200.0009765625,-83.35546875,173.089218139648,200.0009765625,-150.2021484375,119.781463623047,200.0009765625,-196.056640625,8.10879373602802e-006,196.05810546875,150.19921875,119.781463623047,150.2021484375,83.3544921875,173.089202880859,83.35546875,-0.0009765625,192.114547729492,0,-83.35546875,173.089202880859,-83.3544921875,-150.2021484375,119.781471252441,-150.19921875,150.19921875,119.781463623047,-150.201171875,83.3544921875,173.089202880859,-83.3544921875,-83.357421875,173.089202880859,83.35546875,-150.2021484375,119.781463623047,150.201171875,-199.9990234375,119.781463623047,-150.201171875,-199.9990234375,173.089202880859,-83.3544921875,-199.9990234375,192.114562988281,0.0009765625,-199.9990234375,173.089202880859,83.35546875,-199.9990234375,119.781463623047,150.201171875,200.0009765625,119.781463623047,-150.201171875,200.0009765625,173.089218139648,-83.3544921875,200.0009765625,192.114562988281,0.0009765625,200.0009765625,173.089218139648,83.35546875,200.0009765625,119.781463623047,150.201171875,200,88.009765625,-200,46.830078125,200.208831787109,-200,-46.8330078125,200.208801269531,-200,-200,88.0098876953125,-200,200,88.0101776123047,200,46.830078125,200.208831787109,200,-46.8330078125,200.208740234375,200,-200,88.0106811523438,200,-200,200.208786010742,-46.83203125,-200,200.208755493164,46.83203125,200,200.208755493164,-46.83203125,200,200.208801269531,46.83203125,-0.0029296875,204.850540161133,0.0009765625
  610. }
  611. PolygonVertexIndex: *168 {
  612. a: 19,1,-1,20,2,1,-20,16,3,2,-21,17,4,3,-17,18,5,4,-18,6,5,-19,8,14,-8,9,15,14,-9,10,16,15,-10,11,21,16,-11,12,22,21,-12,13,22,-13,6,18,-24,18,17,24,-24,17,16,25,-25,16,21,26,-26,21,22,27,-27,22,13,-28,30,16,20,-30,31,15,16,-31,32,14,15,-32,7,14,-33,28,19,-1,29,20,19,-29,37,7,32,31,30,29,28,0,33,43,-45,34,45,-44,43,45,-45,33,34,-44,39,38,-46,37,44,-39,41,45,-36,36,41,-36,40,39,-43,45,41,-43,42,39,-46,45,34,-36,45,38,-45,40,13,12,11,10,9,8,7,37,38,-40,40,42,41,36,6,23,24,25,26,27,-14,36,35,34,33,0,1,2,3,4,5,-7
  613. }
  614. Edges: *84 {
  615. a: 1,4,8,12,16,19,24,28,32,36,40,43,0,3,7,11,15,22,25,29,23,26,30,18,21,33,37,14,2,6,10,34,38,41,46,49,53,57,61,64,83,87,69,73,77,80,45,48,52,56,60,66,70,74,81,68,105,130,119,149,113,108,120,117,124,122,96,97,98,101,103,112,115,116,110,121,100,114,125,99,109,135,95,88
  616. }
  617. GeometryVersion: 124
  618. LayerElementNormal: 0 {
  619. Version: 102
  620. Name: ""
  621. MappingInformationType: "ByPolygonVertex"
  622. ReferenceInformationType: "Direct"
  623. Normals: *504 {
  624. a: -0.403118282556534,-0.821573257446289,0.403128892183304,-0.740384817123413,-0.672183215618134,0,-0.621771156787872,-0.476106256246567,0.621870994567871,-0.150518670678139,-0.977080762386322,0.150523096323013,-0.369016617536545,-0.929422795772552,7.74096804434521e-007,-0.740384817123413,-0.672183215618134,0,-0.403118282556534,-0.821573257446289,0.403128892183304,-1.52932193486777e-006,-1,7.01192107044335e-007,-9.77510694610828e-007,-1,-2.21995620108828e-007,-0.369016617536545,-0.929422795772552,7.74096804434521e-007,-0.150518670678139,-0.977080762386322,0.150523096323013,0.150523886084557,-0.977080345153809,0.150520458817482,0.369023710489273,-0.929419934749603,-1.06440609215497e-006,-9.77510694610828e-007,-1,-2.21995620108828e-007,-1.52932193486777e-006,-1,7.01192107044335e-007,0.403118371963501,-0.821577131748199,0.403120934963226,0.740384757518768,-0.672183215618134,2.40771811377272e-008,0.369023710489273,-0.929419934749603,-1.06440609215497e-006,0.150523886084557,-0.977080345153809,0.150520458817482,0.621846139431,-0.476106256246567,0.621795833110809,0.740384757518768,-0.672183215618134,2.40771811377272e-008,0.403118371963501,-0.821577131748199,0.403120934963226,-0.740387380123138,-0.67218029499054,0,-0.403123557567596,-0.821571469306946,-0.403127461671829,-0.621788263320923,-0.476110190153122,-0.621850848197937,-0.369016289710999,-0.929422855377197,-7.74095212818793e-007,-0.150518968701363,-0.977080762386322,-0.150522887706757,-0.403123557567596,-0.821571469306946,-0.403127461671829,-0.740387380123138,-0.67218029499054,0,1.37792835630535e-006,-1,-5.17982755354751e-007,-1.52932193486777e-006,-1,7.01192107044335e-007,-0.150518968701363,-0.977080762386322,-0.150522887706757,-0.369016289710999,-0.929422855377197,-7.74095212818793e-007,0.369019061326981,-0.929421842098236,-2.46741774390102e-006,0.150523483753204,-0.977080464363098,-0.150521233677864,-1.52932193486777e-006,-1,7.01192107044335e-007,1.37792835630535e-006,-1,-5.17982755354751e-007,0.740386366844177,-0.67218154668808,-5.20619823873858e-006,
  625. 0.403131872415543,-0.821572482585907,-0.403116911649704,0.150523483753204,-0.977080464363098,-0.150521233677864,0.369019061326981,-0.929421842098236,-2.46741774390102e-006,0.621859848499298,-0.476102352142334,-0.621785223484039,0.403131872415543,-0.821572482585907,-0.403116911649704,0.740386366844177,-0.67218154668808,-5.20619823873858e-006,0.621846139431,-0.476106256246567,0.621795833110809,0.403118371963501,-0.821577131748199,0.403120934963226,-1.67470334417885e-005,-0.67218005657196,0.740387797355652,0.403118371963501,-0.821577131748199,0.403120934963226,0.150523886084557,-0.977080345153809,0.150520458817482,-2.12950067179918e-006,-0.929421782493591,0.369019210338593,-1.67470334417885e-005,-0.67218005657196,0.740387797355652,0.150523886084557,-0.977080345153809,0.150520458817482,-1.52932193486777e-006,-1,7.01192107044335e-007,-4.85643170122785e-008,-1,5.88873483309271e-008,-2.12950067179918e-006,-0.929421782493591,0.369019210338593,-1.52932193486777e-006,-1,7.01192107044335e-007,0.150523483753204,-0.977080464363098,-0.150521233677864,-4.89874423692527e-007,-0.929421961307526,-0.369018852710724,-4.85643170122785e-008,-1,5.88873483309271e-008,0.150523483753204,-0.977080464363098,-0.150521233677864,0.403131872415543,-0.821572482585907,-0.403116911649704,0,-0.672184228897095,-0.740383863449097,-4.89874423692527e-007,-0.929421961307526,-0.369018852710724,0.403131872415543,-0.821572482585907,-0.403116911649704,0.621859848499298,-0.476102352142334,-0.621785223484039,0,-0.672184228897095,-0.740383863449097,9.71247544612197e-008,-1,-6.8307639367049e-007,-1.52932193486777e-006,-1,7.01192107044335e-007,-0.150518670678139,-0.977080762386322,0.150523096323013,-3.71925580111565e-007,-0.929421544075012,0.369019687175751,-7.58972305447969e-007,-0.929421186447144,-0.369020789861679,-0.150518968701363,-0.977080762386322,-0.150522887706757,-1.52932193486777e-006,-1,7.01192107044335e-007,9.71247544612197e-008,-1,-6.8307639367049e-007,-8.38128107716329e-006,-0.672186195850372,-0.740382134914398,-0.403123557567596,-0.821571469306946,-0.403127461671829,
  626. -0.150518968701363,-0.977080762386322,-0.150522887706757,-7.58972305447969e-007,-0.929421186447144,-0.369020789861679,-0.621788263320923,-0.476110190153122,-0.621850848197937,-0.403123557567596,-0.821571469306946,-0.403127461671829,-8.38128107716329e-006,-0.672186195850372,-0.740382134914398,4.91138045788375e-008,-0.672183752059937,0.74038428068161,-0.403118282556534,-0.821573257446289,0.403128892183304,-0.621771156787872,-0.476106256246567,0.621870994567871,-3.71925580111565e-007,-0.929421544075012,0.369019687175751,-0.150518670678139,-0.977080762386322,0.150523096323013,-0.403118282556534,-0.821573257446289,0.403128892183304,4.91138045788375e-008,-0.672183752059937,0.74038428068161,0.706557214260101,-0.0393435508012772,0.706561505794525,0.706536531448364,-0.0393435508012772,0.706582129001617,0.999612510204315,-0.0278357472270727,1.14834804776365e-007,0.99961256980896,-0.0278357490897179,1.14834811881792e-007,0.99961256980896,-0.0278357490897179,1.14834804776365e-007,0.99961245059967,-0.0278357453644276,1.1483479056551e-007,0.999612510204315,-0.0278357472270727,1.14834804776365e-007,0.706547558307648,-0.03940399736166,-0.706567645072937,0.706558763980865,-0.0394040010869503,-0.706556558609009,0.999612510204315,-0.0278357472270727,1.14834811881792e-007,0.999612510204315,-0.0278357472270727,1.14834797670937e-007,0.192819520831108,0.960775911808014,-0.199324816465378,-1.22135659808009e-007,1,1.57720876359235e-007,0.199324309825897,0.960775256156921,-0.192823365330696,0.199324309825897,0.960775256156921,-0.192823365330696,-1.22135659808009e-007,1,1.57720876359235e-007,0.19932447373867,0.960775136947632,0.192823454737663,0.508743286132813,0.694517195224762,-0.508749544620514,0.192819520831108,0.960775911808014,-0.199324816465378,0.199324309825897,0.960775256156921,-0.192823365330696,-0.192824900150299,0.96077436208725,0.199326768517494,0.19281955063343,0.960775673389435,0.199325367808342,-1.22135659808009e-007,1,1.57720876359235e-007,0.508742392063141,0.694518446922302,0.508748829364777,0.19932447373867,0.960775136947632,0.192823454737663,
  627. 0.19281955063343,0.960775673389435,0.199325367808342,-0.199327081441879,0.960774838924408,-0.192822337150574,-1.22135659808009e-007,1,1.57720876359235e-007,-0.192825153470039,0.960774183273315,-0.199327021837235,-0.508750200271606,0.694514155387878,-0.508746862411499,-0.199327081441879,0.960774838924408,-0.192822337150574,-0.192825153470039,0.960774183273315,-0.199327021837235,-0.508748292922974,0.694516897201538,0.508745074272156,-0.192824900150299,0.96077436208725,0.199326768517494,-0.199326530098915,0.960774958133698,0.192822024226189,-1.22135659808009e-007,1,1.57720876359235e-007,-0.199327081441879,0.960774838924408,-0.192822337150574,-0.199326530098915,0.960774958133698,0.192822024226189,-0.199326530098915,0.960774958133698,0.192822024226189,-0.192824900150299,0.96077436208725,0.199326768517494,-1.22135659808009e-007,1,1.57720876359235e-007,-1.22135659808009e-007,1,1.57720876359235e-007,0.192819520831108,0.960775911808014,-0.199324816465378,-0.192825153470039,0.960774183273315,-0.199327021837235,-1.22135659808009e-007,1,1.57720876359235e-007,0.19281955063343,0.960775673389435,0.199325367808342,0.19932447373867,0.960775136947632,0.192823454737663,-0.706555426120758,-0.0394121296703815,0.706559360027313,-0.706555008888245,-0.0394121333956718,0.706559836864471,-2.77332475207004e-007,-0.0278259739279747,0.999612808227539,-2.77332475207004e-007,-0.0278259702026844,0.999612748622894,-2.77332446785294e-007,-0.0278259720653296,0.999612748622894,-2.77332446785294e-007,-0.0278259720653296,0.999612748622894,-2.77332475207004e-007,-0.0278259702026844,0.999612748622894,0.706536531448364,-0.0393435508012772,0.706582129001617,0.706557214260101,-0.0393435508012772,0.706561505794525,-2.77332503628713e-007,-0.0278259720653296,0.999612748622894,-2.77332475207004e-007,-0.0278259683400393,0.999612748622894,-0.706555426120758,-0.0394121296703815,0.706559360027313,-0.999609768390656,-0.0279328655451536,2.21001400291243e-007,-0.999609887599945,-0.0279328711330891,2.21001414502098e-007,-0.706552922725677,-0.039472907781601,-0.706558525562286,
  628. -0.706556856632233,-0.0394729115068913,-0.706554591655731,-0.999609708786011,-0.0279328674077988,2.21001357658679e-007,-0.999609768390656,-0.0279328692704439,2.21001386080388e-007,-0.999609768390656,-0.0279328674077988,2.21001386080388e-007,-0.999609768390656,-0.0279328674077988,2.21001386080388e-007,-0.9996098279953,-0.0279328674077988,2.21001400291243e-007,-0.706555008888245,-0.0394121333956718,0.706559836864471,-0.706552922725677,-0.039472907781601,-0.706558525562286,8.04271530796541e-006,-0.0279117841273546,-0.999610424041748,8.04271530796541e-006,-0.0279117841273546,-0.999610424041748,0.706558763980865,-0.0394040010869503,-0.706556558609009,0.706547558307648,-0.03940399736166,-0.706567645072937,8.04271530796541e-006,-0.0279117822647095,-0.999610364437103,8.04271439847071e-006,-0.0279117859899998,-0.999610364437103,8.04271530796541e-006,-0.0279117822647095,-0.999610424041748,8.04271530796541e-006,-0.0279117859899998,-0.999610424041748,8.04271439847071e-006,-0.0279117822647095,-0.999610364437103,-0.706556856632233,-0.0394729115068913,-0.706554591655731
  629. }
  630. NormalsW: *168 {
  631. 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
  632. }
  633. }
  634. LayerElementBinormal: 0 {
  635. Version: 102
  636. Name: "map1"
  637. MappingInformationType: "ByPolygonVertex"
  638. ReferenceInformationType: "Direct"
  639. Binormals: *504 {
  640. a: 0.897753894329071,-0.440497606992722,-1.49011626149331e-007,0.672183275222778,-0.740384876728058,0,0.607960999011993,-0.793966889381409,-1.49011611938477e-008,0.988341450691223,-0.152253955602646,-3.83891210731235e-006,0.929422795772552,-0.369016617536545,-2.78434754363843e-007,0.672183275222778,-0.740384876728058,0,0.897753894329071,-0.440497606992722,-1.49011626149331e-007,1,-1.52932193486777e-006,-5.39733449045343e-008,1,-9.77509444055613e-007,-5.46833780390443e-006,0.929422795772552,-0.369016617536545,-2.78434754363843e-007,0.988341450691223,-0.152253955602646,-3.83891210731235e-006,0.988340795040131,0.152258083224297,-3.45148146152496e-006,0.929420053958893,0.369023740291595,2.07484077918707e-007,1,-9.77509444055613e-007,-5.46833780390443e-006,1,-1.52932193486777e-006,-5.39733449045343e-008,0.897754609584808,0.440495997667313,1.63912773132324e-007,0.672183275222778,0.740384817123413,1.00957521453893e-007,0.929420053958893,0.369023740291595,2.07484077918707e-007,0.988340795040131,0.152258083224297,-3.45148146152496e-006,0.607914745807648,0.794002413749695,1.04308142567788e-007,0.672183275222778,0.740384817123413,1.00957521453893e-007,0.897754609584808,0.440495997667313,1.63912773132324e-007,0.672180354595184,-0.740387439727783,-8.5756573753315e-007,0.897751271724701,-0.440502673387527,-5.96046390910487e-007,0.607954144477844,-0.793972134590149,-8.64267349243164e-007,0.929422974586487,-0.369016319513321,-4.9816833325167e-007,0.988341391086578,-0.152254179120064,3.3304099815723e-006,0.897751271724701,-0.440502673387527,-5.96046390910487e-007,0.672180354595184,-0.740387439727783,-8.5756573753315e-007,1,1.37792778787116e-006,1.08963877210044e-006,1,-1.52932193486777e-006,-5.39733449045343e-008,0.988341391086578,-0.152254179120064,3.3304099815723e-006,0.929422974586487,-0.369016319513321,-4.9816833325167e-007,0.929421842098236,0.369019061326981,-1.0336054401705e-005,0.988340616226196,0.152259305119514,-7.50087110645836e-006,1,-1.52932193486777e-006,-5.39733449045343e-008,1,1.37792778787116e-006,1.08963877210044e-006,
  641. 0.67218154668808,0.740386366844177,2.14385408980888e-007,0.897746920585632,0.4405118227005,-4.91738364871708e-006,0.988340616226196,0.152259305119514,-7.50087110645836e-006,0.929421842098236,0.369019061326981,-1.0336054401705e-005,0.607903361320496,0.794010996818542,2.08616228292158e-007,0.897746920585632,0.4405118227005,-4.91738364871708e-006,0.67218154668808,0.740386366844177,2.14385408980888e-007,2.39610708376858e-005,-0.793967008590698,-0.607960879802704,2.34097242355347e-005,-0.440488934516907,-0.897758066654205,2.64775735558942e-005,-0.740387797355652,-0.67218005657196,2.34097242355347e-005,-0.440488934516907,-0.897758066654205,-1.18650507374696e-006,-0.15225538611412,-0.988341212272644,1.19237993203569e-005,-0.369019210338593,-0.929421782493591,2.64775735558942e-005,-0.740387797355652,-0.67218005657196,-1.18650507374696e-006,-0.15225538611412,-0.988341212272644,-5.39550839562253e-008,-7.01192050200916e-007,-1,-1.5169755442912e-006,-5.88872737239399e-008,-1,1.19237993203569e-005,-0.369019210338593,-0.929421782493591,-5.39550839562253e-008,-7.01192050200916e-007,-1,-8.25151801109314e-007,0.152255848050117,-0.988341212272644,1.23128700124653e-007,0.369018852710724,-0.929421961307526,-1.5169755442912e-006,-5.88872737239399e-008,-1,-8.25151801109314e-007,0.152255848050117,-0.988341212272644,7.45058130746656e-008,0.44049671292305,-0.897754311561584,0,0.740383923053741,-0.67218428850174,1.23128700124653e-007,0.369018852710724,-0.929421961307526,7.45058130746656e-008,0.44049671292305,-0.897754311561584,0,0.793976068496704,-0.607949197292328,0,0.740383923053741,-0.67218428850174,1.32432626287482e-006,6.83076507357328e-007,-1,-5.39550839562253e-008,-7.01192050200916e-007,-1,6.91041407208104e-007,-0.152257859706879,-0.988340854644775,-4.98156225603452e-007,-0.369019716978073,-0.929421663284302,-6.03616990701994e-006,0.369020789861679,-0.929421186447144,8.94069557944022e-007,0.152257412672043,-0.988340854644775,-5.39550839562253e-008,-7.01192050200916e-007,-1,1.32432626287482e-006,6.83076507357328e-007,-1,-1.29665195345297e-005,0.740382134914398,-0.672186195850372,
  642. -1.16229057312012e-005,0.440510988235474,-0.897747218608856,8.94069557944022e-007,0.152257412672043,-0.988340854644775,-6.03616990701994e-006,0.369020789861679,-0.929421186447144,-1.17123126983643e-005,0.794007778167725,-0.607907652854919,-1.16229057312012e-005,0.440510988235474,-0.897747218608856,-1.29665195345297e-005,0.740382134914398,-0.672186195850372,-8.57516056385066e-007,-0.740384340286255,-0.672183811664581,-6.40749988178868e-007,-0.440506637096405,-0.897749423980713,-8.49366188049316e-007,-0.794013619422913,-0.607900023460388,-4.98156225603452e-007,-0.369019716978073,-0.929421663284302,6.91041407208104e-007,-0.152257859706879,-0.988340854644775,-6.40749988178868e-007,-0.440506637096405,-0.897749423980713,-8.57516056385066e-007,-0.740384340286255,-0.672183811664581,0.694447576999664,-0.153459832072258,-0.702988505363464,0.704945027828217,-0.0485137440264225,-0.707600891590118,0.00336209265515208,0.120732381939888,-0.992679417133331,-0.00551281124353409,-0.19797520339489,-0.980191588401794,4.45663687287379e-007,1.18788320833119e-005,-1,0.00824648607522249,0.296136498451233,-0.955110132694244,-0.00053866533562541,-0.019348194822669,-0.999812722206116,-0.706999182701111,0.00401632161810994,-0.707203030586243,-0.707066118717194,0.00139567255973816,-0.707146167755127,0.00824492797255516,0.296080559492111,-0.955127477645874,-0.00792557932436466,-0.28462028503418,-0.95860755443573,-0.713216960430145,-0.00228205323219299,-0.7009397149086,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.700765609741211,0.00220833695493639,-0.71338814496994,-0.700765609741211,0.00220833695493639,-0.71338814496994,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.672978341579437,0.277242243289948,-0.685738205909729,-0.707104206085205,-1.00880861282349e-005,-0.707109332084656,-0.713216960430145,-0.00228205323219299,-0.7009397149086,-0.700765609741211,0.00220833695493639,-0.71338814496994,-0.713449656963348,0.00218367576599121,-0.700703144073486,-0.685585260391235,0.277241617441177,-0.673134386539459,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,
  643. -0.490923702716827,0.719474911689758,-0.491273611783981,-0.672978341579437,0.277242243289948,-0.685738205909729,-0.685585260391235,0.277241617441177,-0.673134386539459,-0.673241198062897,-0.277245819568634,-0.685478746891022,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.685464382171631,-0.277247935533524,-0.67325484752655,-0.491085320711136,-0.719479084014893,-0.491106033325195,-0.673241198062897,-0.277245819568634,-0.685478746891022,-0.685464382171631,-0.277247935533524,-0.67325484752655,-0.70710563659668,-1.60932540893555e-006,-0.707107961177826,-0.713449656963348,0.00218367576599121,-0.700703144073486,-0.700930953025818,-0.00227789580821991,-0.713225483894348,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.673241198062897,-0.277245819568634,-0.685478746891022,-0.700930953025818,-0.00227789580821991,-0.713225483894348,-0.700930953025818,-0.00227789580821991,-0.713225483894348,-0.713449656963348,0.00218367576599121,-0.700703144073486,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.713216960430145,-0.00228205323219299,-0.7009397149086,-0.685464382171631,-0.277247935533524,-0.67325484752655,-0.707105994224548,2.51627696457035e-008,-0.707107603549957,-0.685585260391235,0.277241617441177,-0.673134386539459,-0.672978341579437,0.277242243289948,-0.685738205909729,-0.706557214260101,-0.0163728948682547,-0.707466542720795,-0.698424816131592,-0.121926620602608,-0.705221116542816,-0.993909478187561,-0.110157020390034,-0.00306668924167752,-0.955119431018829,0.296106338500977,0.00824237335473299,-1,3.34276933244837e-006,-1.84388056823082e-007,-0.98018205165863,-0.198022127151489,-0.0055125649087131,-0.980525732040405,0.196314811706543,0.00546449376270175,-0.704399406909943,0.0568802505731583,0.707521140575409,-0.705508232116699,-0.116895228624344,0.698994874954224,-0.958583056926727,-0.284702926874161,-0.00792547035962343,-0.955128312110901,0.296077907085419,0.00824158173054457,-0.706557214260101,-0.0163728948682547,-0.707466542720795,
  644. 0.00827296543866396,-0.296065181493759,-0.955132007598877,-0.00795281678438187,0.284593105316162,-0.95861542224884,0.698962986469269,0.117128491401672,-0.705501019954681,0.707548260688782,-0.0568548068404198,-0.704374253749847,0.00548318587243557,-0.196229860186577,-0.980542600154877,-0.00553138507530093,0.197939217090607,-0.980198740959167,-1.12847180844255e-006,3.24717839248478e-005,-1,0.0082735912874341,-0.296087563037872,-0.955124974250793,-0.00125644239597023,0.0449553318321705,-0.998988211154938,-0.707634329795837,0.0311489198356867,-0.705891966819763,-0.702983915805817,0.153744474053383,0.694389164447784,-0.958583950996399,0.284698903560638,-0.00795726384967566,-0.955113112926483,-0.296126216650009,0.00826094765216112,-0.707066118717194,0.00139567255973816,-0.707146167755127,-0.706999182701111,0.00401632161810994,-0.707203030586243,-0.999676167964935,0.0254378449171782,-0.000718335504643619,-0.955126464366913,-0.296083182096481,0.00825974717736244,-1,7.63894131523557e-005,-1.01788455140195e-005,-0.98019140958786,0.197975039482117,-0.00553587777540088,-0.992674708366394,-0.120771005749702,0.00336426100693643,-0.707627058029175,0.048487976193428,0.704920470714569
  645. }
  646. BinormalsW: *168 {
  647. 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
  648. }
  649. }
  650. LayerElementTangent: 0 {
  651. Version: 102
  652. Name: "map1"
  653. MappingInformationType: "ByPolygonVertex"
  654. ReferenceInformationType: "Direct"
  655. Tangents: *504 {
  656. a: -0.177577421069145,-0.361910432577133,-0.915143251419067,0,0,-1,-0.493744999170303,-0.378073304891586,-0.783119678497314,-0.022921483963728,-0.148767605423927,-0.988606452941895,-5.44438194083341e-007,-6.16716192780586e-007,-1,0,0,-1,-0.177577421069145,-0.361910432577133,-0.915143251419067,-5.39744178240653e-008,-7.01192050200916e-007,-1,-5.46833780390443e-006,2.22000963390201e-007,-1,-5.44438194083341e-007,-6.16716192780586e-007,-1,-0.022921483963728,-0.148767605423927,-0.988606452941895,0.0229145865887403,-0.148766040802002,-0.988606989383698,-1.99951273316401e-007,1.06584684544941e-006,-1,-5.46833780390443e-006,2.22000963390201e-007,-1,-5.39744178240653e-008,-7.01192050200916e-007,-1,0.177573308348656,-0.361903637647629,-0.915146768093109,8.56883346500581e-008,5.85631241278861e-008,-1,-1.99951273316401e-007,1.06584684544941e-006,-1,0.0229145865887403,-0.148766040802002,-0.988606989383698,0.493707358837128,-0.377998739480972,-0.783179402351379,8.56883346500581e-008,5.85631241278861e-008,-1,0.177573308348656,-0.361903637647629,-0.915146768093109,-5.7643882200864e-007,6.34930870546668e-007,-1,0.177578255534172,0.361908465623856,-0.91514390707016,0.49373185634613,0.378057360649109,-0.783135712146759,-1.77355317987349e-007,9.03293994269916e-007,-1,0.0229209903627634,0.148767486214638,-0.988606452941895,0.177578255534172,0.361908465623856,-0.91514390707016,-5.7643882200864e-007,6.34930870546668e-007,-1,1.08963808997942e-006,5.17984233283642e-007,-1,-5.39744178240653e-008,-7.01192050200916e-007,-1,0.0229209903627634,0.148767486214638,-0.988606452941895,-1.77355317987349e-007,9.03293994269916e-007,-1,-1.05170784081565e-005,-1.52092889038613e-006,-1,-0.022925591096282,0.148765131831169,-0.988606810569763,-5.39744178240653e-008,-7.01192050200916e-007,-1,1.08963808997942e-006,5.17984233283642e-007,-1,-3.71049236491672e-006,3.65823848369473e-006,-1,-0.177581772208214,0.361894935369492,-0.915148496627808,-0.022925591096282,0.148765131831169,-0.988606810569763,-1.05170784081565e-005,-1.52092889038613e-006,-1,
  657. -0.493704289197922,0.37798547744751,-0.783187925815582,-0.177581772208214,0.361894935369492,-0.915148496627808,-3.71049236491672e-006,3.65823848369473e-006,-1,-0.78313946723938,-0.378073006868362,0.493713855743408,-0.91514790058136,-0.361912190914154,0.177549943327904,-1,-8.34665024740389e-006,-3.01969903375721e-005,-0.91514790058136,-0.361912190914154,0.177549943327904,-0.98860639333725,-0.1487687677145,0.0229192301630974,-1,-2.42090686697338e-006,-1.18680654850323e-005,-1,-8.34665024740389e-006,-3.01969903375721e-005,-0.98860639333725,-0.1487687677145,0.0229192301630974,-1,1.52932193486777e-006,5.39540110366943e-008,-1,4.85644058301205e-008,1.5169755442912e-006,-1,-2.42090686697338e-006,-1.18680654850323e-005,-1,1.52932193486777e-006,5.39540110366943e-008,-0.988606452941895,-0.148768693208694,-0.0229172743856907,-1,5.00736859976314e-007,6.63343939777405e-008,-1,4.85644058301205e-008,1.5169755442912e-006,-0.988606452941895,-0.148768693208694,-0.0229172743856907,-0.915141940116882,-0.361913293600082,-0.177578300237656,-1,0,0,-1,5.00736859976314e-007,6.63343939777405e-008,-0.915141940116882,-0.361913293600082,-0.177578300237656,-0.783128559589386,-0.378059178590775,-0.493741750717163,-1,0,0,-1,-9.71238591773727e-008,-1.32432637656166e-006,-1,1.52932193486777e-006,5.39540110366943e-008,-0.988607168197632,0.14876364171505,-0.0229183249175549,-1,5.29505086888094e-007,3.25749255125629e-007,-1,-1.52206700931856e-006,5.89022010899498e-006,-0.988607227802277,0.148764193058014,0.0229167565703392,-1,1.52932193486777e-006,5.39540110366943e-008,-1,-9.71238591773727e-008,-1.32432637656166e-006,-1,-3.96639825339662e-006,1.4921266483725e-005,-0.915145516395569,0.361898362636566,0.177589908242226,-0.988607227802277,0.148764193058014,0.0229167565703392,-1,-1.52206700931856e-006,5.89022010899498e-006,-0.783185362815857,0.377982586622238,0.493710279464722,-0.915145516395569,0.361898362636566,0.177589908242226,-1,-3.96639825339662e-006,1.4921266483725e-005,-1,6.01877900407999e-007,6.12771373198484e-007,-0.91514790058136,0.36189940571785,-0.17757573723793,
  658. -0.783198952674866,0.377975225448608,-0.493694365024567,-1,5.29505086888094e-007,3.25749255125629e-007,-0.988607168197632,0.14876364171505,-0.0229183249175549,-0.91514790058136,0.36189940571785,-0.17757573723793,-1,6.01877900407999e-007,6.12771373198484e-007,-0.136086881160736,-0.987371385097504,0.0811060965061188,-0.0621184706687927,-0.998047351837158,0.00654168985784054,-0.0276319589465857,-0.992294669151306,-0.120779164135456,-0.0272843912243843,-0.979811728000641,0.198051929473877,-0.0278357490897179,-0.999612510204315,-1.18866364573478e-005,-0.026586165651679,-0.954739987850189,-0.296251267194748,-0.0278305336833,-0.999425292015076,0.0193556919693947,-0.0307044312357903,-0.999215304851532,0.0250208713114262,-0.0288505312055349,-0.99922239780426,0.0268751308321953,-0.026586651802063,-0.954757273197174,-0.296195298433304,-0.0266835894435644,-0.95823609828949,0.284730613231659,0.673900842666626,-0.277316629886627,-0.684801578521729,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.684979856014252,-0.277319580316544,-0.673718392848969,0.684979856014252,-0.277319580316544,-0.673718392848969,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.712299048900604,-0.00691839633509517,-0.70184201002121,0.49110472202301,-0.719476103782654,-0.491090923547745,0.673900842666626,-0.277316629886627,-0.684801578521729,0.684979856014252,-0.277319580316544,-0.673718392848969,0.67365288734436,0.27732264995575,-0.685043096542358,0.701992511749268,0.00686105526983738,-0.712151348590851,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.707230627536774,-0.000174857166712172,-0.706982970237732,0.712299048900604,-0.00691839633509517,-0.70184201002121,0.701992511749268,0.00686105526983738,-0.712151348590851,0.712049901485443,0.00681854924187064,-0.702095746994019,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.702108919620514,-0.00681110471487045,-0.712036907672882,0.707112789154053,1.21717175716185e-005,-0.707100808620453,0.712049901485443,0.00681854924187064,-0.702095746994019,0.702108919620514,-0.00681110471487045,-0.712036907672882,
  659. 0.491097569465637,0.719476401805878,-0.49109759926796,0.67365288734436,0.27732264995575,-0.685043096542358,0.684810042381287,0.277319729328156,-0.673891007900238,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.712049901485443,0.00681854924187064,-0.702095746994019,0.684810042381287,0.277319729328156,-0.673891007900238,0.684810042381287,0.277319729328156,-0.673891007900238,0.67365288734436,0.27732264995575,-0.685043096542358,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.673900842666626,-0.277316629886627,-0.684801578521729,0.702108919620514,-0.00681110471487045,-0.712036907672882,0.707107603549957,1.97888439856797e-007,-0.707105994224548,0.701992511749268,0.00686105526983738,-0.712151348590851,0.712299048900604,-0.00691839633509517,-0.70184201002121,-0.0394511818885803,0.999088883399963,0.016278563067317,-0.113942697644234,0.991756319999695,-0.05862145870924,-0.110199697315693,0.993524610996246,0.0276564676314592,0.296221017837524,0.954749524593353,0.0265772081911564,3.33634375238034e-006,0.999612748622894,0.0278259702026844,-0.198098823428154,0.979802429676056,0.0272744633257389,0.196390822529793,0.980145990848541,0.0272841341793537,0.0680269524455071,0.997605502605438,-0.0124744027853012,-0.0550927072763443,0.992364704608917,0.110350377857685,-0.284813195466995,0.958211839199066,0.0266734231263399,0.296192586421967,0.954758405685425,0.0265774503350258,-0.0394511818885803,0.999088883399963,0.016278563067317,-0.0266796369105577,0.954759240150452,-0.296180725097656,-0.0267768185585737,0.958241283893585,0.284704178571701,-0.110606320202351,0.99233204126358,0.0551673695445061,0.0123673276975751,0.997601926326752,-0.0681001394987106,-0.0273894090205431,0.980159938335419,-0.196306452155113,-0.0273797176778317,0.979816198348999,0.198016464710236,-0.0279328674077988,0.9996098279953,3.24906359310262e-005,-0.0266794450581074,0.954752326011658,-0.296203136444092,-0.0279045943170786,0.998598396778107,0.0449728854000568,-0.00581212854012847,0.998737394809723,0.0498977936804295,
  660. -0.0812198892235756,-0.98732191324234,0.136377424001694,-0.284810066223145,-0.958210527896881,0.0267534982413054,0.296241402626038,-0.954740881919861,0.026661291718483,-0.0288505312055349,-0.99922239780426,0.0268751308321953,-0.0307044312357903,-0.999215304851532,0.0250208713114262,-0.0254479832947254,-0.999286711215973,0.027902539819479,0.296198338270187,-0.954754173755646,0.0266616623848677,-7.66437660786323e-005,-0.999610424041748,0.0279117841273546,-0.198052451014519,-0.979809641838074,0.0273573026061058,0.120817840099335,-0.992287874221802,0.0277082901448011,-0.00643413700163364,-0.998043477535248,0.0621916092932224
  661. }
  662. TangentsW: *168 {
  663. 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
  664. }
  665. }
  666. LayerElementUV: 0 {
  667. Version: 101
  668. Name: "map1"
  669. MappingInformationType: "ByPolygonVertex"
  670. ReferenceInformationType: "IndexToDirect"
  671. UV: *196 {
  672. a: 0.999999403953552,1.60481059551239,0.875447392463684,1.26250064373016,0.999999403953552,1.26250064373016,0.708262205123901,1.03275179862976,0.999999403953552,1.03275191783905,0.499780982732773,0.802421808242798,0.999999403953552,0.802422404289246,0.708258867263794,0.572092950344086,0.999999403953552,0.572092890739441,0.875443935394287,0.342337101697922,0.999999403953552,0.342337071895599,0.999999403953552,3.26931476593018e-005,-0.000433812325354666,1.60481035709381,0.12411455065012,1.26250016689301,-0.000433812703704461,1.26250004768372,0.291303038597107,1.03275167942047,-0.000433812703704461,1.03275156021118,-0.000433812703704461,0.802422344684601,0.291306793689728,0.57209300994873,-0.000433812703704461,0.57209300994873,0.124118395149708,0.342337161302567,-0.000433812703704461,0.342337191104889,-0.000433812325354666,3.26931476593018e-005,0.999999403953552,1.60481059551239,0.875451266765594,1.26250064373016,0.999999403953552,1.26250064373016,0.708263218402863,1.03275179862976,0.999999403953552,1.03275191783905,0.499788284301758,0.802423477172852,0.999999403953552,0.802422404289246,0.70826780796051,0.572092950344086,0.999999403953552,0.572092890739441,0.875453412532806,0.342337071895599,0.999999403953552,0.342337071895599,0.999999403953552,3.26931476593018e-005,-0.000433812703704461,0.802422344684601,0.291307419538498,0.57209300994873,-0.000433812703704461,0.57209300994873,0.124122306704521,0.342337161302567,-0.000433812703704461,0.342337191104889,-0.000433812325354666,3.26931476593018e-005,-0.000433812325354666,1.60481035709381,0.124124869704247,1.26250016689301,-0.000433812703704461,1.26250004768372,0.291312336921692,1.03275167942047,-0.000433812703704461,1.03275156021118,1.79096579551697,0.512055814266205,1.57356119155884,0.521872937679291,1.51815140247345,0.444553047418594,1.39673805236816,0.336895346641541,1.30246329307556,0.281495124101639,1.35340666770935,0.202654108405113,1.30246424674988,0.123812712728977,1.3967399597168,0.0684090182185173,1.51815474033356,-0.0392469726502895,1.39674258232117,
  673. -0.307311505079269,1.573566198349,-0.119449205696583,1.51815593242645,-0.19965372979641,1.30246794223785,-0.362713992595673,1.69635581970215,-0.120256900787354,1.35341131687164,-0.441557168960571,1.30246901512146,-0.520396173000336,1.3967444896698,-0.575799763202667,1.51815938949585,-0.683453738689423,1.57357025146484,-0.760773539543152,1.79097473621368,-0.750954806804657,-0.0600059702992439,-0.771299362182617,0.153820142149925,-0.760782182216644,0.209230571985245,-0.683459460735321,0.330644845962524,-0.575805008411407,0.42492014169693,-0.520400702953339,0.37397712469101,-0.441557228565216,0.424919724464417,-0.362718194723129,0.330644845962524,-0.307316362857819,0.209230571985245,-0.199659466743469,0.330644428730011,0.0683972835540771,0.153820529580116,-0.119458436965942,0.209230571985245,-0.0392574667930603,0.424919724464417,0.123801738023758,-0.0184962302446365,-0.125559449195862,0.37397712469101,0.202640414237976,0.424919724464417,0.281483948230743,0.330644428730011,0.336885750293732,0.209230571985245,0.444542646408081,0.153820142149925,0.521864295005798,-0.0600068047642708,0.532381296157837,1.26463115215302,0.123812288045883,0.863685607910156,-0.119452849030495,1.26463794708252,-0.362714439630508,1.10695040225983,0.281493574380875,0.620428264141083,0.281485587358475,1.10672187805176,-0.520686030387878,0.620857954025269,-0.520811915397644,0.462749630212784,0.123802296817303,0.462749809026718,-0.362717628479004,-0.0135507807135582,-0.0971404016017914,0.864228904247284,-0.893857002258301,0.863686800003052,0.623706698417664
  674. }
  675. UVIndex: *168 {
  676. a: 1,2,0,3,4,2,1,5,6,4,3,7,8,6,5,9,10,8,7,11,10,9,14,13,12,16,15,13,14,17,5,15,16,19,18,5,17,21,20,18,19,22,20,21,23,24,25,24,26,27,25,26,28,29,27,28,30,31,29,30,32,33,31,32,34,33,35,28,44,45,37,36,28,35,39,38,36,37,40,38,39,43,42,41,45,44,42,43,64,65,63,62,60,55,57,59,56,58,61,86,87,88,88,87,91,56,86,88,94,92,87,96,91,92,90,87,89,97,90,89,76,94,93,87,90,93,93,94,87,87,86,89,87,92,91,76,95,74,73,71,69,68,66,67,70,72,76,78,81,84,85,83,82,80,75,77,79,47,50,52,56,59,54,53,51,49,48,46
  677. }
  678. }
  679. LayerElementSmoothing: 0 {
  680. Version: 102
  681. Name: ""
  682. MappingInformationType: "ByEdge"
  683. ReferenceInformationType: "Direct"
  684. Smoothing: *84 {
  685. a: 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  686. }
  687. }
  688. LayerElementMaterial: 0 {
  689. Version: 101
  690. Name: ""
  691. MappingInformationType: "AllSame"
  692. ReferenceInformationType: "IndexToDirect"
  693. Materials: *1 {
  694. a: 0
  695. }
  696. }
  697. Layer: 0 {
  698. Version: 100
  699. LayerElement: {
  700. Type: "LayerElementNormal"
  701. TypedIndex: 0
  702. }
  703. LayerElement: {
  704. Type: "LayerElementBinormal"
  705. TypedIndex: 0
  706. }
  707. LayerElement: {
  708. Type: "LayerElementTangent"
  709. TypedIndex: 0
  710. }
  711. LayerElement: {
  712. Type: "LayerElementMaterial"
  713. TypedIndex: 0
  714. }
  715. LayerElement: {
  716. Type: "LayerElementSmoothing"
  717. TypedIndex: 0
  718. }
  719. LayerElement: {
  720. Type: "LayerElementUV"
  721. TypedIndex: 0
  722. }
  723. }
  724. }
  725. Geometry: 2463645329712, "Geometry::", "Mesh" {
  726. Vertices: *24 {
  727. a: 200.001953125,158.385223388672,-107.713623046875,200.0009765625,180.054672241211,-121.874389648438,200.0009765625,192.114562988281,-0.442626953125,200.0009765625,217.783386230469,-0.442626953125,107.853515625,158.385223388672,-107.576904296875,122.0107421875,180.054702758789,-121.736328125,0.5810546875,192.114562988281,-0.3079833984375,0.5810546875,217.783386230469,-0.3079833984375
  728. }
  729. PolygonVertexIndex: *24 {
  730. a: 2,0,1,-4,6,4,0,-3,5,7,3,-2,4,5,1,-1,6,7,5,-5,3,7,6,-3
  731. }
  732. Edges: *12 {
  733. a: 5,1,11,3,7,0,9,2,4,8,12,16
  734. }
  735. GeometryVersion: 124
  736. LayerElementNormal: 0 {
  737. Version: 102
  738. Name: ""
  739. MappingInformationType: "ByVertice"
  740. ReferenceInformationType: "Direct"
  741. Normals: *24 {
  742. a: 0.199314221739769,-0.964027523994446,0.175854951143265,0.140284985303879,0.901956915855408,-0.408404022455215,0.187222123146057,-0.826652944087982,0.530653178691864,0.14051678776741,0.990054607391357,-0.00684519251808524,-0.161414593458176,-0.983149170875549,0.0858089029788971,-0.0745101347565651,0.884971439838409,-0.459645211696625,-0.346565186977386,-0.828200221061707,0.440428078174591,-0.282650649547577,0.959123969078064,-0.0137725146487355
  743. }
  744. NormalsW: *8 {
  745. a: 1,1,1,1,1,1,1,1
  746. }
  747. }
  748. LayerElementBinormal: 0 {
  749. Version: 102
  750. Name: "map1"
  751. MappingInformationType: "ByPolygonVertex"
  752. ReferenceInformationType: "Direct"
  753. Binormals: *72 {
  754. a: 0.492325663566589,0.546424448490143,0.677521824836731,0.979632556438446,0.191555082798004,-0.0602219589054585,-0.989964246749878,0.134881556034088,-0.0421635657548904,-0.88607257604599,0.128837451338768,0.445282280445099,-0.855849623680115,0.471365362405777,0.212922841310501,-0.00435102730989456,0.0876571983098984,0.996141254901886,0.00145950901787728,0.179747447371483,0.983711779117584,0.000908255577087402,0.540350735187531,0.841439425945282,0.990689516067505,0.118355065584183,0.0672789290547371,0.639669954776764,0.17777045071125,-0.747810184955597,-0.88607257604599,0.128837451338768,0.445282280445099,0.00161295756697655,0.412274301052094,0.91105842590332,0.0204673931002617,-0.0902653485536575,-0.995707452297211,0.254290282726288,0.462550222873688,0.849343240261078,0.00161295756697655,0.412274271249771,0.911058366298676,0.00754209887236357,-0.177941173315048,-0.984012305736542,-0.855849623680115,0.471365362405777,0.212922841310501,0.639669954776764,0.17777045071125,-0.747810184955597,0.254290282726288,0.462550222873688,0.849343240261078,-0.00435102730989456,0.0876571983098984,0.996141254901886,-0.88607257604599,0.128837451338768,0.445282280445099,0.639669954776764,0.17777045071125,-0.747810184955597,-0.281614631414413,0.539731383323669,0.793336927890778,0.492325663566589,0.546424448490143,0.677521824836731
  755. }
  756. BinormalsW: *24 {
  757. 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
  758. }
  759. }
  760. LayerElementTangent: 0 {
  761. Version: 102
  762. Name: "map1"
  763. MappingInformationType: "ByPolygonVertex"
  764. ReferenceInformationType: "Direct"
  765. Tangents: *72 {
  766. a: 0.850037217140198,-0.134407088160515,-0.509285151958466,-0.0243697203695774,-0.184276297688484,-0.982572317123413,-0.017056442797184,-0.410220265388489,-0.911826968193054,-0.441735684871674,0.0565042831003666,-0.895364105701447,0.383945286273956,0.303148537874222,0.87217378616333,0.986877083778381,-0.160418346524239,0.0184268578886986,0.979934632778168,0.195811122655869,-0.0372332371771336,0.982317209243774,0.157054111361504,-0.101916432380676,-0.113941267132759,0.450352668762207,0.885550558567047,0.714794397354126,0.2201789021492,0.663769721984863,-0.441735684871674,0.0565042831003666,-0.895364105701447,-0.990109920501709,0.128466561436653,-0.0563810802996159,0.986674427986145,-0.158965423703194,0.0346926413476467,0.964253425598145,-0.053598627448082,-0.259504318237305,0.990109860897064,-0.128466546535492,0.0563810728490353,0.979906678199768,0.19745397567749,-0.0281954184174538,0.383945286273956,0.303148537874222,0.87217378616333,0.714794397354126,0.2201789021492,0.663769721984863,0.964253425598145,-0.053598627448082,-0.259504318237305,0.986877083778381,-0.160418346524239,0.0184268578886986,-0.441735684871674,0.0565042831003666,-0.895364105701447,0.714794397354126,0.2201789021492,0.663769721984863,-0.894754648208618,0.150911897420883,-0.42028534412384,0.850037217140198,-0.134407088160515,-0.509285151958466
  767. }
  768. TangentsW: *24 {
  769. 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
  770. }
  771. }
  772. LayerElementUV: 0 {
  773. Version: 101
  774. Name: "map1"
  775. MappingInformationType: "ByPolygonVertex"
  776. ReferenceInformationType: "IndexToDirect"
  777. UV: *26 {
  778. a: 0,0,1,0,1,1,0,1,0.500898480415344,0.802422404289246,0.769194781780243,0.457105427980423,0.999999403953552,0.457105427980423,0.999999403953552,0.802422404289246,0,1,0,1,0,1,0.769294857978821,0.351649075746536,0.804693520069122,1
  779. }
  780. UVIndex: *24 {
  781. a: 0,1,2,3,4,5,6,7,8,9,3,10,11,12,2,6,4,9,12,5,3,9,4,0
  782. }
  783. }
  784. LayerElementSmoothing: 0 {
  785. Version: 102
  786. Name: ""
  787. MappingInformationType: "ByEdge"
  788. ReferenceInformationType: "Direct"
  789. Smoothing: *12 {
  790. a: 1,1,1,1,1,1,1,1,1,1,1,1
  791. }
  792. }
  793. LayerElementMaterial: 0 {
  794. Version: 101
  795. Name: ""
  796. MappingInformationType: "AllSame"
  797. ReferenceInformationType: "IndexToDirect"
  798. Materials: *1 {
  799. a: 0
  800. }
  801. }
  802. Layer: 0 {
  803. Version: 100
  804. LayerElement: {
  805. Type: "LayerElementNormal"
  806. TypedIndex: 0
  807. }
  808. LayerElement: {
  809. Type: "LayerElementBinormal"
  810. TypedIndex: 0
  811. }
  812. LayerElement: {
  813. Type: "LayerElementTangent"
  814. TypedIndex: 0
  815. }
  816. LayerElement: {
  817. Type: "LayerElementMaterial"
  818. TypedIndex: 0
  819. }
  820. LayerElement: {
  821. Type: "LayerElementSmoothing"
  822. TypedIndex: 0
  823. }
  824. LayerElement: {
  825. Type: "LayerElementUV"
  826. TypedIndex: 0
  827. }
  828. }
  829. }
  830. Geometry: 2463645317424, "Geometry::", "Mesh" {
  831. Vertices: *24 {
  832. a: -0.2392578125,192.114303588867,-0.244384765625,-0.2392578125,217.783142089844,-0.244384765625,107.474609375,158.385223388672,-107.955322265625,121.6328125,180.054702758789,-122.11474609375,0.0009765625,192.114562988281,-199.999389648438,0.0009765625,217.783386230469,-199.999389648438,107.716796875,158.385223388672,-199.999389648438,121.8720703125,180.054748535156,-199.999389648438
  833. }
  834. PolygonVertexIndex: *24 {
  835. a: 6,4,5,-8,7,5,1,-4,2,0,4,-7,3,2,6,-8,0,1,5,-5,2,3,1,-1
  836. }
  837. Edges: *12 {
  838. a: 12,9,1,5,3,11,0,7,2,8,6,16
  839. }
  840. GeometryVersion: 124
  841. LayerElementNormal: 0 {
  842. Version: 102
  843. Name: ""
  844. MappingInformationType: "ByVertice"
  845. ReferenceInformationType: "Direct"
  846. Normals: *24 {
  847. a: -0.439071178436279,-0.829060971736908,0.346228688955307,0.0139350611716509,0.959081172943115,0.282788038253784,-0.085258275270462,-0.983242452144623,0.161137044429779,0.458215147256851,0.88569450378418,0.0747271031141281,-0.529327929019928,-0.827471137046814,-0.187359109520912,0.006662517786026,0.990067541599274,-0.140434011816978,-0.175364509224892,-0.964076161384583,-0.199510455131531,0.407016813755035,0.902641415596008,-0.139913752675056
  848. }
  849. NormalsW: *8 {
  850. a: 1,1,1,1,1,1,1,1
  851. }
  852. }
  853. LayerElementBinormal: 0 {
  854. Version: 102
  855. Name: "map1"
  856. MappingInformationType: "ByPolygonVertex"
  857. ReferenceInformationType: "Direct"
  858. Binormals: *72 {
  859. a: 0.904730260372162,-0.0779007896780968,-0.418801546096802,0.0576719604432583,0.185229659080505,-0.981001555919647,0.0433468967676163,0.140019193291664,0.98919951915741,0.0418275259435177,0.134596675634384,0.990017294883728,0.0418275259435177,0.134596675634384,0.990017294883728,0.868215799331665,-0.07540562748909,-0.490423649549484,-0.668333828449249,0.219293028116226,-0.710802793502808,-0.441619753837585,0.153896406292915,0.883905053138733,0.996286809444427,-0.0860758498311043,0.00191304390318692,0.883903086185455,-0.467669129371643,0.00106900942046195,0.842221200466156,-0.539129674434662,0.00161732733249664,0.983758151531219,-0.179480314254761,0.00258847675286233,-0.887903451919556,0.459972262382507,-0.00728125218302011,0.839136362075806,0.0163367409259081,0.543675720691681,0.904730260372162,-0.0779007896780968,-0.418801546096802,-0.911767303943634,0.410697728395462,-0.00280066579580307,-0.205647796392441,0.467868238687515,0.85953962802887,0.999888598918915,-0.0148825291544199,0.00120247213635594,0.999977827072144,-0.00655862595885992,0.00120261032134295,-0.842284202575684,0.539032757282257,-0.00101156532764435,0.839136362075806,0.0163367409259081,0.543675720691681,-0.441619753837585,0.153896406292915,0.883905053138733,-0.668333828449249,0.219293028116226,-0.710802793502808,-0.205647796392441,0.467868238687515,0.85953962802887
  860. }
  861. BinormalsW: *24 {
  862. 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
  863. }
  864. }
  865. LayerElementTangent: 0 {
  866. Version: 102
  867. Name: "map1"
  868. MappingInformationType: "ByPolygonVertex"
  869. ReferenceInformationType: "Direct"
  870. Tangents: *72 {
  871. a: -0.388214498758316,0.253946036100388,-0.885889828205109,-0.846454977989197,0.530076920986176,0.0503253564238548,-0.999037861824036,0.0126779861748219,0.0419834703207016,-0.912462472915649,0.408805936574936,-0.0170278567820787,-0.912462472915649,0.408805936574936,-0.0170278567820787,0.49614205956459,0.118659526109695,0.860094666481018,0.743730962276459,0.179091721773148,-0.644042253494263,-0.771369516849518,0.438019603490829,-0.461657792329788,-0.011989020742476,-0.160701796412468,-0.986930191516876,-0.161034166812897,-0.306501924991608,-0.938149571418762,0.102349139750004,0.156941711902618,-0.982290148735046,0.038303691893816,0.195816144347191,-0.979892373085022,0.0408213622868061,0.0630140751600266,-0.997177541255951,0.537197530269623,-0.181568682193756,-0.823681712150574,-0.388214498758316,0.253946036100388,-0.885889828205109,0.0549342632293701,0.128708705306053,0.990159749984741,-0.874600172042847,0.306197792291641,-0.375921964645386,0.00536186946555972,0.282739758491516,-0.959181666374207,0.000269611540716141,-0.140438884496689,-0.990089297294617,0.101829744875431,0.157274156808853,-0.982290983200073,0.537197530269623,-0.181568682193756,-0.823681712150574,-0.771369516849518,0.438019603490829,-0.461657792329788,0.743730962276459,0.179091721773148,-0.644042253494263,-0.874600172042847,0.306197792291641,-0.375921964645386
  872. }
  873. TangentsW: *24 {
  874. 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
  875. }
  876. }
  877. LayerElementUV: 0 {
  878. Version: 101
  879. Name: "map1"
  880. MappingInformationType: "ByPolygonVertex"
  881. ReferenceInformationType: "IndexToDirect"
  882. UV: *26 {
  883. a: 0,0,1,0,1,1,0,1,0,1,0,1,0,1,0.769174039363861,1.14773881435394,0.499782174825668,0.802426517009735,0.999999403953552,0.802422404289246,0.999999403953552,1.14773881435394,0.195328518748283,1,-0.000100091616332065,0.264812529087067
  884. }
  885. UVIndex: *24 {
  886. a: 0,1,2,3,3,4,5,6,7,8,9,10,11,12,0,3,8,5,2,9,12,6,5,8
  887. }
  888. }
  889. LayerElementSmoothing: 0 {
  890. Version: 102
  891. Name: ""
  892. MappingInformationType: "ByEdge"
  893. ReferenceInformationType: "Direct"
  894. Smoothing: *12 {
  895. a: 1,1,1,1,1,1,1,1,1,1,1,1
  896. }
  897. }
  898. LayerElementMaterial: 0 {
  899. Version: 101
  900. Name: ""
  901. MappingInformationType: "AllSame"
  902. ReferenceInformationType: "IndexToDirect"
  903. Materials: *1 {
  904. a: 0
  905. }
  906. }
  907. Layer: 0 {
  908. Version: 100
  909. LayerElement: {
  910. Type: "LayerElementNormal"
  911. TypedIndex: 0
  912. }
  913. LayerElement: {
  914. Type: "LayerElementBinormal"
  915. TypedIndex: 0
  916. }
  917. LayerElement: {
  918. Type: "LayerElementTangent"
  919. TypedIndex: 0
  920. }
  921. LayerElement: {
  922. Type: "LayerElementMaterial"
  923. TypedIndex: 0
  924. }
  925. LayerElement: {
  926. Type: "LayerElementSmoothing"
  927. TypedIndex: 0
  928. }
  929. LayerElement: {
  930. Type: "LayerElementUV"
  931. TypedIndex: 0
  932. }
  933. }
  934. }
  935. Geometry: 2463645321520, "Geometry::", "Mesh" {
  936. Vertices: *30 {
  937. a: 200.0029296875,83.2720413208008,-173.18115234375,198.173828125,83.2720413208008,-198.170166015625,200.0009765625,158.208526611328,-107.980224609375,200.001953125,179.877975463867,-122.137451171875,173.1669921875,83.2720413208008,-173.163818359375,107.9609375,158.183990478516,-107.9580078125,122.1220703125,179.853485107422,-122.116821289063,173.15234375,83.2720413208008,-200,107.9404296875,158.159454345703,-200,122.1005859375,179.828979492188,-200.000732421875
  938. }
  939. PolygonVertexIndex: *34 {
  940. a: 2,0,1,-4,5,4,0,-3,6,5,2,-4,7,8,9,-2,9,6,-4,4,5,8,-8,5,6,9,-9,9,3,-2,4,7,1,-1
  941. }
  942. Edges: *17 {
  943. a: 5,1,3,7,0,11,2,4,8,22,15,20,13,16,12,14,18
  944. }
  945. GeometryVersion: 124
  946. LayerElementNormal: 0 {
  947. Version: 102
  948. Name: ""
  949. MappingInformationType: "ByVertice"
  950. ReferenceInformationType: "Direct"
  951. Normals: *30 {
  952. a: 0.497470885515213,-0.621871709823608,0.604812622070313,0.693505108356476,0.193937003612518,-0.693858087062836,0.393357992172241,-0.357952177524567,0.846841096878052,0.685360133647919,0.716221272945404,-0.131561622023582,-0.428910404443741,-0.794602394104004,0.429700940847397,-0.615335822105408,-0.49203360080719,0.615844786167145,-0.342399030923843,0.875003516674042,0.342245250940323,-0.604759573936462,-0.622245788574219,-0.497067362070084,-0.846875548362732,-0.358351051807404,-0.392920285463333,0.130828231573105,0.715995073318481,-0.685736835002899
  953. }
  954. NormalsW: *10 {
  955. a: 1,1,1,1,1,1,1,1,1,1
  956. }
  957. }
  958. LayerElementBinormal: 0 {
  959. Version: 102
  960. Name: "map1"
  961. MappingInformationType: "ByPolygonVertex"
  962. ReferenceInformationType: "Direct"
  963. Binormals: *102 {
  964. a: 0.38206148147583,0.901438593864441,0.203562349081039,0.865903079509735,0.313945025205612,-0.389423131942749,-0.719919800758362,0.22354719042778,-0.657070875167847,-0.633248031139374,0.496979117393494,-0.593303263187408,-5.76227903366089e-005,0.781294167041779,0.624162971973419,0.000327005982398987,0.475539892911911,0.879694163799286,0.000463172793388367,0.697396218776703,0.716685652732849,5.00529931741767e-005,0.921103060245514,0.38931879401207,-0.0134601071476936,0.359657675027847,-0.93298727273941,-0.0104577383026481,0.786292970180511,0.617765367031097,0.38206148147583,0.901438593864441,0.203562349081039,-0.000203788309590891,-0.180477187037468,-0.983579218387604,0.683973252773285,-0.0860720351338387,-0.72441166639328,0.309226095676422,0.269273906946182,-0.91206955909729,0.116748921573162,0.675742506980896,0.72783362865448,0.562414228916168,0.456177413463593,0.689632117748261,0.983676671981812,-0.179945260286331,-0.000214725732803345,-0.000361219019396231,0.364140659570694,-0.931343913078308,-0.550447285175323,0.627816915512085,0.550321519374847,0.884835481643677,-0.273742854595184,0.377002716064453,0.624555587768555,-0.780980348587036,6.95884227752686e-005,0.389703303575516,-0.920940577983856,-2.58535183093045e-005,0.71726655960083,-0.696798861026764,-0.000389590917620808,-0.714794456958771,0.677652776241302,-0.172788172960281,0.804164528846741,0.461300700902939,-0.374861508607864,0.116748921573162,0.675742506980896,0.72783362865448,-0.232552140951157,0.91402542591095,-0.332381039857864,-0,-0,-0,-0,-0,-0,-0,-0,-0,0.884835481643677,-0.273742854595184,0.377002716064453,0.683973252773285,-0.0860720351338387,-0.72441166639328,-0.719919800758362,0.22354719042778,-0.657070875167847,-0.537156760692596,-0.768287062644959,-0.348134458065033
  965. }
  966. BinormalsW: *34 {
  967. 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
  968. }
  969. }
  970. LayerElementTangent: 0 {
  971. Version: 102
  972. Name: "map1"
  973. MappingInformationType: "ByPolygonVertex"
  974. ReferenceInformationType: "Direct"
  975. Tangents: *102 {
  976. a: 0.836240708827972,-0.243472427129745,-0.491347789764404,-0.0522933043539524,-0.717435777187347,-0.694659113883972,-0.0276795402169228,-0.9552041888237,-0.294650346040726,0.359553009271622,-0.489937633275986,-0.794155359268188,0.78826504945755,-0.384034365415573,0.48078665137291,0.903347015380859,-0.377450525760651,0.203704178333282,0.867480576038361,0.356250137090683,-0.347222328186035,0.919385433197021,0.153099298477173,-0.362341195344925,0.939458191394806,0.324060559272766,0.111368790268898,0.788195788860321,-0.373692840337753,0.48897984623909,0.836240708827972,-0.243472427129745,-0.491347789764404,-0.728204309940338,0.674132704734802,-0.123545899987221,-0.407978504896164,0.778075635433197,-0.477652341127396,-0.432644248008728,0.893910586833954,0.117229983210564,-0.984506726264954,0.175280228257179,-0.0048145642504096,-0.45026758313179,0.868499040603638,-0.207288414239883,0.123548842966557,0.674515247344971,0.727849543094635,0.939554631710052,0.31901490688324,0.124365352094173,-0.476748645305634,0.304750621318817,-0.824522733688354,0.181939691305161,-0.541915059089661,-0.820503532886505,-0.48092845082283,-0.38467213511467,-0.787867486476898,0.361846923828125,0.15314419567585,-0.919572532176971,0.346113502979279,0.356765359640121,-0.867711901664734,-0.3323113322258,-0.546525180339813,-0.768686950206757,-0.485883086919785,0.146869286894798,-0.861595630645752,-0.984506726264954,0.175280228257179,-0.0048145642504096,0.478248208761215,-0.190110892057419,-0.857400953769684,-0,0,0,-0,0,0,-0,0,0,0.181939691305161,-0.541915059089661,-0.820503532886505,-0.407978504896164,0.778075635433197,-0.477652341127396,-0.0276795402169228,-0.9552041888237,-0.294650346040726,0.681164681911469,-0.151692420244217,-0.716243028640747
  977. }
  978. TangentsW: *34 {
  979. 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
  980. }
  981. }
  982. LayerElementUV: 0 {
  983. Version: 101
  984. Name: "map1"
  985. MappingInformationType: "ByPolygonVertex"
  986. ReferenceInformationType: "IndexToDirect"
  987. UV: *46 {
  988. a: 0,0,1,0,0.990860819816589,1,0,1,0.769858002662659,0.457105427980423,0.932702124118805,0.227852284908295,0.999999403953552,0.227852299809456,0.999999403953552,0.457105427980423,0.194644898176193,1,-9.97950410237536e-005,0.105153329670429,0,0,1,0,1,1,0.00305101904086769,1,0,1,0,1,0.000701553653925657,1,0.932681441307068,1.37698173522949,0.769735217094421,1.14773893356323,0.999999403953552,1.14773881435394,0.999999403953552,1.3769816160202,0.76983505487442,0.88357013463974,0.805237710475922,1
  989. }
  990. UVIndex: *34 {
  991. a: 0,1,2,3,4,5,6,7,8,9,0,3,10,11,12,13,14,15,16,17,18,19,20,21,22,12,19,14,16,13,17,10,2,6
  992. }
  993. }
  994. LayerElementSmoothing: 0 {
  995. Version: 102
  996. Name: ""
  997. MappingInformationType: "ByEdge"
  998. ReferenceInformationType: "Direct"
  999. Smoothing: *17 {
  1000. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1001. }
  1002. }
  1003. LayerElementMaterial: 0 {
  1004. Version: 101
  1005. Name: ""
  1006. MappingInformationType: "AllSame"
  1007. ReferenceInformationType: "IndexToDirect"
  1008. Materials: *1 {
  1009. a: 0
  1010. }
  1011. }
  1012. Layer: 0 {
  1013. Version: 100
  1014. LayerElement: {
  1015. Type: "LayerElementNormal"
  1016. TypedIndex: 0
  1017. }
  1018. LayerElement: {
  1019. Type: "LayerElementBinormal"
  1020. TypedIndex: 0
  1021. }
  1022. LayerElement: {
  1023. Type: "LayerElementTangent"
  1024. TypedIndex: 0
  1025. }
  1026. LayerElement: {
  1027. Type: "LayerElementMaterial"
  1028. TypedIndex: 0
  1029. }
  1030. LayerElement: {
  1031. Type: "LayerElementSmoothing"
  1032. TypedIndex: 0
  1033. }
  1034. LayerElement: {
  1035. Type: "LayerElementUV"
  1036. TypedIndex: 0
  1037. }
  1038. }
  1039. }
  1040. Geometry: 2463645306160, "Geometry::", "Mesh" {
  1041. Vertices: *24 {
  1042. a: 200.0029296875,82.883918762207,-173.18115234375,198.173828125,82.883918762207,-198.170166015625,200.0009765625,8.58819294080604e-006,-192.112060546875,173.1669921875,82.883918762207,-173.163818359375,192.1171875,4.29409647040302e-006,-192.11279296875,200.0048828125,2.84994462163013e-006,-199.999389648438,173.15234375,82.883918762207,-200,192.1171875,7.46070550174463e-014,-200
  1043. }
  1044. PolygonVertexIndex: *26 {
  1045. a: 0,2,5,-2,2,4,-6,3,4,2,-1,7,6,1,-6,4,3,6,-8,5,4,-8,3,0,1,-7
  1046. }
  1047. Edges: *13 {
  1048. a: 10,3,4,1,0,7,2,5,11,16,18,12,14
  1049. }
  1050. GeometryVersion: 124
  1051. LayerElementNormal: 0 {
  1052. Version: 102
  1053. Name: ""
  1054. MappingInformationType: "ByVertice"
  1055. ReferenceInformationType: "Direct"
  1056. Normals: *24 {
  1057. a: 0.637217879295349,0.181192651391029,0.749081134796143,0.660740375518799,0.355158388614655,-0.661275029182434,0.74556827545166,-0.158795863389969,0.64723402261734,-0.705632507801056,0.0598292052745819,0.706047594547272,-0.669869303703308,-0.319123476743698,0.670399367809296,0.706801176071167,0.0086185410618782,-0.707359790802002,-0.749209702014923,0.180779129266739,-0.637184262275696,-0.647032558917999,-0.158960610628128,-0.745707988739014
  1058. }
  1059. NormalsW: *8 {
  1060. a: 1,1,1,1,1,1,1,1
  1061. }
  1062. }
  1063. LayerElementBinormal: 0 {
  1064. Version: 102
  1065. Name: "map1"
  1066. MappingInformationType: "ByPolygonVertex"
  1067. ReferenceInformationType: "Direct"
  1068. Binormals: *78 {
  1069. a: 0.734617114067078,0.151057243347168,-0.661452531814575,0.595584571361542,0.594519257545471,-0.540209233760834,-0.699562668800354,0.157062634825706,-0.697096526622772,-0.738275766372681,0.148414686322212,-0.657968103885651,2.26795673370361e-005,-0.971190810203552,-0.238303273916245,4.04268539568875e-005,-0.902936041355133,-0.429775178432465,-1.67638063430786e-006,0.999925851821899,0.0121815195307136,-5.43780624866486e-005,0.996424376964569,-0.0844895541667938,0.00011134147644043,0.90287709236145,0.429898768663406,0.595584571361542,0.594519257545471,-0.540209233760834,-7.19577074050903e-005,0.971983671188354,-0.235048562288284,0.726700067520142,0.167448058724403,-0.666234314441681,0.661332249641418,0.151320829987526,-0.734671175479889,0.662641167640686,0.13784895837307,0.736141502857208,0.700305044651031,0.132860481739044,0.701370775699615,0.429989814758301,-0.902833819389343,-0.000117078438051976,-0.0844391211867332,-0.996428668498993,4.60930168628693e-005,-0.177270710468292,-0.981664061546326,-0.0700761899352074,0.238581284880638,-0.971122622489929,5.21540698628087e-007,-0.0121933668851852,0.99992573261261,-5.44358044862747e-007,0.430085748434067,-0.902788162231445,5.06639537434239e-007,0.238581284880638,-0.971122622489929,5.21540698628087e-007,-0.0278657525777817,0.993315041065216,-0.11202110350132,-0.0432330891489983,0.978843212127686,-0.199992090463638,-0.142800256609917,-0.805411815643311,-0.57525634765625,-0.177270710468292,-0.981664061546326,-0.0700761899352074
  1070. }
  1071. BinormalsW: *26 {
  1072. 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
  1073. }
  1074. }
  1075. LayerElementTangent: 0 {
  1076. Version: 102
  1077. Name: "map1"
  1078. MappingInformationType: "ByPolygonVertex"
  1079. ReferenceInformationType: "Direct"
  1080. Tangents: *78 {
  1081. a: 0.233004480600357,-0.971777319908142,0.0368508398532867,0.299010008573532,-0.788245320320129,-0.537831008434296,-0.105091847479343,-0.987551152706146,-0.117041252553463,0.135539978742599,-0.922949433326721,-0.360268414020538,-0.666429221630096,-0.177686035633087,0.724085450172424,-0.742479026317596,0.287866085767746,-0.604861974716187,-0.707412242889404,0.00860872678458691,-0.706748783588409,0.708577990531921,0.0596569702029228,0.703106164932251,0.742479026317596,-0.288050651550293,0.604774177074432,0.299010008573532,-0.788245320320129,-0.537831008434296,0.770683825016022,-0.149723246693611,-0.619378387928009,-0.230772390961647,0.97298139333725,-0.00717233773320913,0.036393977701664,0.971813201904297,0.232926100492477,-0.352602899074554,0.924586474895477,0.144260197877884,-0.100024953484535,0.991097271442413,-0.0878703445196152,-0.605296492576599,-0.288186430931091,-0.742000460624695,-0.703528821468353,0.059585515409708,-0.708164393901825,0.638169288635254,-0.0604523606598377,-0.767519116401672,0.724173903465271,0.17791160941124,-0.666272938251495,-0.70730721950531,-0.00862548220902681,-0.706853687763214,-0.605228364467621,-0.288329511880875,-0.742000460624695,0.724173903465271,0.17791160941124,-0.666272938251495,-0.708029866218567,-0.0987202823162079,-0.699248194694519,-0.769470155239105,0.0950534418225288,0.631569921970367,-0.736905872821808,0.474525362253189,-0.481451451778412,0.638169288635254,-0.0604523606598377,-0.767519116401672
  1082. }
  1083. TangentsW: *26 {
  1084. 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
  1085. }
  1086. }
  1087. LayerElementUV: 0 {
  1088. Version: 101
  1089. Name: "map1"
  1090. MappingInformationType: "ByPolygonVertex"
  1091. ReferenceInformationType: "IndexToDirect"
  1092. UV: *42 {
  1093. a: 0,0,0.999999701976776,1.63465738296509e-005,0.999999761581421,0.296756505966187,0.00578899495303631,1,0,0,0.0197044499218464,0,0,0.296745002269745,0.933157682418823,0.227852284908295,0.980286717414856,1.66686731972732e-005,0.999999403953552,0.227852299809456,0,0,1,0,0.991143941879272,1,0,0.334054499864578,0.98026579618454,1.60481059551239,0.932985365390778,1.3769816160202,0.999999403953552,1.3769816160202,0.999999403953552,1.60481059551239,1,0.334054499864578,0.980274975299835,0,1,0
  1094. }
  1095. UVIndex: *26 {
  1096. a: 0,1,2,3,4,5,6,7,8,1,9,10,11,12,13,14,15,16,17,18,19,20,7,0,12,16
  1097. }
  1098. }
  1099. LayerElementSmoothing: 0 {
  1100. Version: 102
  1101. Name: ""
  1102. MappingInformationType: "ByEdge"
  1103. ReferenceInformationType: "Direct"
  1104. Smoothing: *13 {
  1105. a: 1,1,1,1,1,1,1,1,1,1,1,1,1
  1106. }
  1107. }
  1108. LayerElementMaterial: 0 {
  1109. Version: 101
  1110. Name: ""
  1111. MappingInformationType: "AllSame"
  1112. ReferenceInformationType: "IndexToDirect"
  1113. Materials: *1 {
  1114. a: 0
  1115. }
  1116. }
  1117. Layer: 0 {
  1118. Version: 100
  1119. LayerElement: {
  1120. Type: "LayerElementNormal"
  1121. TypedIndex: 0
  1122. }
  1123. LayerElement: {
  1124. Type: "LayerElementBinormal"
  1125. TypedIndex: 0
  1126. }
  1127. LayerElement: {
  1128. Type: "LayerElementTangent"
  1129. TypedIndex: 0
  1130. }
  1131. LayerElement: {
  1132. Type: "LayerElementMaterial"
  1133. TypedIndex: 0
  1134. }
  1135. LayerElement: {
  1136. Type: "LayerElementSmoothing"
  1137. TypedIndex: 0
  1138. }
  1139. LayerElement: {
  1140. Type: "LayerElementUV"
  1141. TypedIndex: 0
  1142. }
  1143. }
  1144. }
  1145. Geometry: 2463645308208, "Geometry::", "Mesh" {
  1146. Vertices: *24 {
  1147. a: 0.244140625,192.114303588867,-0.2388916015625,0.244140625,217.783142089844,-0.2388916015625,107.955078125,158.385223388672,107.474731445313,122.1142578125,180.054702758789,121.632690429688,199.9990234375,192.114562988281,0.00146484375,199.9990234375,217.783386230469,0.00146484375,199.9990234375,158.385223388672,107.716430664063,199.9990234375,180.054748535156,121.872314453125
  1148. }
  1149. PolygonVertexIndex: *24 {
  1150. a: 6,4,5,-8,7,5,1,-4,2,0,4,-7,3,2,6,-8,0,1,5,-5,2,3,1,-1
  1151. }
  1152. Edges: *12 {
  1153. a: 12,9,1,5,3,11,0,7,2,8,6,16
  1154. }
  1155. GeometryVersion: 124
  1156. LayerElementNormal: 0 {
  1157. Version: 102
  1158. Name: ""
  1159. MappingInformationType: "ByVertice"
  1160. ReferenceInformationType: "Direct"
  1161. Normals: *24 {
  1162. a: -0.346229255199432,-0.829059660434723,-0.439073294401169,-0.28278836607933,0.959081053733826,0.0139342965558171,-0.161136999726295,-0.983242452144623,-0.0852588713169098,-0.0747279822826386,0.885693550109863,0.45821687579155,0.187359645962715,-0.827469944953918,-0.529329478740692,0.140433996915817,0.990067660808563,0.00666301464661956,0.199511989951134,-0.964075684547424,-0.175365522503853,0.139912143349648,0.902640640735626,0.40701887011528
  1163. }
  1164. NormalsW: *8 {
  1165. a: 1,1,1,1,1,1,1,1
  1166. }
  1167. }
  1168. LayerElementBinormal: 0 {
  1169. Version: 102
  1170. Name: "map1"
  1171. MappingInformationType: "ByPolygonVertex"
  1172. ReferenceInformationType: "Direct"
  1173. Binormals: *72 {
  1174. a: 0.418801635503769,-0.0779010728001595,0.904730200767517,0.981001377105713,0.185230135917664,0.0576723925769329,-0.98919951915741,0.140019133687019,0.0433469638228416,-0.990017533302307,0.134595111012459,0.0418272018432617,-0.990017533302307,0.134595111012459,0.0418272018432617,0.49042209982872,-0.0754058361053467,0.868216693401337,0.71080219745636,0.21929258108139,-0.668334662914276,-0.883903801441193,0.153897598385811,-0.441621571779251,-0.00191070511937141,-0.0860768333077431,0.996286690235138,-0.0010695606470108,-0.467671245336533,0.883901834487915,-0.00161534547805786,-0.539131045341492,0.842220366001129,-0.00258325785398483,-0.179480358958244,0.983758151531219,0.00728064123541117,0.459973990917206,-0.887902557849884,-0.543674111366272,0.0163358468562365,0.839137494564056,0.418801635503769,-0.0779010728001595,0.904730200767517,0.002804946154356,0.410699188709259,-0.911766648292542,-0.859539687633514,0.467868983745575,-0.205645620822906,-0.00120308448094875,-0.0148819154128432,0.999888598918915,-0.00120322220027447,-0.00655903946608305,0.999977767467499,0.00101207953412086,0.5390345454216,-0.842283070087433,-0.543674111366272,0.0163358468562365,0.839137494564056,-0.883903801441193,0.153897598385811,-0.441621571779251,0.71080219745636,0.21929258108139,-0.668334662914276,-0.859539687633514,0.467868983745575,-0.205645620822906
  1175. }
  1176. BinormalsW: *24 {
  1177. 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
  1178. }
  1179. }
  1180. LayerElementTangent: 0 {
  1181. Version: 102
  1182. Name: "map1"
  1183. MappingInformationType: "ByPolygonVertex"
  1184. ReferenceInformationType: "Direct"
  1185. Tangents: *72 {
  1186. a: 0.88588947057724,0.253947883844376,-0.388214260339737,-0.0503256022930145,0.53007847070694,-0.846453964710236,-0.0419834777712822,0.0126784155145288,-0.999037861824036,0.0170278158038855,0.408807992935181,-0.912461638450623,0.0170278158038855,0.408807992935181,-0.912461638450623,-0.860095620155334,0.118659451603889,0.496140569448471,0.644042730331421,0.179092660546303,0.743730187416077,0.461659848690033,0.438021123409271,-0.771367371082306,0.986930310726166,-0.160701557993889,-0.0119914757087827,0.938149333000183,-0.306502282619476,-0.161034733057022,0.982290148735046,0.156943067908287,0.102348051965237,0.979891955852509,0.195818543434143,0.0382989458739758,0.997177481651306,0.0630150586366653,0.0408213473856449,0.82368278503418,-0.181569084525108,0.53719574213028,0.88588947057724,0.253947883844376,-0.388214260339737,-0.990160048007965,0.128708899021149,0.0549299493432045,0.375921279191971,0.306200385093689,-0.874599635601044,0.959181606769562,0.28274005651474,0.00536228716373444,0.990089416503906,-0.140438914299011,0.000270159100182354,0.982290863990784,0.157274127006531,0.101830780506134,0.82368278503418,-0.181569084525108,0.53719574213028,0.461659848690033,0.438021123409271,-0.771367371082306,0.644042730331421,0.179092660546303,0.743730187416077,0.375921279191971,0.306200385093689,-0.874599635601044
  1187. }
  1188. TangentsW: *24 {
  1189. 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
  1190. }
  1191. }
  1192. LayerElementUV: 0 {
  1193. Version: 101
  1194. Name: "map1"
  1195. MappingInformationType: "ByPolygonVertex"
  1196. ReferenceInformationType: "IndexToDirect"
  1197. UV: *26 {
  1198. a: 0,0,1,0,1,1,0,1,0,1,0,1,0,1,0.769174039363861,1.14773881435394,0.499782174825668,0.802426517009735,0.999999403953552,0.802422404289246,0.999999403953552,1.14773881435394,0.195328518748283,1,-0.000100091616332065,0.264812529087067
  1199. }
  1200. UVIndex: *24 {
  1201. a: 0,1,2,3,3,4,5,6,7,8,9,10,11,12,0,3,8,5,2,9,12,6,5,8
  1202. }
  1203. }
  1204. LayerElementSmoothing: 0 {
  1205. Version: 102
  1206. Name: ""
  1207. MappingInformationType: "ByEdge"
  1208. ReferenceInformationType: "Direct"
  1209. Smoothing: *12 {
  1210. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1211. }
  1212. }
  1213. LayerElementMaterial: 0 {
  1214. Version: 101
  1215. Name: ""
  1216. MappingInformationType: "AllSame"
  1217. ReferenceInformationType: "IndexToDirect"
  1218. Materials: *1 {
  1219. a: 0
  1220. }
  1221. }
  1222. Layer: 0 {
  1223. Version: 100
  1224. LayerElement: {
  1225. Type: "LayerElementNormal"
  1226. TypedIndex: 0
  1227. }
  1228. LayerElement: {
  1229. Type: "LayerElementBinormal"
  1230. TypedIndex: 0
  1231. }
  1232. LayerElement: {
  1233. Type: "LayerElementTangent"
  1234. TypedIndex: 0
  1235. }
  1236. LayerElement: {
  1237. Type: "LayerElementMaterial"
  1238. TypedIndex: 0
  1239. }
  1240. LayerElement: {
  1241. Type: "LayerElementSmoothing"
  1242. TypedIndex: 0
  1243. }
  1244. LayerElement: {
  1245. Type: "LayerElementUV"
  1246. TypedIndex: 0
  1247. }
  1248. }
  1249. }
  1250. Geometry: 2463645326640, "Geometry::", "Mesh" {
  1251. Vertices: *24 {
  1252. a: 107.7138671875,158.385223388672,200.002197265625,121.8740234375,180.054672241211,200.00146484375,0.4423828125,192.114562988281,200.00146484375,0.4423828125,217.783386230469,200.00146484375,107.5771484375,158.385223388672,107.853149414063,121.736328125,180.054702758789,122.011108398438,0.3076171875,192.114562988281,0.5814208984375,0.3076171875,217.783386230469,0.5814208984375
  1253. }
  1254. PolygonVertexIndex: *24 {
  1255. a: 2,0,1,-4,6,4,0,-3,5,7,3,-2,4,5,1,-1,6,7,5,-5,3,7,6,-3
  1256. }
  1257. Edges: *12 {
  1258. a: 5,1,11,3,7,0,9,2,4,8,12,16
  1259. }
  1260. GeometryVersion: 124
  1261. LayerElementNormal: 0 {
  1262. Version: 102
  1263. Name: ""
  1264. MappingInformationType: "ByVertice"
  1265. ReferenceInformationType: "Direct"
  1266. Normals: *24 {
  1267. a: -0.175853580236435,-0.964028358459473,0.199310630559921,0.408402264118195,0.901957452297211,0.140286356210709,-0.530650794506073,-0.82665479183197,0.187220752239227,0.00684510637074709,0.990054666996002,0.140516519546509,-0.0858085453510284,-0.983148992061615,-0.16141539812088,0.45964452624321,0.884971976280212,-0.0745090991258621,-0.440427660942078,-0.828200995922089,-0.346563965082169,0.0137732215225697,0.959124803543091,-0.282648295164108
  1268. }
  1269. NormalsW: *8 {
  1270. a: 1,1,1,1,1,1,1,1
  1271. }
  1272. }
  1273. LayerElementBinormal: 0 {
  1274. Version: 102
  1275. Name: "map1"
  1276. MappingInformationType: "ByPolygonVertex"
  1277. ReferenceInformationType: "Direct"
  1278. Binormals: *72 {
  1279. a: -0.677522778511047,0.546421527862549,0.492327660322189,0.0602227449417114,0.191551357507706,0.979633331298828,0.0421629212796688,0.13488332927227,-0.989964067935944,-0.445282340049744,0.128837168216705,-0.88607257604599,-0.212927103042603,0.471365332603455,-0.855848610401154,-0.996141254901886,0.08765709400177,-0.00435247179120779,-0.983712077140808,0.179745942354202,0.00145950552541763,-0.841440975666046,0.54034823179245,0.000908516230992973,-0.0672788023948669,0.118353724479675,0.990689694881439,0.747810542583466,0.177768215537071,0.639670133590698,-0.445282340049744,0.128837168216705,-0.88607257604599,-0.911058902740479,0.412273168563843,0.00160867348313332,0.995707452297211,-0.0902649313211441,0.0204668547958136,-0.84934389591217,0.462549269199371,0.254289418458939,-0.911058962345123,0.412273198366165,0.00160867744125426,0.984012603759766,-0.177939280867577,0.00754417758435011,-0.212927103042603,0.471365332603455,-0.855848610401154,0.747810542583466,0.177768215537071,0.639670133590698,-0.84934389591217,0.462549269199371,0.254289418458939,-0.996141254901886,0.08765709400177,-0.00435247179120779,-0.445282340049744,0.128837168216705,-0.88607257604599,0.747810542583466,0.177768215537071,0.639670133590698,-0.793338060379028,0.539730191230774,-0.281613320112228,-0.677522778511047,0.546421527862549,0.492327660322189
  1280. }
  1281. BinormalsW: *24 {
  1282. 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
  1283. }
  1284. }
  1285. LayerElementTangent: 0 {
  1286. Version: 102
  1287. Name: "map1"
  1288. MappingInformationType: "ByPolygonVertex"
  1289. ReferenceInformationType: "Direct"
  1290. Tangents: *72 {
  1291. a: 0.509286463260651,-0.134407758712769,0.85003650188446,0.982572495937347,-0.184275075793266,-0.0243714395910501,0.911827802658081,-0.410218477249146,-0.017057491466403,0.895364046096802,0.0565042644739151,-0.441735774278641,-0.872172772884369,0.303146511316299,0.383948743343353,-0.0184283349663019,-0.160419061779976,0.986877024173737,0.0372322760522366,0.195807591080666,0.97993528842926,0.101915434002876,0.157053127884865,0.982317507266998,-0.885550916194916,0.450352191925049,-0.113940484821796,-0.66376930475235,0.220177665352821,0.714795172214508,0.895364046096802,0.0565042644739151,-0.441735774278641,0.0563853420317173,0.128466114401817,-0.990109741687775,-0.0346921198070049,-0.158966287970543,0.986674308776855,0.259503096342087,-0.0535988882184029,0.964253723621368,-0.056385338306427,-0.128466114401817,0.99010968208313,0.0281923823058605,0.197450816631317,0.979907333850861,-0.872172772884369,0.303146511316299,0.383948743343353,-0.66376930475235,0.220177665352821,0.714795172214508,0.259503096342087,-0.0535988882184029,0.964253723621368,-0.0184283349663019,-0.160419061779976,0.986877024173737,0.895364046096802,0.0565042644739151,-0.441735774278641,-0.66376930475235,0.220177665352821,0.714795172214508,0.420283436775208,0.150912091135979,-0.894755482673645,0.509286463260651,-0.134407758712769,0.85003650188446
  1292. }
  1293. TangentsW: *24 {
  1294. 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
  1295. }
  1296. }
  1297. LayerElementUV: 0 {
  1298. Version: 101
  1299. Name: "map1"
  1300. MappingInformationType: "ByPolygonVertex"
  1301. ReferenceInformationType: "IndexToDirect"
  1302. UV: *26 {
  1303. a: 0,0,1,0,1,1,0,1,0.500898480415344,0.802422404289246,0.769194781780243,0.457105427980423,0.999999403953552,0.457105427980423,0.999999403953552,0.802422404289246,0,1,0,1,0,1,0.769294857978821,0.351649075746536,0.804693520069122,1
  1304. }
  1305. UVIndex: *24 {
  1306. a: 0,1,2,3,4,5,6,7,8,9,3,10,11,12,2,6,4,9,12,5,3,9,4,0
  1307. }
  1308. }
  1309. LayerElementSmoothing: 0 {
  1310. Version: 102
  1311. Name: ""
  1312. MappingInformationType: "ByEdge"
  1313. ReferenceInformationType: "Direct"
  1314. Smoothing: *12 {
  1315. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1316. }
  1317. }
  1318. LayerElementMaterial: 0 {
  1319. Version: 101
  1320. Name: ""
  1321. MappingInformationType: "AllSame"
  1322. ReferenceInformationType: "IndexToDirect"
  1323. Materials: *1 {
  1324. a: 0
  1325. }
  1326. }
  1327. Layer: 0 {
  1328. Version: 100
  1329. LayerElement: {
  1330. Type: "LayerElementNormal"
  1331. TypedIndex: 0
  1332. }
  1333. LayerElement: {
  1334. Type: "LayerElementBinormal"
  1335. TypedIndex: 0
  1336. }
  1337. LayerElement: {
  1338. Type: "LayerElementTangent"
  1339. TypedIndex: 0
  1340. }
  1341. LayerElement: {
  1342. Type: "LayerElementMaterial"
  1343. TypedIndex: 0
  1344. }
  1345. LayerElement: {
  1346. Type: "LayerElementSmoothing"
  1347. TypedIndex: 0
  1348. }
  1349. LayerElement: {
  1350. Type: "LayerElementUV"
  1351. TypedIndex: 0
  1352. }
  1353. }
  1354. }
  1355. Geometry: 2463645307696, "Geometry::", "Mesh" {
  1356. Vertices: *30 {
  1357. a: 173.1806640625,83.2720413208008,200.002807617188,198.169921875,83.2720413208008,198.17431640625,107.98046875,158.208526611328,200.000732421875,122.1376953125,179.877975463867,200.002075195313,173.1640625,83.2720413208008,173.166625976563,107.9580078125,158.183990478516,107.960815429688,122.1171875,179.853485107422,122.122314453125,200,83.2720413208008,173.152099609375,200,158.159454345703,107.940795898438,200.0009765625,179.828979492188,122.100219726563
  1358. }
  1359. PolygonVertexIndex: *34 {
  1360. a: 2,0,1,-4,5,4,0,-3,6,5,2,-4,7,8,9,-2,9,6,-4,4,5,8,-8,5,6,9,-9,9,3,-2,4,7,1,-1
  1361. }
  1362. Edges: *17 {
  1363. a: 5,1,3,7,0,11,2,4,8,22,15,20,13,16,12,14,18
  1364. }
  1365. GeometryVersion: 124
  1366. LayerElementNormal: 0 {
  1367. Version: 102
  1368. Name: ""
  1369. MappingInformationType: "ByVertice"
  1370. ReferenceInformationType: "Direct"
  1371. Normals: *30 {
  1372. a: -0.604818761348724,-0.621874392032623,0.497459948062897,0.693855762481689,0.193934381008148,0.693508207798004,-0.846843659877777,-0.35795071721077,0.393353760242462,0.131563484668732,0.716219067573547,0.685362160205841,-0.429697722196579,-0.794601619243622,-0.428914994001389,-0.615845322608948,-0.492032915353775,-0.615335762500763,-0.342245519161224,0.875003576278687,-0.342398464679718,0.497071504592896,-0.622243463993073,-0.604758620262146,0.392928004264832,-0.358346730470657,-0.846873760223389,0.685737609863281,0.715994358062744,0.130827859044075
  1373. }
  1374. NormalsW: *10 {
  1375. a: 1,1,1,1,1,1,1,1,1,1
  1376. }
  1377. }
  1378. LayerElementBinormal: 0 {
  1379. Version: 102
  1380. Name: "map1"
  1381. MappingInformationType: "ByPolygonVertex"
  1382. ReferenceInformationType: "Direct"
  1383. Binormals: *102 {
  1384. a: -0.203561410307884,0.901438295841217,0.38206273317337,0.389414966106415,0.313937693834305,0.865909516811371,0.657084703445435,0.223513171076775,-0.719917774200439,0.59330815076828,0.496977120637894,-0.63324499130249,-0.624163150787354,0.781294107437134,-5.59538675588556e-005,-0.879692912101746,0.475541979074478,0.000316157907946035,-0.716691493988037,0.697390258312225,0.000443607626948506,-0.389318346977234,0.921103239059448,4.52548229077365e-005,0.932987213134766,0.359657645225525,-0.0134608224034309,-0.617765665054321,0.786292731761932,-0.0104558020830154,-0.203561410307884,0.901438295841217,0.38206273317337,0.983578383922577,-0.180481642484665,-0.0002022385597229,0.724409282207489,-0.0860709324479103,0.683975875377655,0.912065982818604,0.269277602434158,0.309233248233795,-0.727832913398743,0.675743460655212,0.116747915744781,-0.68963235616684,0.456182479858398,0.562409937381744,0.000222437112824991,-0.179952085018158,0.983675360679626,0.931343615055084,0.364141374826431,-0.000359751284122467,-0.550321996212006,0.627819120883942,-0.550444364547729,-0.377017766237259,-0.273738861083984,0.884830415248871,-7.29113817214966e-005,-0.780979096889496,0.624557137489319,2.39312648773193e-005,-0.920942187309265,0.389699190855026,0.000386327505111694,-0.696800947189331,0.717264473438263,0.172787472605705,0.67765349149704,-0.714793860912323,0.374869823455811,0.461301773786545,0.804160118103027,-0.727832913398743,0.675743460655212,0.116747915744781,0.332387089729309,0.914025664329529,-0.232542246580124,0,-0,-0,0,-0,-0,0,-0,-0,-0.377017766237259,-0.273738861083984,0.884830415248871,0.724409282207489,-0.0860709324479103,0.683975875377655,0.657084703445435,0.223513171076775,-0.719917774200439,0.348149389028549,-0.768285870552063,-0.537148773670197
  1385. }
  1386. BinormalsW: *34 {
  1387. 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
  1388. }
  1389. }
  1390. LayerElementTangent: 0 {
  1391. Version: 102
  1392. Name: "map1"
  1393. MappingInformationType: "ByPolygonVertex"
  1394. ReferenceInformationType: "Direct"
  1395. Tangents: *102 {
  1396. a: 0.491343706846237,-0.243475675582886,0.836242079734802,0.69465833902359,-0.717436671257019,-0.0522917471826077,0.294625014066696,-0.955212652683258,-0.0276545602828264,0.794151425361633,-0.489942878484726,0.359554588794708,-0.480785697698593,-0.384035438299179,0.788265109062195,-0.203715890645981,-0.3774493932724,0.903344869613647,0.347199559211731,0.356256991624832,0.867486834526062,0.362335652112961,0.153101518750191,0.91938728094101,-0.111367970705032,0.324060320854187,0.939458429813385,-0.488978624343872,-0.373694121837616,0.788195788860321,0.491343706846237,-0.243475675582886,0.836242079734802,0.123550437390804,0.674134016036987,-0.728202402591705,0.477651625871658,0.778077602386475,-0.407975524663925,-0.117231413722038,0.893911182880402,-0.432642608880997,0.00481528602540493,0.175279319286346,-0.984506964683533,0.207295641303062,0.868497014045715,-0.450268238782883,-0.727848827838898,0.674514055252075,0.123559162020683,-0.124366670846939,0.319013774394989,0.939554810523987,0.824522197246552,0.304751455783844,-0.476749181747437,0.82049822807312,-0.541918098926544,0.181953951716423,0.787867069244385,-0.384675443172455,-0.48092645406723,0.919569253921509,0.153143987059593,0.361855387687683,0.867709517478943,0.356765359640121,0.346119493246078,0.768686652183533,-0.546524822711945,-0.332312673330307,0.861591875553131,0.146865293383598,-0.485890865325928,0.00481528602540493,0.175279319286346,-0.984506964683533,0.857395112514496,-0.190117537975311,0.478256106376648,-0,0,-0,-0,0,-0,-0,0,-0,0.82049822807312,-0.541918098926544,0.181953951716423,0.477651625871658,0.778077602386475,-0.407975524663925,0.294625014066696,-0.955212652683258,-0.0276545602828264,0.716230571269989,-0.151687264442444,0.68117892742157
  1397. }
  1398. TangentsW: *34 {
  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
  1400. }
  1401. }
  1402. LayerElementUV: 0 {
  1403. Version: 101
  1404. Name: "map1"
  1405. MappingInformationType: "ByPolygonVertex"
  1406. ReferenceInformationType: "IndexToDirect"
  1407. UV: *46 {
  1408. a: 0,0,1,0,0.990860819816589,1,0,1,0.769858002662659,0.457105427980423,0.932702124118805,0.227852284908295,0.999999403953552,0.227852299809456,0.999999403953552,0.457105427980423,0.194644898176193,1,-9.97950410237536e-005,0.105153329670429,0,0,1,0,1,1,0.00305101904086769,1,0,1,0,1,0.000701553653925657,1,0.932681441307068,1.37698173522949,0.769735217094421,1.14773893356323,0.999999403953552,1.14773881435394,0.999999403953552,1.3769816160202,0.76983505487442,0.88357013463974,0.805237710475922,1
  1409. }
  1410. UVIndex: *34 {
  1411. a: 0,1,2,3,4,5,6,7,8,9,0,3,10,11,12,13,14,15,16,17,18,19,20,21,22,12,19,14,16,13,17,10,2,6
  1412. }
  1413. }
  1414. LayerElementSmoothing: 0 {
  1415. Version: 102
  1416. Name: ""
  1417. MappingInformationType: "ByEdge"
  1418. ReferenceInformationType: "Direct"
  1419. Smoothing: *17 {
  1420. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1421. }
  1422. }
  1423. LayerElementMaterial: 0 {
  1424. Version: 101
  1425. Name: ""
  1426. MappingInformationType: "AllSame"
  1427. ReferenceInformationType: "IndexToDirect"
  1428. Materials: *1 {
  1429. a: 0
  1430. }
  1431. }
  1432. Layer: 0 {
  1433. Version: 100
  1434. LayerElement: {
  1435. Type: "LayerElementNormal"
  1436. TypedIndex: 0
  1437. }
  1438. LayerElement: {
  1439. Type: "LayerElementBinormal"
  1440. TypedIndex: 0
  1441. }
  1442. LayerElement: {
  1443. Type: "LayerElementTangent"
  1444. TypedIndex: 0
  1445. }
  1446. LayerElement: {
  1447. Type: "LayerElementMaterial"
  1448. TypedIndex: 0
  1449. }
  1450. LayerElement: {
  1451. Type: "LayerElementSmoothing"
  1452. TypedIndex: 0
  1453. }
  1454. LayerElement: {
  1455. Type: "LayerElementUV"
  1456. TypedIndex: 0
  1457. }
  1458. }
  1459. }
  1460. Geometry: 2463645322544, "Geometry::", "Mesh" {
  1461. Vertices: *24 {
  1462. a: 173.1806640625,82.883918762207,200.002807617188,198.169921875,82.883918762207,198.17431640625,192.1123046875,8.58819294080604e-006,200.000732421875,173.1640625,82.883918762207,173.166625976563,192.1123046875,4.29409647040302e-006,192.116943359375,199.9990234375,2.84994462163013e-006,200.0048828125,200,82.883918762207,173.152099609375,200,7.46070550174463e-014,192.116943359375
  1463. }
  1464. PolygonVertexIndex: *26 {
  1465. a: 0,2,5,-2,2,4,-6,3,4,2,-1,7,6,1,-6,4,3,6,-8,5,4,-8,3,0,1,-7
  1466. }
  1467. Edges: *13 {
  1468. a: 10,3,4,1,0,7,2,5,11,16,18,12,14
  1469. }
  1470. GeometryVersion: 124
  1471. LayerElementNormal: 0 {
  1472. Version: 102
  1473. Name: ""
  1474. MappingInformationType: "ByVertice"
  1475. ReferenceInformationType: "Direct"
  1476. Normals: *24 {
  1477. a: -0.749094843864441,0.181192442774773,0.637201845645905,0.661273777484894,0.355156749486923,0.660742521286011,-0.647245347499847,-0.158798709511757,0.745557844638824,-0.70604532957077,0.0598370954394341,-0.70563417673111,-0.670404076576233,-0.319123268127441,-0.66986471414566,0.707360327243805,0.00861513335257769,0.706800699234009,0.637199819087982,0.1807821393013,-0.749195635318756,0.745723605155945,-0.158959418535233,-0.647014975547791
  1478. }
  1479. NormalsW: *8 {
  1480. a: 1,1,1,1,1,1,1,1
  1481. }
  1482. }
  1483. LayerElementBinormal: 0 {
  1484. Version: 102
  1485. Name: "map1"
  1486. MappingInformationType: "ByPolygonVertex"
  1487. ReferenceInformationType: "Direct"
  1488. Binormals: *78 {
  1489. a: 0.661436855792999,0.151058405637741,0.734631061553955,0.540205240249634,0.594509601593018,0.595597863197327,0.697097957134247,0.157049000263214,-0.699564218521118,0.657971143722534,0.14841228723526,-0.738273561000824,0.238279312849045,-0.971196711063385,5.28991222381592e-007,0.429804980754852,-0.902921795845032,4.91738319396973e-007,-0.0121778249740601,0.999925911426544,-5.44358044862747e-007,0.0844985991716385,0.996423661708832,-5.20758330821991e-005,-0.429907560348511,0.902872979640961,0.000125423073768616,0.540205240249634,0.594509601593018,0.595597863197327,0.235038042068481,0.971986174583435,-7.96839594841003e-005,0.666216909885406,0.167447984218597,0.726716160774231,0.734655857086182,0.151324525475502,0.661348402500153,-0.736143529415131,0.137852072715759,0.662638306617737,-0.701369345188141,0.132867738604546,0.700305163860321,0.000116094946861267,-0.902832329273224,0.429992765188217,-4.57130372524261e-005,-0.996427774429321,-0.084450364112854,0.0700780898332596,-0.981663346290588,-0.177274748682976,-5.28991222381592e-007,-0.971121490001678,0.238585710525513,5.44358044862747e-007,0.99992573261261,-0.0121885538101196,-5.0663948059082e-007,-0.902787029743195,0.430087864398956,-5.28991222381592e-007,-0.971121490001678,0.238585710525513,0.112032599747181,0.993313789367676,-0.0278658270835876,0.199993684887886,0.978843212127686,-0.0432276837527752,0.575244784355164,-0.805423140525818,-0.142783015966415,0.0700780898332596,-0.981663346290588,-0.177274748682976
  1490. }
  1491. BinormalsW: *26 {
  1492. 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
  1493. }
  1494. }
  1495. LayerElementTangent: 0 {
  1496. Version: 102
  1497. Name: "map1"
  1498. MappingInformationType: "ByPolygonVertex"
  1499. ReferenceInformationType: "Direct"
  1500. Tangents: *78 {
  1501. a: -0.0368548929691315,-0.971777081489563,0.233004406094551,0.537821412086487,-0.788252115249634,0.299009621143341,0.117029167711735,-0.987553238868713,-0.105084642767906,0.360265135765076,-0.922950446605682,0.13554173707962,-0.724083244800568,-0.177651360630989,-0.666440904140472,0.604835629463196,0.287910878658295,-0.742483198642731,0.706748306751251,0.00860690977424383,-0.707412719726563,-0.703107476234436,0.0596618689596653,0.708576321601868,-0.604762732982636,-0.288064002990723,0.742483198642731,0.537821412086487,-0.788252115249634,0.299009621143341,0.619365811347961,-0.149706974625587,0.770696997642517,0.00717703113332391,0.972981631755829,-0.230771347880363,-0.232931658625603,0.971812188625336,0.036388672888279,-0.144255742430687,0.924586713314056,-0.352604329586029,0.0878778025507927,0.991096436977386,-0.10002775490284,0.741996169090271,-0.288191139698029,-0.605299532413483,0.708166599273682,0.0595935322344303,-0.703525900840759,0.767505943775177,-0.0604572221636772,0.638184487819672,0.666255354881287,0.177918642759323,0.724188327789307,0.706853091716766,-0.00862208474427462,-0.707307815551758,0.741996228694916,-0.288332998752594,-0.605231940746307,0.666255354881287,0.177918642759323,0.724188327789307,0.699248790740967,-0.0987285673618317,-0.708028137683868,-0.631553173065186,0.0950547009706497,-0.769483685493469,0.481466978788376,0.474507331848145,-0.736907303333282,0.767505943775177,-0.0604572221636772,0.638184487819672
  1502. }
  1503. TangentsW: *26 {
  1504. 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
  1505. }
  1506. }
  1507. LayerElementUV: 0 {
  1508. Version: 101
  1509. Name: "map1"
  1510. MappingInformationType: "ByPolygonVertex"
  1511. ReferenceInformationType: "IndexToDirect"
  1512. UV: *42 {
  1513. a: 0,0,0.999999701976776,1.63465738296509e-005,0.999999761581421,0.296756505966187,0.00578899495303631,1,0,0,0.0197044499218464,0,0,0.296745002269745,0.933157682418823,0.227852284908295,0.980286717414856,1.66686731972732e-005,0.999999403953552,0.227852299809456,0,0,1,0,0.991143941879272,1,0,0.334054499864578,0.98026579618454,1.60481059551239,0.932985365390778,1.3769816160202,0.999999403953552,1.3769816160202,0.999999403953552,1.60481059551239,1,0.334054499864578,0.980274975299835,0,1,0
  1514. }
  1515. UVIndex: *26 {
  1516. a: 0,1,2,3,4,5,6,7,8,1,9,10,11,12,13,14,15,16,17,18,19,20,7,0,12,16
  1517. }
  1518. }
  1519. LayerElementSmoothing: 0 {
  1520. Version: 102
  1521. Name: ""
  1522. MappingInformationType: "ByEdge"
  1523. ReferenceInformationType: "Direct"
  1524. Smoothing: *13 {
  1525. a: 1,1,1,1,1,1,1,1,1,1,1,1,1
  1526. }
  1527. }
  1528. LayerElementMaterial: 0 {
  1529. Version: 101
  1530. Name: ""
  1531. MappingInformationType: "AllSame"
  1532. ReferenceInformationType: "IndexToDirect"
  1533. Materials: *1 {
  1534. a: 0
  1535. }
  1536. }
  1537. Layer: 0 {
  1538. Version: 100
  1539. LayerElement: {
  1540. Type: "LayerElementNormal"
  1541. TypedIndex: 0
  1542. }
  1543. LayerElement: {
  1544. Type: "LayerElementBinormal"
  1545. TypedIndex: 0
  1546. }
  1547. LayerElement: {
  1548. Type: "LayerElementTangent"
  1549. TypedIndex: 0
  1550. }
  1551. LayerElement: {
  1552. Type: "LayerElementMaterial"
  1553. TypedIndex: 0
  1554. }
  1555. LayerElement: {
  1556. Type: "LayerElementSmoothing"
  1557. TypedIndex: 0
  1558. }
  1559. LayerElement: {
  1560. Type: "LayerElementUV"
  1561. TypedIndex: 0
  1562. }
  1563. }
  1564. }
  1565. Geometry: 2463645327664, "Geometry::", "Mesh" {
  1566. Vertices: *24 {
  1567. a: 0.2392578125,192.114303588867,0.244384765625,0.2392578125,217.783142089844,0.244384765625,-107.474609375,158.385223388672,107.955322265625,-121.6328125,180.054702758789,122.11474609375,-0.0009765625,192.114562988281,199.999389648438,-0.0009765625,217.783386230469,199.999389648438,-107.716796875,158.385223388672,199.999389648438,-121.8720703125,180.054748535156,199.999389648438
  1568. }
  1569. PolygonVertexIndex: *24 {
  1570. a: 6,4,5,-8,7,5,1,-4,2,0,4,-7,3,2,6,-8,0,1,5,-5,2,3,1,-1
  1571. }
  1572. Edges: *12 {
  1573. a: 12,9,1,5,3,11,0,7,2,8,6,16
  1574. }
  1575. GeometryVersion: 124
  1576. LayerElementNormal: 0 {
  1577. Version: 102
  1578. Name: ""
  1579. MappingInformationType: "ByVertice"
  1580. ReferenceInformationType: "Direct"
  1581. Normals: *24 {
  1582. a: 0.439071178436279,-0.829060971736908,-0.346228688955307,-0.0139350611716509,0.959081172943115,-0.282788038253784,0.085258275270462,-0.983242452144623,-0.161137044429779,-0.458215147256851,0.88569450378418,-0.0747271031141281,0.529327929019928,-0.827471137046814,0.187359109520912,-0.006662517786026,0.990067541599274,0.140434011816978,0.175364509224892,-0.964076161384583,0.199510455131531,-0.407016813755035,0.902641415596008,0.139913752675056
  1583. }
  1584. NormalsW: *8 {
  1585. a: 1,1,1,1,1,1,1,1
  1586. }
  1587. }
  1588. LayerElementBinormal: 0 {
  1589. Version: 102
  1590. Name: "map1"
  1591. MappingInformationType: "ByPolygonVertex"
  1592. ReferenceInformationType: "Direct"
  1593. Binormals: *72 {
  1594. a: -0.904730260372162,-0.0779007896780968,0.418801546096802,-0.0576719604432583,0.185229659080505,0.981001555919647,-0.0433468967676163,0.140019193291664,-0.98919951915741,-0.0418275259435177,0.134596675634384,-0.990017294883728,-0.0418275259435177,0.134596675634384,-0.990017294883728,-0.868215799331665,-0.07540562748909,0.490423649549484,0.668333828449249,0.219293028116226,0.710802793502808,0.441619753837585,0.153896406292915,-0.883905053138733,-0.996286809444427,-0.0860758498311043,-0.00191304390318692,-0.883903086185455,-0.467669129371643,-0.00106900942046195,-0.842221200466156,-0.539129674434662,-0.00161732733249664,-0.983758151531219,-0.179480314254761,-0.00258847675286233,0.887903451919556,0.459972262382507,0.00728125218302011,-0.839136362075806,0.0163367409259081,-0.543675720691681,-0.904730260372162,-0.0779007896780968,0.418801546096802,0.911767303943634,0.410697728395462,0.00280066579580307,0.205647796392441,0.467868238687515,-0.85953962802887,-0.999888598918915,-0.0148825291544199,-0.00120247213635594,-0.999977827072144,-0.00655862595885992,-0.00120261032134295,0.842284202575684,0.539032757282257,0.00101156532764435,-0.839136362075806,0.0163367409259081,-0.543675720691681,0.441619753837585,0.153896406292915,-0.883905053138733,0.668333828449249,0.219293028116226,0.710802793502808,0.205647796392441,0.467868238687515,-0.85953962802887
  1595. }
  1596. BinormalsW: *24 {
  1597. 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
  1598. }
  1599. }
  1600. LayerElementTangent: 0 {
  1601. Version: 102
  1602. Name: "map1"
  1603. MappingInformationType: "ByPolygonVertex"
  1604. ReferenceInformationType: "Direct"
  1605. Tangents: *72 {
  1606. a: 0.388214498758316,0.253946036100388,0.885889828205109,0.846454977989197,0.530076920986176,-0.0503253564238548,0.999037861824036,0.0126779861748219,-0.0419834703207016,0.912462472915649,0.408805936574936,0.0170278567820787,0.912462472915649,0.408805936574936,0.0170278567820787,-0.49614205956459,0.118659526109695,-0.860094666481018,-0.743730962276459,0.179091721773148,0.644042253494263,0.771369516849518,0.438019603490829,0.461657792329788,0.011989020742476,-0.160701796412468,0.986930191516876,0.161034166812897,-0.306501924991608,0.938149571418762,-0.102349139750004,0.156941711902618,0.982290148735046,-0.038303691893816,0.195816144347191,0.979892373085022,-0.0408213622868061,0.0630140751600266,0.997177541255951,-0.537197530269623,-0.181568682193756,0.823681712150574,0.388214498758316,0.253946036100388,0.885889828205109,-0.0549342632293701,0.128708705306053,-0.990159749984741,0.874600172042847,0.306197792291641,0.375921964645386,-0.00536186946555972,0.282739758491516,0.959181666374207,-0.000269611540716141,-0.140438884496689,0.990089297294617,-0.101829744875431,0.157274156808853,0.982290983200073,-0.537197530269623,-0.181568682193756,0.823681712150574,0.771369516849518,0.438019603490829,0.461657792329788,-0.743730962276459,0.179091721773148,0.644042253494263,0.874600172042847,0.306197792291641,0.375921964645386
  1607. }
  1608. TangentsW: *24 {
  1609. 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
  1610. }
  1611. }
  1612. LayerElementUV: 0 {
  1613. Version: 101
  1614. Name: "map1"
  1615. MappingInformationType: "ByPolygonVertex"
  1616. ReferenceInformationType: "IndexToDirect"
  1617. UV: *26 {
  1618. a: 0,0,1,0,1,1,0,1,0,1,0,1,0,1,0.769174039363861,1.14773881435394,0.499782174825668,0.802426517009735,0.999999403953552,0.802422404289246,0.999999403953552,1.14773881435394,0.195328518748283,1,-0.000100091616332065,0.264812529087067
  1619. }
  1620. UVIndex: *24 {
  1621. a: 0,1,2,3,3,4,5,6,7,8,9,10,11,12,0,3,8,5,2,9,12,6,5,8
  1622. }
  1623. }
  1624. LayerElementSmoothing: 0 {
  1625. Version: 102
  1626. Name: ""
  1627. MappingInformationType: "ByEdge"
  1628. ReferenceInformationType: "Direct"
  1629. Smoothing: *12 {
  1630. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1631. }
  1632. }
  1633. LayerElementMaterial: 0 {
  1634. Version: 101
  1635. Name: ""
  1636. MappingInformationType: "AllSame"
  1637. ReferenceInformationType: "IndexToDirect"
  1638. Materials: *1 {
  1639. a: 0
  1640. }
  1641. }
  1642. Layer: 0 {
  1643. Version: 100
  1644. LayerElement: {
  1645. Type: "LayerElementNormal"
  1646. TypedIndex: 0
  1647. }
  1648. LayerElement: {
  1649. Type: "LayerElementBinormal"
  1650. TypedIndex: 0
  1651. }
  1652. LayerElement: {
  1653. Type: "LayerElementTangent"
  1654. TypedIndex: 0
  1655. }
  1656. LayerElement: {
  1657. Type: "LayerElementMaterial"
  1658. TypedIndex: 0
  1659. }
  1660. LayerElement: {
  1661. Type: "LayerElementSmoothing"
  1662. TypedIndex: 0
  1663. }
  1664. LayerElement: {
  1665. Type: "LayerElementUV"
  1666. TypedIndex: 0
  1667. }
  1668. }
  1669. }
  1670. Geometry: 2463645328176, "Geometry::", "Mesh" {
  1671. Vertices: *24 {
  1672. a: -200.001953125,158.385223388672,107.713623046875,-200.0009765625,180.054672241211,121.874389648438,-200.0009765625,192.114562988281,0.442626953125,-200.0009765625,217.783386230469,0.442626953125,-107.853515625,158.385223388672,107.576904296875,-122.0107421875,180.054702758789,121.736328125,-0.5810546875,192.114562988281,0.3079833984375,-0.5810546875,217.783386230469,0.3079833984375
  1673. }
  1674. PolygonVertexIndex: *24 {
  1675. a: 2,0,1,-4,6,4,0,-3,5,7,3,-2,4,5,1,-1,6,7,5,-5,3,7,6,-3
  1676. }
  1677. Edges: *12 {
  1678. a: 5,1,11,3,7,0,9,2,4,8,12,16
  1679. }
  1680. GeometryVersion: 124
  1681. LayerElementNormal: 0 {
  1682. Version: 102
  1683. Name: ""
  1684. MappingInformationType: "ByVertice"
  1685. ReferenceInformationType: "Direct"
  1686. Normals: *24 {
  1687. a: -0.199314221739769,-0.964027523994446,-0.175854951143265,-0.140284985303879,0.901956915855408,0.408404022455215,-0.187222123146057,-0.826652944087982,-0.530653178691864,-0.14051678776741,0.990054607391357,0.00684519251808524,0.161414593458176,-0.983149170875549,-0.0858089029788971,0.0745101347565651,0.884971439838409,0.459645211696625,0.346565186977386,-0.828200221061707,-0.440428078174591,0.282650649547577,0.959123969078064,0.0137725146487355
  1688. }
  1689. NormalsW: *8 {
  1690. a: 1,1,1,1,1,1,1,1
  1691. }
  1692. }
  1693. LayerElementBinormal: 0 {
  1694. Version: 102
  1695. Name: "map1"
  1696. MappingInformationType: "ByPolygonVertex"
  1697. ReferenceInformationType: "Direct"
  1698. Binormals: *72 {
  1699. a: -0.492325663566589,0.546424448490143,-0.677521824836731,-0.979632556438446,0.191555082798004,0.0602219589054585,0.989964246749878,0.134881556034088,0.0421635657548904,0.88607257604599,0.128837451338768,-0.445282280445099,0.855849623680115,0.471365362405777,-0.212922841310501,0.00435102730989456,0.0876571983098984,-0.996141254901886,-0.00145950901787728,0.179747447371483,-0.983711779117584,-0.000908255577087402,0.540350735187531,-0.841439425945282,-0.990689516067505,0.118355065584183,-0.0672789290547371,-0.639669954776764,0.17777045071125,0.747810184955597,0.88607257604599,0.128837451338768,-0.445282280445099,-0.00161295756697655,0.412274301052094,-0.91105842590332,-0.0204673931002617,-0.0902653485536575,0.995707452297211,-0.254290282726288,0.462550222873688,-0.849343240261078,-0.00161295756697655,0.412274271249771,-0.911058366298676,-0.00754209887236357,-0.177941173315048,0.984012305736542,0.855849623680115,0.471365362405777,-0.212922841310501,-0.639669954776764,0.17777045071125,0.747810184955597,-0.254290282726288,0.462550222873688,-0.849343240261078,0.00435102730989456,0.0876571983098984,-0.996141254901886,0.88607257604599,0.128837451338768,-0.445282280445099,-0.639669954776764,0.17777045071125,0.747810184955597,0.281614631414413,0.539731383323669,-0.793336927890778,-0.492325663566589,0.546424448490143,-0.677521824836731
  1700. }
  1701. BinormalsW: *24 {
  1702. 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
  1703. }
  1704. }
  1705. LayerElementTangent: 0 {
  1706. Version: 102
  1707. Name: "map1"
  1708. MappingInformationType: "ByPolygonVertex"
  1709. ReferenceInformationType: "Direct"
  1710. Tangents: *72 {
  1711. a: -0.850037217140198,-0.134407088160515,0.509285151958466,0.0243697203695774,-0.184276297688484,0.982572317123413,0.017056442797184,-0.410220265388489,0.911826968193054,0.441735684871674,0.0565042831003666,0.895364105701447,-0.383945286273956,0.303148537874222,-0.87217378616333,-0.986877083778381,-0.160418346524239,-0.0184268578886986,-0.979934632778168,0.195811122655869,0.0372332371771336,-0.982317209243774,0.157054111361504,0.101916432380676,0.113941267132759,0.450352668762207,-0.885550558567047,-0.714794397354126,0.2201789021492,-0.663769721984863,0.441735684871674,0.0565042831003666,0.895364105701447,0.990109920501709,0.128466561436653,0.0563810802996159,-0.986674427986145,-0.158965423703194,-0.0346926413476467,-0.964253425598145,-0.053598627448082,0.259504318237305,-0.990109860897064,-0.128466546535492,-0.0563810728490353,-0.979906678199768,0.19745397567749,0.0281954184174538,-0.383945286273956,0.303148537874222,-0.87217378616333,-0.714794397354126,0.2201789021492,-0.663769721984863,-0.964253425598145,-0.053598627448082,0.259504318237305,-0.986877083778381,-0.160418346524239,-0.0184268578886986,0.441735684871674,0.0565042831003666,0.895364105701447,-0.714794397354126,0.2201789021492,-0.663769721984863,0.894754648208618,0.150911897420883,0.42028534412384,-0.850037217140198,-0.134407088160515,0.509285151958466
  1712. }
  1713. TangentsW: *24 {
  1714. 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
  1715. }
  1716. }
  1717. LayerElementUV: 0 {
  1718. Version: 101
  1719. Name: "map1"
  1720. MappingInformationType: "ByPolygonVertex"
  1721. ReferenceInformationType: "IndexToDirect"
  1722. UV: *26 {
  1723. a: 0,0,1,0,1,1,0,1,0.500898480415344,0.802422404289246,0.769194781780243,0.457105427980423,0.999999403953552,0.457105427980423,0.999999403953552,0.802422404289246,0,1,0,1,0,1,0.769294857978821,0.351649075746536,0.804693520069122,1
  1724. }
  1725. UVIndex: *24 {
  1726. a: 0,1,2,3,4,5,6,7,8,9,3,10,11,12,2,6,4,9,12,5,3,9,4,0
  1727. }
  1728. }
  1729. LayerElementSmoothing: 0 {
  1730. Version: 102
  1731. Name: ""
  1732. MappingInformationType: "ByEdge"
  1733. ReferenceInformationType: "Direct"
  1734. Smoothing: *12 {
  1735. a: 1,1,1,1,1,1,1,1,1,1,1,1
  1736. }
  1737. }
  1738. LayerElementMaterial: 0 {
  1739. Version: 101
  1740. Name: ""
  1741. MappingInformationType: "AllSame"
  1742. ReferenceInformationType: "IndexToDirect"
  1743. Materials: *1 {
  1744. a: 0
  1745. }
  1746. }
  1747. Layer: 0 {
  1748. Version: 100
  1749. LayerElement: {
  1750. Type: "LayerElementNormal"
  1751. TypedIndex: 0
  1752. }
  1753. LayerElement: {
  1754. Type: "LayerElementBinormal"
  1755. TypedIndex: 0
  1756. }
  1757. LayerElement: {
  1758. Type: "LayerElementTangent"
  1759. TypedIndex: 0
  1760. }
  1761. LayerElement: {
  1762. Type: "LayerElementMaterial"
  1763. TypedIndex: 0
  1764. }
  1765. LayerElement: {
  1766. Type: "LayerElementSmoothing"
  1767. TypedIndex: 0
  1768. }
  1769. LayerElement: {
  1770. Type: "LayerElementUV"
  1771. TypedIndex: 0
  1772. }
  1773. }
  1774. }
  1775. Geometry: 2463645323056, "Geometry::", "Mesh" {
  1776. Vertices: *30 {
  1777. a: -200.0029296875,83.2720413208008,173.18115234375,-198.173828125,83.2720413208008,198.170166015625,-200.0009765625,158.208526611328,107.980224609375,-200.001953125,179.877975463867,122.137451171875,-173.1669921875,83.2720413208008,173.163818359375,-107.9609375,158.183990478516,107.9580078125,-122.1220703125,179.853485107422,122.116821289063,-173.15234375,83.2720413208008,200,-107.9404296875,158.159454345703,200,-122.1005859375,179.828979492188,200.000732421875
  1778. }
  1779. PolygonVertexIndex: *34 {
  1780. a: 2,0,1,-4,5,4,0,-3,6,5,2,-4,7,8,9,-2,9,6,-4,4,5,8,-8,5,6,9,-9,9,3,-2,4,7,1,-1
  1781. }
  1782. Edges: *17 {
  1783. a: 5,1,3,7,0,11,2,4,8,22,15,20,13,16,12,14,18
  1784. }
  1785. GeometryVersion: 124
  1786. LayerElementNormal: 0 {
  1787. Version: 102
  1788. Name: ""
  1789. MappingInformationType: "ByVertice"
  1790. ReferenceInformationType: "Direct"
  1791. Normals: *30 {
  1792. a: -0.497470885515213,-0.621871709823608,-0.604812622070313,-0.693505108356476,0.193937003612518,0.693858087062836,-0.393357992172241,-0.357952177524567,-0.846841096878052,-0.685360133647919,0.716221272945404,0.131561622023582,0.428910404443741,-0.794602394104004,-0.429700940847397,0.615335822105408,-0.49203360080719,-0.615844786167145,0.342399030923843,0.875003516674042,-0.342245250940323,0.604759573936462,-0.622245788574219,0.497067362070084,0.846875548362732,-0.358351051807404,0.392920285463333,-0.130828231573105,0.715995073318481,0.685736835002899
  1793. }
  1794. NormalsW: *10 {
  1795. a: 1,1,1,1,1,1,1,1,1,1
  1796. }
  1797. }
  1798. LayerElementBinormal: 0 {
  1799. Version: 102
  1800. Name: "map1"
  1801. MappingInformationType: "ByPolygonVertex"
  1802. ReferenceInformationType: "Direct"
  1803. Binormals: *102 {
  1804. a: -0.38206148147583,0.901438593864441,-0.203562349081039,-0.865903079509735,0.313945025205612,0.389423131942749,0.719919800758362,0.22354719042778,0.657070875167847,0.633248031139374,0.496979117393494,0.593303263187408,5.76227903366089e-005,0.781294167041779,-0.624162971973419,-0.000327005982398987,0.475539892911911,-0.879694163799286,-0.000463172793388367,0.697396218776703,-0.716685652732849,-5.00529931741767e-005,0.921103060245514,-0.38931879401207,0.0134601071476936,0.359657675027847,0.93298727273941,0.0104577383026481,0.786292970180511,-0.617765367031097,-0.38206148147583,0.901438593864441,-0.203562349081039,0.000203788309590891,-0.180477187037468,0.983579218387604,-0.683973252773285,-0.0860720351338387,0.72441166639328,-0.309226095676422,0.269273906946182,0.91206955909729,-0.116748921573162,0.675742506980896,-0.72783362865448,-0.562414228916168,0.456177413463593,-0.689632117748261,-0.983676671981812,-0.179945260286331,0.000214725732803345,0.000361219019396231,0.364140659570694,0.931343913078308,0.550447285175323,0.627816915512085,-0.550321519374847,-0.884835481643677,-0.273742854595184,-0.377002716064453,-0.624555587768555,-0.780980348587036,-6.95884227752686e-005,-0.389703303575516,-0.920940577983856,2.58535183093045e-005,-0.71726655960083,-0.696798861026764,0.000389590917620808,0.714794456958771,0.677652776241302,0.172788172960281,-0.804164528846741,0.461300700902939,0.374861508607864,-0.116748921573162,0.675742506980896,-0.72783362865448,0.232552140951157,0.91402542591095,0.332381039857864,0,-0,0,0,-0,0,0,-0,0,-0.884835481643677,-0.273742854595184,-0.377002716064453,-0.683973252773285,-0.0860720351338387,0.72441166639328,0.719919800758362,0.22354719042778,0.657070875167847,0.537156760692596,-0.768287062644959,0.348134458065033
  1805. }
  1806. BinormalsW: *34 {
  1807. 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
  1808. }
  1809. }
  1810. LayerElementTangent: 0 {
  1811. Version: 102
  1812. Name: "map1"
  1813. MappingInformationType: "ByPolygonVertex"
  1814. ReferenceInformationType: "Direct"
  1815. Tangents: *102 {
  1816. a: -0.836240708827972,-0.243472427129745,0.491347789764404,0.0522933043539524,-0.717435777187347,0.694659113883972,0.0276795402169228,-0.9552041888237,0.294650346040726,-0.359553009271622,-0.489937633275986,0.794155359268188,-0.78826504945755,-0.384034365415573,-0.48078665137291,-0.903347015380859,-0.377450525760651,-0.203704178333282,-0.867480576038361,0.356250137090683,0.347222328186035,-0.919385433197021,0.153099298477173,0.362341195344925,-0.939458191394806,0.324060559272766,-0.111368790268898,-0.788195788860321,-0.373692840337753,-0.48897984623909,-0.836240708827972,-0.243472427129745,0.491347789764404,0.728204309940338,0.674132704734802,0.123545899987221,0.407978504896164,0.778075635433197,0.477652341127396,0.432644248008728,0.893910586833954,-0.117229983210564,0.984506726264954,0.175280228257179,0.0048145642504096,0.45026758313179,0.868499040603638,0.207288414239883,-0.123548842966557,0.674515247344971,-0.727849543094635,-0.939554631710052,0.31901490688324,-0.124365352094173,0.476748645305634,0.304750621318817,0.824522733688354,-0.181939691305161,-0.541915059089661,0.820503532886505,0.48092845082283,-0.38467213511467,0.787867486476898,-0.361846923828125,0.15314419567585,0.919572532176971,-0.346113502979279,0.356765359640121,0.867711901664734,0.3323113322258,-0.546525180339813,0.768686950206757,0.485883086919785,0.146869286894798,0.861595630645752,0.984506726264954,0.175280228257179,0.0048145642504096,-0.478248208761215,-0.190110892057419,0.857400953769684,0,0,-0,0,0,-0,0,0,-0,-0.181939691305161,-0.541915059089661,0.820503532886505,0.407978504896164,0.778075635433197,0.477652341127396,0.0276795402169228,-0.9552041888237,0.294650346040726,-0.681164681911469,-0.151692420244217,0.716243028640747
  1817. }
  1818. TangentsW: *34 {
  1819. 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
  1820. }
  1821. }
  1822. LayerElementUV: 0 {
  1823. Version: 101
  1824. Name: "map1"
  1825. MappingInformationType: "ByPolygonVertex"
  1826. ReferenceInformationType: "IndexToDirect"
  1827. UV: *46 {
  1828. a: 0,0,1,0,0.990860819816589,1,0,1,0.769858002662659,0.457105427980423,0.932702124118805,0.227852284908295,0.999999403953552,0.227852299809456,0.999999403953552,0.457105427980423,0.194644898176193,1,-9.97950410237536e-005,0.105153329670429,0,0,1,0,1,1,0.00305101904086769,1,0,1,0,1,0.000701553653925657,1,0.932681441307068,1.37698173522949,0.769735217094421,1.14773893356323,0.999999403953552,1.14773881435394,0.999999403953552,1.3769816160202,0.76983505487442,0.88357013463974,0.805237710475922,1
  1829. }
  1830. UVIndex: *34 {
  1831. a: 0,1,2,3,4,5,6,7,8,9,0,3,10,11,12,13,14,15,16,17,18,19,20,21,22,12,19,14,16,13,17,10,2,6
  1832. }
  1833. }
  1834. LayerElementSmoothing: 0 {
  1835. Version: 102
  1836. Name: ""
  1837. MappingInformationType: "ByEdge"
  1838. ReferenceInformationType: "Direct"
  1839. Smoothing: *17 {
  1840. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1841. }
  1842. }
  1843. LayerElementMaterial: 0 {
  1844. Version: 101
  1845. Name: ""
  1846. MappingInformationType: "AllSame"
  1847. ReferenceInformationType: "IndexToDirect"
  1848. Materials: *1 {
  1849. a: 0
  1850. }
  1851. }
  1852. Layer: 0 {
  1853. Version: 100
  1854. LayerElement: {
  1855. Type: "LayerElementNormal"
  1856. TypedIndex: 0
  1857. }
  1858. LayerElement: {
  1859. Type: "LayerElementBinormal"
  1860. TypedIndex: 0
  1861. }
  1862. LayerElement: {
  1863. Type: "LayerElementTangent"
  1864. TypedIndex: 0
  1865. }
  1866. LayerElement: {
  1867. Type: "LayerElementMaterial"
  1868. TypedIndex: 0
  1869. }
  1870. LayerElement: {
  1871. Type: "LayerElementSmoothing"
  1872. TypedIndex: 0
  1873. }
  1874. LayerElement: {
  1875. Type: "LayerElementUV"
  1876. TypedIndex: 0
  1877. }
  1878. }
  1879. }
  1880. Geometry: 2463645323568, "Geometry::", "Mesh" {
  1881. Vertices: *24 {
  1882. a: -200.0029296875,82.883918762207,173.18115234375,-198.173828125,82.883918762207,198.170166015625,-200.0009765625,8.58819294080604e-006,192.112060546875,-173.1669921875,82.883918762207,173.163818359375,-192.1171875,4.29409647040302e-006,192.11279296875,-200.0048828125,2.84994462163013e-006,199.999389648438,-173.15234375,82.883918762207,200,-192.1171875,7.46070550174463e-014,200
  1883. }
  1884. PolygonVertexIndex: *26 {
  1885. a: 0,2,5,-2,2,4,-6,3,4,2,-1,7,6,1,-6,4,3,6,-8,5,4,-8,3,0,1,-7
  1886. }
  1887. Edges: *13 {
  1888. a: 10,3,4,1,0,7,2,5,11,16,18,12,14
  1889. }
  1890. GeometryVersion: 124
  1891. LayerElementNormal: 0 {
  1892. Version: 102
  1893. Name: ""
  1894. MappingInformationType: "ByVertice"
  1895. ReferenceInformationType: "Direct"
  1896. Normals: *24 {
  1897. a: -0.637217879295349,0.181192651391029,-0.749081134796143,-0.660740375518799,0.355158388614655,0.661275029182434,-0.74556827545166,-0.158795863389969,-0.64723402261734,0.705632507801056,0.0598292052745819,-0.706047594547272,0.669869303703308,-0.319123476743698,-0.670399367809296,-0.706801176071167,0.0086185410618782,0.707359790802002,0.749209702014923,0.180779129266739,0.637184262275696,0.647032558917999,-0.158960610628128,0.745707988739014
  1898. }
  1899. NormalsW: *8 {
  1900. a: 1,1,1,1,1,1,1,1
  1901. }
  1902. }
  1903. LayerElementBinormal: 0 {
  1904. Version: 102
  1905. Name: "map1"
  1906. MappingInformationType: "ByPolygonVertex"
  1907. ReferenceInformationType: "Direct"
  1908. Binormals: *78 {
  1909. a: -0.734617114067078,0.151057243347168,0.661452531814575,-0.595584571361542,0.594519257545471,0.540209233760834,0.699562668800354,0.157062634825706,0.697096526622772,0.738275766372681,0.148414686322212,0.657968103885651,-2.26795673370361e-005,-0.971190810203552,0.238303273916245,-4.04268539568875e-005,-0.902936041355133,0.429775178432465,1.67638063430786e-006,0.999925851821899,-0.0121815195307136,5.43780624866486e-005,0.996424376964569,0.0844895541667938,-0.00011134147644043,0.90287709236145,-0.429898768663406,-0.595584571361542,0.594519257545471,0.540209233760834,7.19577074050903e-005,0.971983671188354,0.235048562288284,-0.726700067520142,0.167448058724403,0.666234314441681,-0.661332249641418,0.151320829987526,0.734671175479889,-0.662641167640686,0.13784895837307,-0.736141502857208,-0.700305044651031,0.132860481739044,-0.701370775699615,-0.429989814758301,-0.902833819389343,0.000117078438051976,0.0844391211867332,-0.996428668498993,-4.60930168628693e-005,0.177270710468292,-0.981664061546326,0.0700761899352074,-0.238581284880638,-0.971122622489929,-5.21540698628087e-007,0.0121933668851852,0.99992573261261,5.44358044862747e-007,-0.430085748434067,-0.902788162231445,-5.06639537434239e-007,-0.238581284880638,-0.971122622489929,-5.21540698628087e-007,0.0278657525777817,0.993315041065216,0.11202110350132,0.0432330891489983,0.978843212127686,0.199992090463638,0.142800256609917,-0.805411815643311,0.57525634765625,0.177270710468292,-0.981664061546326,0.0700761899352074
  1910. }
  1911. BinormalsW: *26 {
  1912. 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
  1913. }
  1914. }
  1915. LayerElementTangent: 0 {
  1916. Version: 102
  1917. Name: "map1"
  1918. MappingInformationType: "ByPolygonVertex"
  1919. ReferenceInformationType: "Direct"
  1920. Tangents: *78 {
  1921. a: -0.233004480600357,-0.971777319908142,-0.0368508398532867,-0.299010008573532,-0.788245320320129,0.537831008434296,0.105091847479343,-0.987551152706146,0.117041252553463,-0.135539978742599,-0.922949433326721,0.360268414020538,0.666429221630096,-0.177686035633087,-0.724085450172424,0.742479026317596,0.287866085767746,0.604861974716187,0.707412242889404,0.00860872678458691,0.706748783588409,-0.708577990531921,0.0596569702029228,-0.703106164932251,-0.742479026317596,-0.288050651550293,-0.604774177074432,-0.299010008573532,-0.788245320320129,0.537831008434296,-0.770683825016022,-0.149723246693611,0.619378387928009,0.230772390961647,0.97298139333725,0.00717233773320913,-0.036393977701664,0.971813201904297,-0.232926100492477,0.352602899074554,0.924586474895477,-0.144260197877884,0.100024953484535,0.991097271442413,0.0878703445196152,0.605296492576599,-0.288186430931091,0.742000460624695,0.703528821468353,0.059585515409708,0.708164393901825,-0.638169288635254,-0.0604523606598377,0.767519116401672,-0.724173903465271,0.17791160941124,0.666272938251495,0.70730721950531,-0.00862548220902681,0.706853687763214,0.605228364467621,-0.288329511880875,0.742000460624695,-0.724173903465271,0.17791160941124,0.666272938251495,0.708029866218567,-0.0987202823162079,0.699248194694519,0.769470155239105,0.0950534418225288,-0.631569921970367,0.736905872821808,0.474525362253189,0.481451451778412,-0.638169288635254,-0.0604523606598377,0.767519116401672
  1922. }
  1923. TangentsW: *26 {
  1924. 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
  1925. }
  1926. }
  1927. LayerElementUV: 0 {
  1928. Version: 101
  1929. Name: "map1"
  1930. MappingInformationType: "ByPolygonVertex"
  1931. ReferenceInformationType: "IndexToDirect"
  1932. UV: *42 {
  1933. a: 0,0,0.999999701976776,1.63465738296509e-005,0.999999761581421,0.296756505966187,0.00578899495303631,1,0,0,0.0197044499218464,0,0,0.296745002269745,0.933157682418823,0.227852284908295,0.980286717414856,1.66686731972732e-005,0.999999403953552,0.227852299809456,0,0,1,0,0.991143941879272,1,0,0.334054499864578,0.98026579618454,1.60481059551239,0.932985365390778,1.3769816160202,0.999999403953552,1.3769816160202,0.999999403953552,1.60481059551239,1,0.334054499864578,0.980274975299835,0,1,0
  1934. }
  1935. UVIndex: *26 {
  1936. a: 0,1,2,3,4,5,6,7,8,1,9,10,11,12,13,14,15,16,17,18,19,20,7,0,12,16
  1937. }
  1938. }
  1939. LayerElementSmoothing: 0 {
  1940. Version: 102
  1941. Name: ""
  1942. MappingInformationType: "ByEdge"
  1943. ReferenceInformationType: "Direct"
  1944. Smoothing: *13 {
  1945. a: 1,1,1,1,1,1,1,1,1,1,1,1,1
  1946. }
  1947. }
  1948. LayerElementMaterial: 0 {
  1949. Version: 101
  1950. Name: ""
  1951. MappingInformationType: "AllSame"
  1952. ReferenceInformationType: "IndexToDirect"
  1953. Materials: *1 {
  1954. a: 0
  1955. }
  1956. }
  1957. Layer: 0 {
  1958. Version: 100
  1959. LayerElement: {
  1960. Type: "LayerElementNormal"
  1961. TypedIndex: 0
  1962. }
  1963. LayerElement: {
  1964. Type: "LayerElementBinormal"
  1965. TypedIndex: 0
  1966. }
  1967. LayerElement: {
  1968. Type: "LayerElementTangent"
  1969. TypedIndex: 0
  1970. }
  1971. LayerElement: {
  1972. Type: "LayerElementMaterial"
  1973. TypedIndex: 0
  1974. }
  1975. LayerElement: {
  1976. Type: "LayerElementSmoothing"
  1977. TypedIndex: 0
  1978. }
  1979. LayerElement: {
  1980. Type: "LayerElementUV"
  1981. TypedIndex: 0
  1982. }
  1983. }
  1984. }
  1985. Geometry: 2463645328688, "Geometry::", "Mesh" {
  1986. Vertices: *24 {
  1987. a: -107.7138671875,158.385223388672,-200.002197265625,-121.8740234375,180.054672241211,-200.00146484375,-0.4423828125,192.114562988281,-200.00146484375,-0.4423828125,217.783386230469,-200.00146484375,-107.5771484375,158.385223388672,-107.853149414063,-121.736328125,180.054702758789,-122.011108398438,-0.3076171875,192.114562988281,-0.5814208984375,-0.3076171875,217.783386230469,-0.5814208984375
  1988. }
  1989. PolygonVertexIndex: *24 {
  1990. a: 2,0,1,-4,6,4,0,-3,5,7,3,-2,4,5,1,-1,6,7,5,-5,3,7,6,-3
  1991. }
  1992. Edges: *12 {
  1993. a: 5,1,11,3,7,0,9,2,4,8,12,16
  1994. }
  1995. GeometryVersion: 124
  1996. LayerElementNormal: 0 {
  1997. Version: 102
  1998. Name: ""
  1999. MappingInformationType: "ByVertice"
  2000. ReferenceInformationType: "Direct"
  2001. Normals: *24 {
  2002. a: 0.175853580236435,-0.964028358459473,-0.199310630559921,-0.408402264118195,0.901957452297211,-0.140286356210709,0.530650794506073,-0.82665479183197,-0.187220752239227,-0.00684510637074709,0.990054666996002,-0.140516519546509,0.0858085453510284,-0.983148992061615,0.16141539812088,-0.45964452624321,0.884971976280212,0.0745090991258621,0.440427660942078,-0.828200995922089,0.346563965082169,-0.0137732215225697,0.959124803543091,0.282648295164108
  2003. }
  2004. NormalsW: *8 {
  2005. a: 1,1,1,1,1,1,1,1
  2006. }
  2007. }
  2008. LayerElementBinormal: 0 {
  2009. Version: 102
  2010. Name: "map1"
  2011. MappingInformationType: "ByPolygonVertex"
  2012. ReferenceInformationType: "Direct"
  2013. Binormals: *72 {
  2014. a: 0.677522778511047,0.546421527862549,-0.492327660322189,-0.0602227449417114,0.191551357507706,-0.979633331298828,-0.0421629212796688,0.13488332927227,0.989964067935944,0.445282340049744,0.128837168216705,0.88607257604599,0.212927103042603,0.471365332603455,0.855848610401154,0.996141254901886,0.08765709400177,0.00435247179120779,0.983712077140808,0.179745942354202,-0.00145950552541763,0.841440975666046,0.54034823179245,-0.000908516230992973,0.0672788023948669,0.118353724479675,-0.990689694881439,-0.747810542583466,0.177768215537071,-0.639670133590698,0.445282340049744,0.128837168216705,0.88607257604599,0.911058902740479,0.412273168563843,-0.00160867348313332,-0.995707452297211,-0.0902649313211441,-0.0204668547958136,0.84934389591217,0.462549269199371,-0.254289418458939,0.911058962345123,0.412273198366165,-0.00160867744125426,-0.984012603759766,-0.177939280867577,-0.00754417758435011,0.212927103042603,0.471365332603455,0.855848610401154,-0.747810542583466,0.177768215537071,-0.639670133590698,0.84934389591217,0.462549269199371,-0.254289418458939,0.996141254901886,0.08765709400177,0.00435247179120779,0.445282340049744,0.128837168216705,0.88607257604599,-0.747810542583466,0.177768215537071,-0.639670133590698,0.793338060379028,0.539730191230774,0.281613320112228,0.677522778511047,0.546421527862549,-0.492327660322189
  2015. }
  2016. BinormalsW: *24 {
  2017. 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
  2018. }
  2019. }
  2020. LayerElementTangent: 0 {
  2021. Version: 102
  2022. Name: "map1"
  2023. MappingInformationType: "ByPolygonVertex"
  2024. ReferenceInformationType: "Direct"
  2025. Tangents: *72 {
  2026. a: -0.509286463260651,-0.134407758712769,-0.85003650188446,-0.982572495937347,-0.184275075793266,0.0243714395910501,-0.911827802658081,-0.410218477249146,0.017057491466403,-0.895364046096802,0.0565042644739151,0.441735774278641,0.872172772884369,0.303146511316299,-0.383948743343353,0.0184283349663019,-0.160419061779976,-0.986877024173737,-0.0372322760522366,0.195807591080666,-0.97993528842926,-0.101915434002876,0.157053127884865,-0.982317507266998,0.885550916194916,0.450352191925049,0.113940484821796,0.66376930475235,0.220177665352821,-0.714795172214508,-0.895364046096802,0.0565042644739151,0.441735774278641,-0.0563853420317173,0.128466114401817,0.990109741687775,0.0346921198070049,-0.158966287970543,-0.986674308776855,-0.259503096342087,-0.0535988882184029,-0.964253723621368,0.056385338306427,-0.128466114401817,-0.99010968208313,-0.0281923823058605,0.197450816631317,-0.979907333850861,0.872172772884369,0.303146511316299,-0.383948743343353,0.66376930475235,0.220177665352821,-0.714795172214508,-0.259503096342087,-0.0535988882184029,-0.964253723621368,0.0184283349663019,-0.160419061779976,-0.986877024173737,-0.895364046096802,0.0565042644739151,0.441735774278641,0.66376930475235,0.220177665352821,-0.714795172214508,-0.420283436775208,0.150912091135979,0.894755482673645,-0.509286463260651,-0.134407758712769,-0.85003650188446
  2027. }
  2028. TangentsW: *24 {
  2029. 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
  2030. }
  2031. }
  2032. LayerElementUV: 0 {
  2033. Version: 101
  2034. Name: "map1"
  2035. MappingInformationType: "ByPolygonVertex"
  2036. ReferenceInformationType: "IndexToDirect"
  2037. UV: *26 {
  2038. a: 0,0,1,0,1,1,0,1,0.500898480415344,0.802422404289246,0.769194781780243,0.457105427980423,0.999999403953552,0.457105427980423,0.999999403953552,0.802422404289246,0,1,0,1,0,1,0.769294857978821,0.351649075746536,0.804693520069122,1
  2039. }
  2040. UVIndex: *24 {
  2041. a: 0,1,2,3,4,5,6,7,8,9,3,10,11,12,2,6,4,9,12,5,3,9,4,0
  2042. }
  2043. }
  2044. LayerElementSmoothing: 0 {
  2045. Version: 102
  2046. Name: ""
  2047. MappingInformationType: "ByEdge"
  2048. ReferenceInformationType: "Direct"
  2049. Smoothing: *12 {
  2050. a: 1,1,1,1,1,1,1,1,1,1,1,1
  2051. }
  2052. }
  2053. LayerElementMaterial: 0 {
  2054. Version: 101
  2055. Name: ""
  2056. MappingInformationType: "AllSame"
  2057. ReferenceInformationType: "IndexToDirect"
  2058. Materials: *1 {
  2059. a: 0
  2060. }
  2061. }
  2062. Layer: 0 {
  2063. Version: 100
  2064. LayerElement: {
  2065. Type: "LayerElementNormal"
  2066. TypedIndex: 0
  2067. }
  2068. LayerElement: {
  2069. Type: "LayerElementBinormal"
  2070. TypedIndex: 0
  2071. }
  2072. LayerElement: {
  2073. Type: "LayerElementTangent"
  2074. TypedIndex: 0
  2075. }
  2076. LayerElement: {
  2077. Type: "LayerElementMaterial"
  2078. TypedIndex: 0
  2079. }
  2080. LayerElement: {
  2081. Type: "LayerElementSmoothing"
  2082. TypedIndex: 0
  2083. }
  2084. LayerElement: {
  2085. Type: "LayerElementUV"
  2086. TypedIndex: 0
  2087. }
  2088. }
  2089. }
  2090. Geometry: 2463645309232, "Geometry::", "Mesh" {
  2091. Vertices: *30 {
  2092. a: -173.1806640625,83.2720413208008,-200.002807617188,-198.169921875,83.2720413208008,-198.17431640625,-107.98046875,158.208526611328,-200.000732421875,-122.1376953125,179.877975463867,-200.002197265625,-173.1640625,83.2720413208008,-173.16650390625,-107.9580078125,158.183990478516,-107.960815429688,-122.1171875,179.853485107422,-122.122314453125,-200,83.2720413208008,-173.152099609375,-200,158.159454345703,-107.940795898438,-200.0009765625,179.828979492188,-122.100219726563
  2093. }
  2094. PolygonVertexIndex: *34 {
  2095. a: 2,0,1,-4,5,4,0,-3,6,5,2,-4,7,8,9,-2,9,6,-4,4,5,8,-8,5,6,9,-9,9,3,-2,4,7,1,-1
  2096. }
  2097. Edges: *17 {
  2098. a: 5,1,3,7,0,11,2,4,8,22,15,20,13,16,12,14,18
  2099. }
  2100. GeometryVersion: 124
  2101. LayerElementNormal: 0 {
  2102. Version: 102
  2103. Name: ""
  2104. MappingInformationType: "ByVertice"
  2105. ReferenceInformationType: "Direct"
  2106. Normals: *30 {
  2107. a: 0.604819118976593,-0.621875047683716,-0.497458845376968,-0.693856060504913,0.193933591246605,-0.693508207798004,0.846844077110291,-0.357950776815414,-0.393352836370468,-0.131564080715179,0.716218531131744,-0.685362577438354,0.429697304964066,-0.794601619243622,0.428915441036224,0.615845680236816,-0.492032796144485,0.615335524082184,0.342245578765869,0.875003695487976,0.342398226261139,-0.497072756290436,-0.622242867946625,0.604758143424988,-0.392928719520569,-0.358346045017242,0.846873760223389,-0.685737669467926,0.715994417667389,-0.13082754611969
  2108. }
  2109. NormalsW: *10 {
  2110. a: 1,1,1,1,1,1,1,1,1,1
  2111. }
  2112. }
  2113. LayerElementBinormal: 0 {
  2114. Version: 102
  2115. Name: "map1"
  2116. MappingInformationType: "ByPolygonVertex"
  2117. ReferenceInformationType: "Direct"
  2118. Binormals: *102 {
  2119. a: 0.20356160402298,0.901438117027283,-0.38206285238266,-0.389414340257645,0.313936680555344,-0.865910053253174,-0.657085537910461,0.223510354757309,0.719917833805084,-0.593307971954346,0.496977359056473,0.63324499130249,0.62416285276413,0.781294226646423,5.59538530069403e-005,0.87969309091568,0.475541651248932,-0.000316157907946035,0.716691672801971,0.697390079498291,-0.000443607510533184,0.389318257570267,0.921103358268738,-4.52399217465427e-005,-0.932987332344055,0.35965770483017,0.0134608224034309,0.617765307426453,0.786293029785156,0.0104558318853378,0.20356160402298,0.901438117027283,-0.38206285238266,-0.983578205108643,-0.180482566356659,0.000202246039407328,-0.724408686161041,-0.0860703065991402,-0.683976650238037,-0.912065625190735,0.269278138875961,-0.309233874082565,0.727832853794098,0.675743460655212,-0.116748005151749,0.689631879329681,0.456182718276978,-0.562410235404968,-0.000222444534301758,-0.179951667785645,-0.983675479888916,-0.931343615055084,0.364141404628754,0.00035974380443804,0.550322115421295,0.627819657325745,0.550443589687347,0.377019703388214,-0.273738175630569,-0.884829759597778,7.29113817214966e-005,-0.780979096889496,-0.624557197093964,-2.30520927289035e-005,-0.920942604541779,-0.389698207378387,-0.000383079051971436,-0.696802318096161,-0.717263102531433,-0.172787383198738,0.67765349149704,0.714793920516968,-0.374869823455811,0.461301505565643,-0.804160058498383,0.727832853794098,0.675743460655212,-0.116748005151749,-0.332387417554855,0.914025783538818,0.232541114091873,-0,-0,0,-0,-0,0,-0,-0,0,0.377019703388214,-0.273738175630569,-0.884829759597778,-0.724408686161041,-0.0860703065991402,-0.683976650238037,-0.657085537910461,0.223510354757309,0.719917833805084,-0.348150968551636,-0.768285512924194,0.537148416042328
  2120. }
  2121. BinormalsW: *34 {
  2122. 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
  2123. }
  2124. }
  2125. LayerElementTangent: 0 {
  2126. Version: 102
  2127. Name: "map1"
  2128. MappingInformationType: "ByPolygonVertex"
  2129. ReferenceInformationType: "Direct"
  2130. Tangents: *102 {
  2131. a: -0.491342961788177,-0.243476137518883,-0.83624255657196,-0.694658398628235,-0.717436552047729,0.0522921644151211,-0.294622272253037,-0.95521354675293,0.0276532620191574,-0.794151484966278,-0.489943414926529,-0.359553813934326,0.480785727500916,-0.384035140275955,-0.788265407085419,0.203715950250626,-0.377449870109558,-0.903344690799713,-0.347198754549026,0.35625633597374,-0.867487549781799,-0.362334817647934,0.15310113132,-0.919387698173523,0.111367896199226,0.32406011223793,-0.939458549022675,0.488978624343872,-0.373693764209747,-0.788195967674255,-0.491342961788177,-0.243476137518883,-0.83624255657196,-0.1235511302948,0.674134254455566,0.728201985359192,-0.477651298046112,0.778078198432922,0.407974898815155,0.117231853306293,0.893911302089691,0.432642221450806,-0.00481494469568133,0.175279095768929,0.984507024288177,-0.207296207547188,0.86849707365036,0.450267851352692,0.727848827838898,0.674514174461365,-0.123558893799782,0.124366596341133,0.31901353597641,-0.939554929733276,-0.824522078037262,0.304751574993134,0.476749449968338,-0.820497632026672,-0.541918516159058,-0.181955873966217,-0.787866830825806,-0.384675711393356,0.480926722288132,-0.91956901550293,0.153143152594566,-0.361856549978256,-0.867708802223206,0.356763601303101,-0.346123069524765,-0.768686413764954,-0.546525001525879,0.332312941551209,-0.861591935157776,0.146865516901016,0.485890924930573,-0.00481494469568133,0.175279095768929,0.984507024288177,-0.857394695281982,-0.190118104219437,-0.47825676202774,0,0,0,0,0,0,0,0,0,-0.820497632026672,-0.541918516159058,-0.181955873966217,-0.477651298046112,0.778078198432922,0.407974898815155,-0.294622272253037,-0.95521354675293,0.0276532620191574,-0.716229557991028,-0.151686862111092,-0.681180119514465
  2132. }
  2133. TangentsW: *34 {
  2134. 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
  2135. }
  2136. }
  2137. LayerElementUV: 0 {
  2138. Version: 101
  2139. Name: "map1"
  2140. MappingInformationType: "ByPolygonVertex"
  2141. ReferenceInformationType: "IndexToDirect"
  2142. UV: *46 {
  2143. a: 0,0,1,0,0.990860819816589,1,0,1,0.769858002662659,0.457105427980423,0.932702124118805,0.227852284908295,0.999999403953552,0.227852299809456,0.999999403953552,0.457105427980423,0.194644898176193,1,-9.97950410237536e-005,0.105153329670429,0,0,1,0,1,1,0.00305101904086769,1,0,1,0,1,0.000701553653925657,1,0.932681441307068,1.37698173522949,0.769735217094421,1.14773893356323,0.999999403953552,1.14773881435394,0.999999403953552,1.3769816160202,0.76983505487442,0.88357013463974,0.805237710475922,1
  2144. }
  2145. UVIndex: *34 {
  2146. a: 0,1,2,3,4,5,6,7,8,9,0,3,10,11,12,13,14,15,16,17,18,19,20,21,22,12,19,14,16,13,17,10,2,6
  2147. }
  2148. }
  2149. LayerElementSmoothing: 0 {
  2150. Version: 102
  2151. Name: ""
  2152. MappingInformationType: "ByEdge"
  2153. ReferenceInformationType: "Direct"
  2154. Smoothing: *17 {
  2155. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  2156. }
  2157. }
  2158. LayerElementMaterial: 0 {
  2159. Version: 101
  2160. Name: ""
  2161. MappingInformationType: "AllSame"
  2162. ReferenceInformationType: "IndexToDirect"
  2163. Materials: *1 {
  2164. a: 0
  2165. }
  2166. }
  2167. Layer: 0 {
  2168. Version: 100
  2169. LayerElement: {
  2170. Type: "LayerElementNormal"
  2171. TypedIndex: 0
  2172. }
  2173. LayerElement: {
  2174. Type: "LayerElementBinormal"
  2175. TypedIndex: 0
  2176. }
  2177. LayerElement: {
  2178. Type: "LayerElementTangent"
  2179. TypedIndex: 0
  2180. }
  2181. LayerElement: {
  2182. Type: "LayerElementMaterial"
  2183. TypedIndex: 0
  2184. }
  2185. LayerElement: {
  2186. Type: "LayerElementSmoothing"
  2187. TypedIndex: 0
  2188. }
  2189. LayerElement: {
  2190. Type: "LayerElementUV"
  2191. TypedIndex: 0
  2192. }
  2193. }
  2194. }
  2195. Geometry: 2463645324080, "Geometry::", "Mesh" {
  2196. Vertices: *24 {
  2197. a: -0.244140625,192.114303588867,0.2388916015625,-0.244140625,217.783142089844,0.2388916015625,-107.955078125,158.385223388672,-107.474731445313,-122.1142578125,180.054702758789,-121.632690429688,-199.9990234375,192.114562988281,-0.00146484375,-199.9990234375,217.783386230469,-0.00146484375,-199.9990234375,158.385223388672,-107.716430664063,-199.9990234375,180.054748535156,-121.872314453125
  2198. }
  2199. PolygonVertexIndex: *24 {
  2200. a: 6,4,5,-8,7,5,1,-4,2,0,4,-7,3,2,6,-8,0,1,5,-5,2,3,1,-1
  2201. }
  2202. Edges: *12 {
  2203. a: 12,9,1,5,3,11,0,7,2,8,6,16
  2204. }
  2205. GeometryVersion: 124
  2206. LayerElementNormal: 0 {
  2207. Version: 102
  2208. Name: ""
  2209. MappingInformationType: "ByVertice"
  2210. ReferenceInformationType: "Direct"
  2211. Normals: *24 {
  2212. a: 0.346229255199432,-0.829059660434723,0.439073294401169,0.28278836607933,0.959081053733826,-0.0139342965558171,0.161136999726295,-0.983242452144623,0.0852588713169098,0.0747279822826386,0.885693550109863,-0.45821687579155,-0.187359645962715,-0.827469944953918,0.529329478740692,-0.140433996915817,0.990067660808563,-0.00666301464661956,-0.199511989951134,-0.964075684547424,0.175365522503853,-0.139912143349648,0.902640640735626,-0.40701887011528
  2213. }
  2214. NormalsW: *8 {
  2215. a: 1,1,1,1,1,1,1,1
  2216. }
  2217. }
  2218. LayerElementBinormal: 0 {
  2219. Version: 102
  2220. Name: "map1"
  2221. MappingInformationType: "ByPolygonVertex"
  2222. ReferenceInformationType: "Direct"
  2223. Binormals: *72 {
  2224. a: -0.418801635503769,-0.0779010728001595,-0.904730200767517,-0.981001377105713,0.185230135917664,-0.0576723925769329,0.98919951915741,0.140019133687019,-0.0433469638228416,0.990017533302307,0.134595111012459,-0.0418272018432617,0.990017533302307,0.134595111012459,-0.0418272018432617,-0.49042209982872,-0.0754058361053467,-0.868216693401337,-0.71080219745636,0.21929258108139,0.668334662914276,0.883903801441193,0.153897598385811,0.441621571779251,0.00191070511937141,-0.0860768333077431,-0.996286690235138,0.0010695606470108,-0.467671245336533,-0.883901834487915,0.00161534547805786,-0.539131045341492,-0.842220366001129,0.00258325785398483,-0.179480358958244,-0.983758151531219,-0.00728064123541117,0.459973990917206,0.887902557849884,0.543674111366272,0.0163358468562365,-0.839137494564056,-0.418801635503769,-0.0779010728001595,-0.904730200767517,-0.002804946154356,0.410699188709259,0.911766648292542,0.859539687633514,0.467868983745575,0.205645620822906,0.00120308448094875,-0.0148819154128432,-0.999888598918915,0.00120322220027447,-0.00655903946608305,-0.999977767467499,-0.00101207953412086,0.5390345454216,0.842283070087433,0.543674111366272,0.0163358468562365,-0.839137494564056,0.883903801441193,0.153897598385811,0.441621571779251,-0.71080219745636,0.21929258108139,0.668334662914276,0.859539687633514,0.467868983745575,0.205645620822906
  2225. }
  2226. BinormalsW: *24 {
  2227. 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
  2228. }
  2229. }
  2230. LayerElementTangent: 0 {
  2231. Version: 102
  2232. Name: "map1"
  2233. MappingInformationType: "ByPolygonVertex"
  2234. ReferenceInformationType: "Direct"
  2235. Tangents: *72 {
  2236. a: -0.88588947057724,0.253947883844376,0.388214260339737,0.0503256022930145,0.53007847070694,0.846453964710236,0.0419834777712822,0.0126784155145288,0.999037861824036,-0.0170278158038855,0.408807992935181,0.912461638450623,-0.0170278158038855,0.408807992935181,0.912461638450623,0.860095620155334,0.118659451603889,-0.496140569448471,-0.644042730331421,0.179092660546303,-0.743730187416077,-0.461659848690033,0.438021123409271,0.771367371082306,-0.986930310726166,-0.160701557993889,0.0119914757087827,-0.938149333000183,-0.306502282619476,0.161034733057022,-0.982290148735046,0.156943067908287,-0.102348051965237,-0.979891955852509,0.195818543434143,-0.0382989458739758,-0.997177481651306,0.0630150586366653,-0.0408213473856449,-0.82368278503418,-0.181569084525108,-0.53719574213028,-0.88588947057724,0.253947883844376,0.388214260339737,0.990160048007965,0.128708899021149,-0.0549299493432045,-0.375921279191971,0.306200385093689,0.874599635601044,-0.959181606769562,0.28274005651474,-0.00536228716373444,-0.990089416503906,-0.140438914299011,-0.000270159100182354,-0.982290863990784,0.157274127006531,-0.101830780506134,-0.82368278503418,-0.181569084525108,-0.53719574213028,-0.461659848690033,0.438021123409271,0.771367371082306,-0.644042730331421,0.179092660546303,-0.743730187416077,-0.375921279191971,0.306200385093689,0.874599635601044
  2237. }
  2238. TangentsW: *24 {
  2239. 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
  2240. }
  2241. }
  2242. LayerElementUV: 0 {
  2243. Version: 101
  2244. Name: "map1"
  2245. MappingInformationType: "ByPolygonVertex"
  2246. ReferenceInformationType: "IndexToDirect"
  2247. UV: *26 {
  2248. a: 0,0,1,0,1,1,0,1,0,1,0,1,0,1,0.769174039363861,1.14773881435394,0.499782174825668,0.802426517009735,0.999999403953552,0.802422404289246,0.999999403953552,1.14773881435394,0.195328518748283,1,-0.000100091616332065,0.264812529087067
  2249. }
  2250. UVIndex: *24 {
  2251. a: 0,1,2,3,3,4,5,6,7,8,9,10,11,12,0,3,8,5,2,9,12,6,5,8
  2252. }
  2253. }
  2254. LayerElementSmoothing: 0 {
  2255. Version: 102
  2256. Name: ""
  2257. MappingInformationType: "ByEdge"
  2258. ReferenceInformationType: "Direct"
  2259. Smoothing: *12 {
  2260. a: 1,1,1,1,1,1,1,1,1,1,1,1
  2261. }
  2262. }
  2263. LayerElementMaterial: 0 {
  2264. Version: 101
  2265. Name: ""
  2266. MappingInformationType: "AllSame"
  2267. ReferenceInformationType: "IndexToDirect"
  2268. Materials: *1 {
  2269. a: 0
  2270. }
  2271. }
  2272. Layer: 0 {
  2273. Version: 100
  2274. LayerElement: {
  2275. Type: "LayerElementNormal"
  2276. TypedIndex: 0
  2277. }
  2278. LayerElement: {
  2279. Type: "LayerElementBinormal"
  2280. TypedIndex: 0
  2281. }
  2282. LayerElement: {
  2283. Type: "LayerElementTangent"
  2284. TypedIndex: 0
  2285. }
  2286. LayerElement: {
  2287. Type: "LayerElementMaterial"
  2288. TypedIndex: 0
  2289. }
  2290. LayerElement: {
  2291. Type: "LayerElementSmoothing"
  2292. TypedIndex: 0
  2293. }
  2294. LayerElement: {
  2295. Type: "LayerElementUV"
  2296. TypedIndex: 0
  2297. }
  2298. }
  2299. }
  2300. Geometry: 2463645303600, "Geometry::", "Mesh" {
  2301. Vertices: *24 {
  2302. a: -173.1806640625,82.883918762207,-200.002807617188,-198.169921875,82.883918762207,-198.17431640625,-192.1123046875,8.58819294080604e-006,-200.000732421875,-173.1640625,82.883918762207,-173.16650390625,-192.1123046875,4.29409647040302e-006,-192.116943359375,-199.9990234375,2.84994462163013e-006,-200.0048828125,-200,82.883918762207,-173.152099609375,-200,7.46070550174463e-014,-192.116943359375
  2303. }
  2304. PolygonVertexIndex: *26 {
  2305. a: 0,2,5,-2,2,4,-6,3,4,2,-1,7,6,1,-6,4,3,6,-8,5,4,-8,3,0,1,-7
  2306. }
  2307. Edges: *13 {
  2308. a: 10,3,4,1,0,7,2,5,11,16,18,12,14
  2309. }
  2310. GeometryVersion: 124
  2311. LayerElementNormal: 0 {
  2312. Version: 102
  2313. Name: ""
  2314. MappingInformationType: "ByVertice"
  2315. ReferenceInformationType: "Direct"
  2316. Normals: *24 {
  2317. a: 0.749095976352692,0.18119253218174,-0.637200474739075,-0.661273539066315,0.35515758395195,-0.660742282867432,0.647246599197388,-0.158798933029175,-0.745556592941284,0.706045210361481,0.0598366111516953,0.705634236335754,0.670404195785522,-0.319124013185501,0.669864237308502,-0.707360327243805,0.00861513335257769,-0.706800699234009,-0.637201070785522,0.180783316493034,0.749194443225861,-0.745724439620972,-0.158959463238716,0.64701372385025
  2318. }
  2319. NormalsW: *8 {
  2320. a: 1,1,1,1,1,1,1,1
  2321. }
  2322. }
  2323. LayerElementBinormal: 0 {
  2324. Version: 102
  2325. Name: "map1"
  2326. MappingInformationType: "ByPolygonVertex"
  2327. ReferenceInformationType: "Direct"
  2328. Binormals: *78 {
  2329. a: -0.661435425281525,0.151058092713356,-0.734632313251495,-0.540204226970673,0.594509243965149,-0.595598995685577,-0.697097957134247,0.157049000263214,0.699564218521118,-0.657971024513245,0.148412257432938,0.738273620605469,-0.238279208540916,-0.97119677066803,-5.28991279225011e-007,-0.429805755615234,-0.902921438217163,-4.91738319396973e-007,0.0121778249740601,0.999925911426544,5.44358044862747e-007,-0.084497943520546,0.996423721313477,5.20758330821991e-005,0.42990830540657,0.902872562408447,-0.00012543797492981,-0.540204226970673,0.594509243965149,-0.595598995685577,-0.235037833452225,0.971986293792725,7.9676516179461e-005,-0.666215777397156,0.167448148131371,-0.726717054843903,-0.734654486179352,0.151324853301048,-0.661349892616272,0.73614364862442,0.13785208761692,-0.662638247013092,0.701369345188141,0.132867738604546,-0.700305163860321,-0.000115141287096776,-0.902831554412842,-0.429994642734528,4.53293359896634e-005,-0.996427774429321,0.0844500660896301,-0.0700788274407387,-0.98166298866272,0.177275732159615,5.36441859821934e-007,-0.971121370792389,-0.238586187362671,-5.44358044862747e-007,0.99992573261261,0.0121885538101196,4.91738262553554e-007,-0.902786493301392,-0.43008890748024,5.36441859821934e-007,-0.971121370792389,-0.238586187362671,-0.112031623721123,0.993313908576965,0.0278655104339123,-0.19999372959137,0.978843152523041,0.0432274863123894,-0.575245499610901,-0.805422782897949,0.142782792448998,-0.0700788274407387,-0.98166298866272,0.177275732159615
  2330. }
  2331. BinormalsW: *26 {
  2332. 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
  2333. }
  2334. }
  2335. LayerElementTangent: 0 {
  2336. Version: 102
  2337. Name: "map1"
  2338. MappingInformationType: "ByPolygonVertex"
  2339. ReferenceInformationType: "Direct"
  2340. Tangents: *78 {
  2341. a: 0.0368555821478367,-0.971777081489563,-0.233004167675972,-0.537820816040039,-0.788252294063568,-0.299010306596756,-0.117029167711735,-0.987553238868713,0.105084642767906,-0.360265731811523,-0.922950148582459,-0.135542303323746,0.724081993103027,-0.177650958299637,0.666442394256592,-0.604834914207459,0.287911176681519,0.742483615875244,-0.706748306751251,0.00860690977424383,0.707412719726563,0.703107535839081,0.0596614070236683,-0.708576321601868,0.604761958122253,-0.288064271211624,-0.742483615875244,-0.537820816040039,-0.788252294063568,-0.299010306596756,-0.619364500045776,-0.14970651268959,-0.770698070526123,-0.00717729143798351,0.972981572151184,0.230771526694298,0.232932761311531,0.971811771392822,-0.036388948559761,0.144256293773651,0.924586355686188,0.352604925632477,-0.0878778025507927,0.991096436977386,0.10002775490284,-0.741996049880981,-0.288193047046661,0.605298757553101,-0.708166778087616,0.0595935732126236,0.703525722026825,-0.767504930496216,-0.0604576170444489,-0.638185799121857,-0.666254580020905,0.177919179201126,-0.724188923835754,-0.706853091716766,-0.00862208474427462,0.707307815551758,-0.741996169090271,-0.288333773612976,0.605231761932373,-0.666254580020905,0.177919179201126,-0.724188923835754,-0.699248909950256,-0.0987276658415794,0.708028197288513,0.631551802158356,0.0950545519590378,0.769484877586365,-0.481466442346573,0.474507451057434,0.736907541751862,-0.767504930496216,-0.0604576170444489,-0.638185799121857
  2342. }
  2343. TangentsW: *26 {
  2344. 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
  2345. }
  2346. }
  2347. LayerElementUV: 0 {
  2348. Version: 101
  2349. Name: "map1"
  2350. MappingInformationType: "ByPolygonVertex"
  2351. ReferenceInformationType: "IndexToDirect"
  2352. UV: *42 {
  2353. a: 0,0,0.999999701976776,1.63465738296509e-005,0.999999761581421,0.296756505966187,0.00578899495303631,1,0,0,0.0197044499218464,0,0,0.296745002269745,0.933157682418823,0.227852284908295,0.980286717414856,1.66686731972732e-005,0.999999403953552,0.227852299809456,0,0,1,0,0.991143941879272,1,0,0.334054499864578,0.98026579618454,1.60481059551239,0.932985365390778,1.3769816160202,0.999999403953552,1.3769816160202,0.999999403953552,1.60481059551239,1,0.334054499864578,0.980274975299835,0,1,0
  2354. }
  2355. UVIndex: *26 {
  2356. a: 0,1,2,3,4,5,6,7,8,1,9,10,11,12,13,14,15,16,17,18,19,20,7,0,12,16
  2357. }
  2358. }
  2359. LayerElementSmoothing: 0 {
  2360. Version: 102
  2361. Name: ""
  2362. MappingInformationType: "ByEdge"
  2363. ReferenceInformationType: "Direct"
  2364. Smoothing: *13 {
  2365. a: 1,1,1,1,1,1,1,1,1,1,1,1,1
  2366. }
  2367. }
  2368. LayerElementMaterial: 0 {
  2369. Version: 101
  2370. Name: ""
  2371. MappingInformationType: "AllSame"
  2372. ReferenceInformationType: "IndexToDirect"
  2373. Materials: *1 {
  2374. a: 0
  2375. }
  2376. }
  2377. Layer: 0 {
  2378. Version: 100
  2379. LayerElement: {
  2380. Type: "LayerElementNormal"
  2381. TypedIndex: 0
  2382. }
  2383. LayerElement: {
  2384. Type: "LayerElementBinormal"
  2385. TypedIndex: 0
  2386. }
  2387. LayerElement: {
  2388. Type: "LayerElementTangent"
  2389. TypedIndex: 0
  2390. }
  2391. LayerElement: {
  2392. Type: "LayerElementMaterial"
  2393. TypedIndex: 0
  2394. }
  2395. LayerElement: {
  2396. Type: "LayerElementSmoothing"
  2397. TypedIndex: 0
  2398. }
  2399. LayerElement: {
  2400. Type: "LayerElementUV"
  2401. TypedIndex: 0
  2402. }
  2403. }
  2404. }
  2405. Model: 2463722205600, "Model::SM_Vaulted_Ceiling_02", "Null" {
  2406. Version: 232
  2407. Properties70: {
  2408. P: "RotationActive", "bool", "", "",1
  2409. P: "InheritType", "enum", "", "",1
  2410. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2411. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2412. }
  2413. Shading: Y
  2414. Culling: "CullingOff"
  2415. }
  2416. Model: 2463722238080, "Model::LOD_Group_SM_Vaulted_Ceiling_01", "LodGroup" {
  2417. Version: 232
  2418. Properties70: {
  2419. P: "RotationActive", "bool", "", "",1
  2420. P: "InheritType", "enum", "", "",1
  2421. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2422. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2423. }
  2424. Shading: Y
  2425. Culling: "CullingOff"
  2426. }
  2427. Model: 2463722261280, "Model::SM_Vaulted_Ceiling_01_LOD0", "Mesh" {
  2428. Version: 232
  2429. Properties70: {
  2430. P: "RotationActive", "bool", "", "",1
  2431. P: "InheritType", "enum", "", "",1
  2432. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2433. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2434. P: "currentUVSet", "KString", "", "U", "map1"
  2435. }
  2436. Shading: T
  2437. Culling: "CullingOff"
  2438. }
  2439. Model: 2463722231120, "Model::SM_Vaulted_Ceiling_01_LOD1", "Mesh" {
  2440. Version: 232
  2441. Properties70: {
  2442. P: "RotationActive", "bool", "", "",1
  2443. P: "InheritType", "enum", "", "",1
  2444. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2445. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2446. P: "currentUVSet", "KString", "", "U", "map1"
  2447. }
  2448. Shading: T
  2449. Culling: "CullingOff"
  2450. }
  2451. Model: 2463722265920, "Model::SM_Vaulted_Ceiling_01_LOD2", "Mesh" {
  2452. Version: 232
  2453. Properties70: {
  2454. P: "RotationActive", "bool", "", "",1
  2455. P: "InheritType", "enum", "", "",1
  2456. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2457. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2458. P: "currentUVSet", "KString", "", "U", "map1"
  2459. }
  2460. Shading: T
  2461. Culling: "CullingOff"
  2462. }
  2463. Model: 2463722247360, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_016", "Mesh" {
  2464. Version: 232
  2465. Properties70: {
  2466. P: "RotationActive", "bool", "", "",1
  2467. P: "InheritType", "enum", "", "",1
  2468. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2469. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2470. P: "currentUVSet", "KString", "", "U", "map1"
  2471. }
  2472. Shading: T
  2473. Culling: "CullingOff"
  2474. }
  2475. Model: 2463722252000, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_01", "Mesh" {
  2476. Version: 232
  2477. Properties70: {
  2478. P: "RotationActive", "bool", "", "",1
  2479. P: "InheritType", "enum", "", "",1
  2480. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2481. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2482. P: "currentUVSet", "KString", "", "U", "map1"
  2483. }
  2484. Shading: T
  2485. Culling: "CullingOff"
  2486. }
  2487. Model: 2463722254320, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_02", "Mesh" {
  2488. Version: 232
  2489. Properties70: {
  2490. P: "RotationActive", "bool", "", "",1
  2491. P: "InheritType", "enum", "", "",1
  2492. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2493. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2494. P: "currentUVSet", "KString", "", "U", "map1"
  2495. }
  2496. Shading: T
  2497. Culling: "CullingOff"
  2498. }
  2499. Model: 2463722270560, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_03", "Mesh" {
  2500. Version: 232
  2501. Properties70: {
  2502. P: "RotationActive", "bool", "", "",1
  2503. P: "InheritType", "enum", "", "",1
  2504. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2505. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2506. P: "currentUVSet", "KString", "", "U", "map1"
  2507. }
  2508. Shading: T
  2509. Culling: "CullingOff"
  2510. }
  2511. Model: 2463722245040, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_04", "Mesh" {
  2512. Version: 232
  2513. Properties70: {
  2514. P: "RotationActive", "bool", "", "",1
  2515. P: "InheritType", "enum", "", "",1
  2516. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2517. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2518. P: "currentUVSet", "KString", "", "U", "map1"
  2519. }
  2520. Shading: T
  2521. Culling: "CullingOff"
  2522. }
  2523. Model: 2463722240400, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_05", "Mesh" {
  2524. Version: 232
  2525. Properties70: {
  2526. P: "RotationActive", "bool", "", "",1
  2527. P: "InheritType", "enum", "", "",1
  2528. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2529. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2530. P: "currentUVSet", "KString", "", "U", "map1"
  2531. }
  2532. Shading: T
  2533. Culling: "CullingOff"
  2534. }
  2535. Model: 2463722272880, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_06", "Mesh" {
  2536. Version: 232
  2537. Properties70: {
  2538. P: "RotationActive", "bool", "", "",1
  2539. P: "InheritType", "enum", "", "",1
  2540. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2541. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2542. P: "currentUVSet", "KString", "", "U", "map1"
  2543. }
  2544. Shading: T
  2545. Culling: "CullingOff"
  2546. }
  2547. Model: 2463722258960, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_07", "Mesh" {
  2548. Version: 232
  2549. Properties70: {
  2550. P: "RotationActive", "bool", "", "",1
  2551. P: "InheritType", "enum", "", "",1
  2552. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2553. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2554. P: "currentUVSet", "KString", "", "U", "map1"
  2555. }
  2556. Shading: T
  2557. Culling: "CullingOff"
  2558. }
  2559. Model: 2463722242720, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_08", "Mesh" {
  2560. Version: 232
  2561. Properties70: {
  2562. P: "RotationActive", "bool", "", "",1
  2563. P: "InheritType", "enum", "", "",1
  2564. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2565. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2566. P: "currentUVSet", "KString", "", "U", "map1"
  2567. }
  2568. Shading: T
  2569. Culling: "CullingOff"
  2570. }
  2571. Model: 2463722256640, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_09", "Mesh" {
  2572. Version: 232
  2573. Properties70: {
  2574. P: "RotationActive", "bool", "", "",1
  2575. P: "InheritType", "enum", "", "",1
  2576. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2577. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2578. P: "currentUVSet", "KString", "", "U", "map1"
  2579. }
  2580. Shading: T
  2581. Culling: "CullingOff"
  2582. }
  2583. Model: 2463722291440, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_010", "Mesh" {
  2584. Version: 232
  2585. Properties70: {
  2586. P: "RotationActive", "bool", "", "",1
  2587. P: "InheritType", "enum", "", "",1
  2588. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2589. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2590. P: "currentUVSet", "KString", "", "U", "map1"
  2591. }
  2592. Shading: T
  2593. Culling: "CullingOff"
  2594. }
  2595. Model: 2463722293760, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_011", "Mesh" {
  2596. Version: 232
  2597. Properties70: {
  2598. P: "RotationActive", "bool", "", "",1
  2599. P: "InheritType", "enum", "", "",1
  2600. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2601. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2602. P: "currentUVSet", "KString", "", "U", "map1"
  2603. }
  2604. Shading: T
  2605. Culling: "CullingOff"
  2606. }
  2607. Model: 2463722275200, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_012", "Mesh" {
  2608. Version: 232
  2609. Properties70: {
  2610. P: "RotationActive", "bool", "", "",1
  2611. P: "InheritType", "enum", "", "",1
  2612. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2613. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2614. P: "currentUVSet", "KString", "", "U", "map1"
  2615. }
  2616. Shading: T
  2617. Culling: "CullingOff"
  2618. }
  2619. Model: 2463722279840, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_013", "Mesh" {
  2620. Version: 232
  2621. Properties70: {
  2622. P: "RotationActive", "bool", "", "",1
  2623. P: "InheritType", "enum", "", "",1
  2624. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2625. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2626. P: "currentUVSet", "KString", "", "U", "map1"
  2627. }
  2628. Shading: T
  2629. Culling: "CullingOff"
  2630. }
  2631. Model: 2463722277520, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_014", "Mesh" {
  2632. Version: 232
  2633. Properties70: {
  2634. P: "RotationActive", "bool", "", "",1
  2635. P: "InheritType", "enum", "", "",1
  2636. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2637. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2638. P: "currentUVSet", "KString", "", "U", "map1"
  2639. }
  2640. Shading: T
  2641. Culling: "CullingOff"
  2642. }
  2643. Model: 2463722296080, "Model::UCX_SM_Vaulted_Ceiling_01_LOD0_015", "Mesh" {
  2644. Version: 232
  2645. Properties70: {
  2646. P: "RotationActive", "bool", "", "",1
  2647. P: "InheritType", "enum", "", "",1
  2648. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  2649. P: "DefaultAttributeIndex", "int", "Integer", "",0
  2650. P: "currentUVSet", "KString", "", "U", "map1"
  2651. }
  2652. Shading: T
  2653. Culling: "CullingOff"
  2654. }
  2655. Material: 2463668305920, "Material::MI_Wall_01", "" {
  2656. Version: 102
  2657. ShadingModel: "phong"
  2658. MultiLayer: 0
  2659. Properties70: {
  2660. P: "AmbientColor", "Color", "", "A",0,0,0
  2661. P: "DiffuseColor", "Color", "", "A",1,1,1
  2662. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  2663. P: "TransparencyFactor", "Number", "", "A",1
  2664. P: "SpecularColor", "Color", "", "A",0,0,0
  2665. P: "ReflectionFactor", "Number", "", "A",0.5
  2666. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  2667. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  2668. P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
  2669. P: "Specular", "Vector3D", "Vector", "",0,0,0
  2670. P: "Shininess", "double", "Number", "",20
  2671. P: "Opacity", "double", "Number", "",1
  2672. P: "Reflectivity", "double", "Number", "",0
  2673. }
  2674. }
  2675. Material: 2463668304000, "Material::M_Collision_01", "" {
  2676. Version: 102
  2677. ShadingModel: "phong"
  2678. MultiLayer: 0
  2679. Properties70: {
  2680. P: "AmbientColor", "Color", "", "A",0,0,0
  2681. P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
  2682. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  2683. P: "TransparencyFactor", "Number", "", "A",1
  2684. P: "SpecularColor", "Color", "", "A",0,0,0
  2685. P: "ReflectionFactor", "Number", "", "A",0.5
  2686. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  2687. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  2688. P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
  2689. P: "Specular", "Vector3D", "Vector", "",0,0,0
  2690. P: "Shininess", "double", "Number", "",20
  2691. P: "Opacity", "double", "Number", "",1
  2692. P: "Reflectivity", "double", "Number", "",0
  2693. }
  2694. }
  2695. Video: 2463478562176, "Video::file4", "Clip" {
  2696. Type: "Clip"
  2697. Properties70: {
  2698. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
  2699. }
  2700. UseMipMap: 0
  2701. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
  2702. RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
  2703. }
  2704. Video: 2463478566976, "Video::file24", "Clip" {
  2705. Type: "Clip"
  2706. Properties70: {
  2707. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
  2708. }
  2709. UseMipMap: 0
  2710. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
  2711. RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
  2712. }
  2713. Texture: 2463668285760, "Texture::file4", "" {
  2714. Type: "TextureVideoClip"
  2715. Version: 202
  2716. TextureName: "Texture::file4"
  2717. Properties70: {
  2718. P: "CurrentTextureBlendMode", "enum", "", "",0
  2719. P: "UVSet", "KString", "", "", "map1"
  2720. P: "UseMaterial", "bool", "", "",1
  2721. }
  2722. Media: "Video::file4"
  2723. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
  2724. RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
  2725. ModelUVTranslation: 0,0
  2726. ModelUVScaling: 1,1
  2727. Texture_Alpha_Source: "None"
  2728. Cropping: 0,0,0,0
  2729. }
  2730. Texture: 2463668286240, "Texture::file24", "" {
  2731. Type: "TextureVideoClip"
  2732. Version: 202
  2733. TextureName: "Texture::file24"
  2734. Properties70: {
  2735. P: "CurrentTextureBlendMode", "enum", "", "",0
  2736. P: "UVSet", "KString", "", "", "map1"
  2737. P: "UseMaterial", "bool", "", "",1
  2738. }
  2739. Media: "Video::file24"
  2740. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
  2741. RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
  2742. ModelUVTranslation: 0,0
  2743. ModelUVScaling: 1,1
  2744. Texture_Alpha_Source: "None"
  2745. Cropping: 0,0,0,0
  2746. }
  2747. AnimationStack: 2467639540768, "AnimStack::Take 001", "" {
  2748. Properties70: {
  2749. P: "LocalStart", "KTime", "Time", "",1539538600
  2750. P: "LocalStop", "KTime", "Time", "",46186158000
  2751. P: "ReferenceStart", "KTime", "Time", "",1539538600
  2752. P: "ReferenceStop", "KTime", "Time", "",46186158000
  2753. }
  2754. }
  2755. AnimationLayer: 2464879595232, "AnimLayer::BaseLayer", "" {
  2756. }
  2757. }
  2758. ; Object connections
  2759. ;------------------------------------------------------------------
  2760. Connections: {
  2761. ;Model::SM_Vaulted_Ceiling_02, Model::RootNode
  2762. C: "OO",2463722205600,0
  2763. ;AnimLayer::BaseLayer, AnimStack::Take 001
  2764. C: "OO",2464879595232,2467639540768
  2765. ;NodeAttribute::, Model::SM_Vaulted_Ceiling_02
  2766. C: "OO",2465320245888,2463722205600
  2767. ;Model::LOD_Group_SM_Vaulted_Ceiling_01, Model::SM_Vaulted_Ceiling_02
  2768. C: "OO",2463722238080,2463722205600
  2769. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_016, Model::SM_Vaulted_Ceiling_02
  2770. C: "OO",2463722247360,2463722205600
  2771. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_01, Model::SM_Vaulted_Ceiling_02
  2772. C: "OO",2463722252000,2463722205600
  2773. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_02, Model::SM_Vaulted_Ceiling_02
  2774. C: "OO",2463722254320,2463722205600
  2775. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_03, Model::SM_Vaulted_Ceiling_02
  2776. C: "OO",2463722270560,2463722205600
  2777. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_04, Model::SM_Vaulted_Ceiling_02
  2778. C: "OO",2463722245040,2463722205600
  2779. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_05, Model::SM_Vaulted_Ceiling_02
  2780. C: "OO",2463722240400,2463722205600
  2781. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_06, Model::SM_Vaulted_Ceiling_02
  2782. C: "OO",2463722272880,2463722205600
  2783. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_07, Model::SM_Vaulted_Ceiling_02
  2784. C: "OO",2463722258960,2463722205600
  2785. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_08, Model::SM_Vaulted_Ceiling_02
  2786. C: "OO",2463722242720,2463722205600
  2787. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_09, Model::SM_Vaulted_Ceiling_02
  2788. C: "OO",2463722256640,2463722205600
  2789. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_010, Model::SM_Vaulted_Ceiling_02
  2790. C: "OO",2463722291440,2463722205600
  2791. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_011, Model::SM_Vaulted_Ceiling_02
  2792. C: "OO",2463722293760,2463722205600
  2793. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_012, Model::SM_Vaulted_Ceiling_02
  2794. C: "OO",2463722275200,2463722205600
  2795. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_013, Model::SM_Vaulted_Ceiling_02
  2796. C: "OO",2463722279840,2463722205600
  2797. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_014, Model::SM_Vaulted_Ceiling_02
  2798. C: "OO",2463722277520,2463722205600
  2799. ;Model::UCX_SM_Vaulted_Ceiling_01_LOD0_015, Model::SM_Vaulted_Ceiling_02
  2800. C: "OO",2463722296080,2463722205600
  2801. ;NodeAttribute::, Model::LOD_Group_SM_Vaulted_Ceiling_01
  2802. C: "OO",2464863086352,2463722238080
  2803. ;Model::SM_Vaulted_Ceiling_01_LOD0, Model::LOD_Group_SM_Vaulted_Ceiling_01
  2804. C: "OO",2463722261280,2463722238080
  2805. ;Model::SM_Vaulted_Ceiling_01_LOD1, Model::LOD_Group_SM_Vaulted_Ceiling_01
  2806. C: "OO",2463722231120,2463722238080
  2807. ;Model::SM_Vaulted_Ceiling_01_LOD2, Model::LOD_Group_SM_Vaulted_Ceiling_01
  2808. C: "OO",2463722265920,2463722238080
  2809. ;Texture::file4, Material::MI_Wall_01
  2810. C: "OP",2463668285760,2463668305920, "DiffuseColor"
  2811. ;Texture::file24, Material::MI_Wall_01
  2812. C: "OP",2463668286240,2463668305920, "NormalMap"
  2813. ;Video::file4, Texture::file4
  2814. C: "OO",2463478562176,2463668285760
  2815. ;Video::file24, Texture::file24
  2816. C: "OO",2463478566976,2463668286240
  2817. ;Geometry::, Model::SM_Vaulted_Ceiling_01_LOD0
  2818. C: "OO",2463645330224,2463722261280
  2819. ;Material::MI_Wall_01, Model::SM_Vaulted_Ceiling_01_LOD0
  2820. C: "OO",2463668305920,2463722261280
  2821. ;Geometry::, Model::SM_Vaulted_Ceiling_01_LOD1
  2822. C: "OO",2463645299504,2463722231120
  2823. ;Material::MI_Wall_01, Model::SM_Vaulted_Ceiling_01_LOD1
  2824. C: "OO",2463668305920,2463722231120
  2825. ;Geometry::, Model::SM_Vaulted_Ceiling_01_LOD2
  2826. C: "OO",2463645307184,2463722265920
  2827. ;Material::MI_Wall_01, Model::SM_Vaulted_Ceiling_01_LOD2
  2828. C: "OO",2463668305920,2463722265920
  2829. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_016
  2830. C: "OO",2463645329712,2463722247360
  2831. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_016
  2832. C: "OO",2463668304000,2463722247360
  2833. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_01
  2834. C: "OO",2463645317424,2463722252000
  2835. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_01
  2836. C: "OO",2463668304000,2463722252000
  2837. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_02
  2838. C: "OO",2463645321520,2463722254320
  2839. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_02
  2840. C: "OO",2463668304000,2463722254320
  2841. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_03
  2842. C: "OO",2463645306160,2463722270560
  2843. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_03
  2844. C: "OO",2463668304000,2463722270560
  2845. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_04
  2846. C: "OO",2463645308208,2463722245040
  2847. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_04
  2848. C: "OO",2463668304000,2463722245040
  2849. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_05
  2850. C: "OO",2463645326640,2463722240400
  2851. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_05
  2852. C: "OO",2463668304000,2463722240400
  2853. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_06
  2854. C: "OO",2463645307696,2463722272880
  2855. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_06
  2856. C: "OO",2463668304000,2463722272880
  2857. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_07
  2858. C: "OO",2463645322544,2463722258960
  2859. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_07
  2860. C: "OO",2463668304000,2463722258960
  2861. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_08
  2862. C: "OO",2463645327664,2463722242720
  2863. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_08
  2864. C: "OO",2463668304000,2463722242720
  2865. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_09
  2866. C: "OO",2463645328176,2463722256640
  2867. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_09
  2868. C: "OO",2463668304000,2463722256640
  2869. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_010
  2870. C: "OO",2463645323056,2463722291440
  2871. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_010
  2872. C: "OO",2463668304000,2463722291440
  2873. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_011
  2874. C: "OO",2463645323568,2463722293760
  2875. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_011
  2876. C: "OO",2463668304000,2463722293760
  2877. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_012
  2878. C: "OO",2463645328688,2463722275200
  2879. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_012
  2880. C: "OO",2463668304000,2463722275200
  2881. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_013
  2882. C: "OO",2463645309232,2463722279840
  2883. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_013
  2884. C: "OO",2463668304000,2463722279840
  2885. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_014
  2886. C: "OO",2463645324080,2463722277520
  2887. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_014
  2888. C: "OO",2463668304000,2463722277520
  2889. ;Geometry::, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_015
  2890. C: "OO",2463645303600,2463722296080
  2891. ;Material::M_Collision_01, Model::UCX_SM_Vaulted_Ceiling_01_LOD0_015
  2892. C: "OO",2463668304000,2463722296080
  2893. }
  2894. ;Takes section
  2895. ;----------------------------------------------------
  2896. Takes: {
  2897. Current: "Take 001"
  2898. Take: "Take 001" {
  2899. FileName: "Take_001.tak"
  2900. LocalTime: 1539538600,46186158000
  2901. ReferenceTime: 1539538600,46186158000
  2902. }
  2903. }