diff --git a/ANX.Framework/Graphics/GraphicsDevice.cs b/ANX.Framework/Graphics/GraphicsDevice.cs index 11bee07a..89507935 100644 --- a/ANX.Framework/Graphics/GraphicsDevice.cs +++ b/ANX.Framework/Graphics/GraphicsDevice.cs @@ -221,16 +221,30 @@ namespace ANX.Framework.Graphics #region SetVertexBuffer public void SetVertexBuffer(VertexBuffer vertexBuffer) { - VertexBufferBinding[] bindings = new VertexBufferBinding[] { new VertexBufferBinding(vertexBuffer) }; - this.currentVertexBufferBindings = bindings; - NativeDevice.SetVertexBuffers(bindings); + if (vertexBuffer != null) + { + VertexBufferBinding[] bindings = new VertexBufferBinding[] { new VertexBufferBinding(vertexBuffer) }; + this.currentVertexBufferBindings = bindings; + NativeDevice.SetVertexBuffers(bindings); + } + else + { + SetVertexBuffers(null); + } } public void SetVertexBuffer(VertexBuffer vertexBuffer, int vertexOffset) { - VertexBufferBinding[] bindings = new VertexBufferBinding[] { new VertexBufferBinding(vertexBuffer, vertexOffset) }; - this.currentVertexBufferBindings = bindings; - NativeDevice.SetVertexBuffers(bindings); + if (vertexBuffer != null) + { + VertexBufferBinding[] bindings = new VertexBufferBinding[] { new VertexBufferBinding(vertexBuffer, vertexOffset) }; + this.currentVertexBufferBindings = bindings; + NativeDevice.SetVertexBuffers(bindings); + } + else + { + SetVertexBuffers(null); + } } public void SetVertexBuffers(params Graphics.VertexBufferBinding[] vertexBuffers) diff --git a/RenderSystems/ANX.RenderSystem.DX.SharedSources/DxFormatConverter.cs b/RenderSystems/ANX.RenderSystem.DX.SharedSources/DxFormatConverter.cs index 89facfd4..aa04f9a0 100644 --- a/RenderSystems/ANX.RenderSystem.DX.SharedSources/DxFormatConverter.cs +++ b/RenderSystems/ANX.RenderSystem.DX.SharedSources/DxFormatConverter.cs @@ -56,6 +56,8 @@ namespace ANX.RenderSystem.Windows.DX11 { case SurfaceFormat.Color: return SharpDX.DXGI.Format.R8G8B8A8_UNorm; + case SurfaceFormat.Dxt1: + return SharpDX.DXGI.Format.BC1_UNorm; case SurfaceFormat.Dxt3: return SharpDX.DXGI.Format.BC2_UNorm; case SurfaceFormat.Dxt5: diff --git a/RenderSystems/ANX.RenderSystem.Windows.DX10/GraphicsDeviceDX.cs b/RenderSystems/ANX.RenderSystem.Windows.DX10/GraphicsDeviceDX.cs index 6b32079f..9876ac4b 100644 --- a/RenderSystems/ANX.RenderSystem.Windows.DX10/GraphicsDeviceDX.cs +++ b/RenderSystems/ANX.RenderSystem.Windows.DX10/GraphicsDeviceDX.cs @@ -211,8 +211,8 @@ namespace ANX.RenderSystem.Windows.DX10 nativeDevice.DrawIndexed(vertexCount, startIndex, baseVertex); } - nativeDevice.InputAssembler.InputLayout.Dispose(); - nativeDevice.InputAssembler.InputLayout = null; + //nativeDevice.InputAssembler.InputLayout.Dispose(); + //nativeDevice.InputAssembler.InputLayout = null; } #endregion @@ -373,8 +373,8 @@ namespace ANX.RenderSystem.Windows.DX10 if (nativeVertexBuffer != null) { - nativeVertexBufferBindings[i] = new Dx10.VertexBufferBinding(nativeVertexBuffer.NativeBuffer, - anxVertexBufferBinding.VertexBuffer.VertexDeclaration.VertexStride, anxVertexBufferBinding.VertexOffset); + int vertexStride = anxVertexBufferBinding.VertexBuffer.VertexDeclaration.VertexStride; + nativeVertexBufferBindings[i] = new Dx10.VertexBufferBinding(nativeVertexBuffer.NativeBuffer, vertexStride, anxVertexBufferBinding.VertexOffset * vertexStride); } else { diff --git a/RenderSystems/ANX.RenderSystem.Windows.DX11/GraphicsDeviceDX.cs b/RenderSystems/ANX.RenderSystem.Windows.DX11/GraphicsDeviceDX.cs index 455531aa..18b86a81 100644 --- a/RenderSystems/ANX.RenderSystem.Windows.DX11/GraphicsDeviceDX.cs +++ b/RenderSystems/ANX.RenderSystem.Windows.DX11/GraphicsDeviceDX.cs @@ -386,7 +386,8 @@ namespace ANX.RenderSystem.Windows.DX11 if (nativeVertexBuffer != null) { - nativeVertexBufferBindings[i] = new SharpDX.Direct3D11.VertexBufferBinding(nativeVertexBuffer.NativeBuffer, anxVertexBufferBinding.VertexBuffer.VertexDeclaration.VertexStride, anxVertexBufferBinding.VertexOffset); + int vertexStride = anxVertexBufferBinding.VertexBuffer.VertexDeclaration.VertexStride; + nativeVertexBufferBindings[i] = new SharpDX.Direct3D11.VertexBufferBinding(nativeVertexBuffer.NativeBuffer, vertexStride, anxVertexBufferBinding.VertexOffset * vertexStride); } else { diff --git a/Samples/ModelSample/ModelSample/Game1.cs b/Samples/ModelSample/ModelSample/Game1.cs index 06d96c61..47f1b192 100644 --- a/Samples/ModelSample/ModelSample/Game1.cs +++ b/Samples/ModelSample/ModelSample/Game1.cs @@ -47,7 +47,7 @@ namespace ModelSample spriteBatch = new SpriteBatch(GraphicsDevice); effect = Content.Load("Effects/SimpleEffect"); - cubeModel = Content.Load("Models/Cube"); + cubeModel = Content.Load("Models/SphereAndCube"); cubeWorld = Matrix.Identity; anxLogo = Content.Load("Models/ANX_vertex_color"); @@ -56,13 +56,18 @@ namespace ModelSample texture = Content.Load("Textures/Test_100x100"); // Ovrride the basic effect in the model for testing - if (overrideWithSimpleEffect) + foreach (var mesh in cubeModel.Meshes) { - foreach (var mesh in cubeModel.Meshes) + foreach (var part in mesh.MeshParts) { - foreach (var part in mesh.MeshParts) + if (overrideWithSimpleEffect) { part.Effect = effect; + } + else + { + ((BasicEffect)part.Effect).TextureEnabled = true; + ((BasicEffect)part.Effect).EnableDefaultLighting(); } } } diff --git a/Samples/ModelSample/ModelSample/ModelSample.csproj b/Samples/ModelSample/ModelSample/ModelSample.csproj index 1a3a7b24..ca8c4661 100644 --- a/Samples/ModelSample/ModelSample/ModelSample.csproj +++ b/Samples/ModelSample/ModelSample/ModelSample.csproj @@ -142,10 +142,18 @@ {068EB2E9-963C-4E1B-8831-E25011F11FFE} ANX.PlatformSystem.Windows + + {EB8258E0-6741-4DB9-B756-1EBDF67B1ED6} + ANX.RenderSystem.GL3 + {5BE49183-2F6F-4527-AC90-D816911FCF90} ANX.RenderSystem.Windows.DX10 + + {B30DE9C2-0926-46B6-8351-9AF276C472D5} + ANX.RenderSystem.Windows.DX11 + {FA6E229D-4504-47B1-8A23-2D3FCC13F778} SampleContent diff --git a/Samples/SampleContent/Models/Sphere.fbx b/Samples/SampleContent/Models/Sphere.fbx new file mode 100644 index 00000000..7b45a43f --- /dev/null +++ b/Samples/SampleContent/Models/Sphere.fbx @@ -0,0 +1,1038 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2012 + Month: 09 + Day: 20 + Hour: 07 + Minute: 18 + Second: 39 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2012-09-20 07:18:39:000" +Creator: "Blender version 2.63 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 5 + ObjectType: "Model" { + Count: 1 + } + ObjectType: "Geometry" { + Count: 1 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Sphere", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.195090,0.000000,0.980785,-0.382683,0.000000,0.923880,-0.555570,0.000000,0.831470,-0.707107,0.000000,0.707107,-0.831470,0.000000,0.555570,-0.923880,0.000000,0.382683,-0.980785,0.000000,0.195090 + ,-1.000000,0.000000,0.000000,-0.980785,0.000000,-0.195090,-0.923880,0.000000,-0.382683,-0.831470,0.000000,-0.555570,-0.707107,0.000000,-0.707107,-0.555570,0.000000,-0.831470,-0.382683,0.000000,-0.923880 + ,-0.195090,0.000000,-0.980785,-0.191342,0.038060,0.980785,-0.375330,0.074658,0.923880,-0.544895,0.108386,0.831470,-0.693520,0.137950,0.707107,-0.815493,0.162212,0.555570,-0.906127,0.180240,0.382683 + ,-0.961940,0.191342,0.195090,-0.980785,0.195090,0.000000,-0.961940,0.191342,-0.195090,-0.906127,0.180240,-0.382683,-0.815493,0.162212,-0.555570,-0.693520,0.137950,-0.707107,-0.544895,0.108386,-0.831470 + ,-0.375330,0.074658,-0.923880,-0.191341,0.038060,-0.980785,-0.180240,0.074658,0.980785,-0.353553,0.146447,0.923880,-0.513280,0.212608,0.831470,-0.653281,0.270598,0.707107,-0.768178,0.318190,0.555570 + ,-0.853553,0.353553,0.382683,-0.906127,0.375330,0.195090,-0.923880,0.382684,0.000000,-0.906127,0.375330,-0.195090,-0.853553,0.353554,-0.382683,-0.768178,0.318190,-0.555570,-0.653281,0.270598,-0.707107 + ,-0.513280,0.212608,-0.831470,-0.353553,0.146447,-0.923880,-0.180240,0.074658,-0.980785,-0.162212,0.108387,0.980785,-0.318190,0.212608,0.923880,-0.461940,0.308658,0.831470,-0.587938,0.392848,0.707107 + ,-0.691342,0.461940,0.555570,-0.768178,0.513280,0.382683,-0.815493,0.544895,0.195090,-0.831470,0.555570,0.000000,-0.815493,0.544895,-0.195090,-0.768178,0.513280,-0.382683,-0.691342,0.461940,-0.555570 + ,-0.587938,0.392848,-0.707107,-0.461940,0.308658,-0.831470,-0.318189,0.212608,-0.923880,-0.162211,0.108386,-0.980785,-0.137950,0.137950,0.980785,-0.270598,0.270598,0.923880,-0.392847,0.392848,0.831470 + ,-0.500000,0.500000,0.707107,-0.587938,0.587938,0.555570,-0.653281,0.653282,0.382683,-0.693520,0.693520,0.195090,-0.707107,0.707107,0.000000,-0.693520,0.693520,-0.195090,-0.653281,0.653282,-0.382683 + ,-0.587938,0.587938,-0.555570,-0.500000,0.500000,-0.707107,-0.392847,0.392848,-0.831470,-0.270598,0.270598,-0.923880,-0.137949,0.137950,-0.980785,-0.108386,0.162212,0.980785,-0.212607,0.318190,0.923880 + ,-0.308658,0.461940,0.831470,-0.392847,0.587938,0.707107,-0.461939,0.691342,0.555570,-0.513280,0.768178,0.382683,-0.544895,0.815493,0.195090,-0.555570,0.831470,0.000000,-0.544895,0.815493,-0.195090 + ,-0.513280,0.768178,-0.382683,-0.461939,0.691342,-0.555570,-0.392847,0.587938,-0.707107,-0.308658,0.461940,-0.831470,-0.212607,0.318190,-0.923880,-0.108386,0.162212,-0.980785,-0.074658,0.180240,0.980785 + ,-0.146446,0.353554,0.923880,-0.212607,0.513280,0.831470,-0.270598,0.653282,0.707107,-0.318189,0.768178,0.555570,-0.353553,0.853554,0.382683,-0.375330,0.906128,0.195090,-0.382683,0.923880,0.000000 + ,-0.375330,0.906128,-0.195090,-0.353553,0.853554,-0.382683,-0.318189,0.768178,-0.555570,-0.270598,0.653282,-0.707107,-0.212607,0.513280,-0.831470,-0.146446,0.353554,-0.923880,-0.074658,0.180240,-0.980785 + ,-0.038060,0.191342,0.980785,-0.074658,0.375331,0.923880,-0.108386,0.544895,0.831470,-0.137949,0.693520,0.707107,-0.162211,0.815493,0.555570,-0.180240,0.906128,0.382683,-0.191341,0.961940,0.195090 + ,-0.195090,0.980785,0.000000,-0.191341,0.961940,-0.195090,-0.180240,0.906128,-0.382683,-0.162211,0.815493,-0.555570,-0.137949,0.693520,-0.707107,-0.108386,0.544895,-0.831470,-0.074658,0.375330,-0.923880 + ,-0.038060,0.191342,-0.980785,0.000000,0.195091,0.980785,0.000000,0.382684,0.923880,0.000000,0.555570,0.831470,0.000000,0.707107,0.707107,0.000000,0.831470,0.555570,0.000000,0.923880,0.382683 + ,0.000000,0.980785,0.195090,0.000000,1.000000,0.000000,0.000000,0.980785,-0.195090,0.000000,0.923880,-0.382683,0.000000,0.831470,-0.555570,0.000000,0.707107,-0.707107,0.000000,0.555570,-0.831470 + ,0.000000,0.382684,-0.923880,0.000000,0.195090,-0.980785,0.038061,0.191342,0.980785,0.074658,0.375330,0.923880,0.108387,0.544895,0.831470,0.137950,0.693520,0.707107,0.162212,0.815493,0.555570 + ,0.180240,0.906128,0.382683,0.191342,0.961940,0.195090,0.195091,0.980785,0.000000,0.191342,0.961940,-0.195090,0.180240,0.906128,-0.382683,0.162212,0.815493,-0.555570,0.137950,0.693520,-0.707107 + ,0.108387,0.544895,-0.831470,0.074658,0.375330,-0.923880,0.038061,0.191342,-0.980785,0.074658,0.180240,0.980785,0.146447,0.353554,0.923880,0.212608,0.513280,0.831470,0.270599,0.653282,0.707107 + ,0.318190,0.768178,0.555570,0.353554,0.853553,0.382683,0.375331,0.906127,0.195090,0.382684,0.923880,0.000000,0.375331,0.906127,-0.195090,0.353554,0.853554,-0.382683,0.318190,0.768178,-0.555570 + ,0.270599,0.653282,-0.707107,0.212608,0.513280,-0.831470,0.146447,0.353553,-0.923880,0.074658,0.180240,-0.980785,0.108387,0.162212,0.980785,0.212608,0.318190,0.923880,0.308659,0.461940,0.831470 + ,0.392848,0.587938,0.707107,0.461940,0.691342,0.555570,0.513280,0.768178,0.382683,0.544895,0.815493,0.195090,0.555571,0.831470,0.000000,0.544895,0.815493,-0.195090,0.513280,0.768178,-0.382683 + ,0.461940,0.691342,-0.555570,0.392848,0.587938,-0.707107,0.308659,0.461940,-0.831470,0.212608,0.318190,-0.923880,0.108387,0.162212,-0.980785,0.137950,0.137950,0.980785,0.270599,0.270598,0.923880 + ,0.392848,0.392848,0.831470,0.500000,0.500000,0.707107,0.587938,0.587938,0.555570,0.653282,0.653281,0.382683,0.693520,0.693520,0.195090,0.707107,0.707107,0.000000,0.693520,0.693520,-0.195090 + ,0.653282,0.653282,-0.382683,0.587938,0.587938,-0.555570,0.500000,0.500000,-0.707107,0.392848,0.392847,-0.831470,0.270598,0.270598,-0.923880,0.137950,0.137950,-0.980785,0.162212,0.108386,0.980785 + ,0.318190,0.212608,0.923880,0.461940,0.308658,0.831470,0.587938,0.392847,0.707107,0.691342,0.461940,0.555570,0.768178,0.513280,0.382683,0.815493,0.544895,0.195090,0.831470,0.555570,0.000000 + ,0.815493,0.544895,-0.195090,0.768178,0.513280,-0.382683,0.691342,0.461940,-0.555570,0.587938,0.392847,-0.707107,0.461940,0.308658,-0.831470,0.318190,0.212608,-0.923880,0.162212,0.108386,-0.980785 + ,0.180240,0.074658,0.980785,0.353554,0.146447,0.923880,0.513280,0.212608,0.831470,0.653282,0.270598,0.707107,0.768178,0.318190,0.555570,0.853554,0.353553,0.382683,0.906128,0.375330,0.195090 + ,0.923880,0.382683,0.000000,0.906128,0.375330,-0.195090,0.853554,0.353553,-0.382683,0.768178,0.318190,-0.555570,0.653282,0.270598,-0.707107,0.513280,0.212607,-0.831470,0.353554,0.146447,-0.923880 + ,0.180240,0.074658,-0.980785,0.191342,0.038060,0.980785,0.375331,0.074658,0.923880,0.544896,0.108386,0.831470,0.693520,0.137950,0.707107,0.815493,0.162212,0.555570,0.906128,0.180240,0.382683 + ,0.961940,0.191342,0.195090,0.980785,0.195090,0.000000,0.961940,0.191342,-0.195090,0.906128,0.180240,-0.382683,0.815493,0.162212,-0.555570,0.693520,0.137950,-0.707107,0.544895,0.108386,-0.831470 + ,0.375331,0.074658,-0.923880,0.191342,0.038060,-0.980785,0.195091,-0.000000,0.980785,0.382684,-0.000000,0.923880,0.555571,-0.000000,0.831470,0.707107,-0.000000,0.707107,0.831470,-0.000000,0.555570 + ,0.923880,-0.000000,0.382683,0.980785,-0.000000,0.195090,1.000000,-0.000000,0.000000,0.980785,-0.000000,-0.195090,0.923880,-0.000000,-0.382683,0.831470,-0.000000,-0.555570,0.707107,-0.000000,-0.707107 + ,0.555571,-0.000000,-0.831470,0.382684,-0.000000,-0.923880,0.195091,0.000000,-0.980785,0.191342,-0.038060,0.980785,0.375331,-0.074658,0.923880,0.544896,-0.108386,0.831470,0.693520,-0.137950,0.707107 + ,0.815493,-0.162212,0.555570,0.906128,-0.180240,0.382683,0.961940,-0.191342,0.195090,0.980785,-0.195090,0.000000,0.961940,-0.191342,-0.195090,0.906128,-0.180240,-0.382683,0.815493,-0.162212,-0.555570 + ,0.693520,-0.137950,-0.707107,0.544895,-0.108386,-0.831470,0.375331,-0.074658,-0.923880,0.191342,-0.038060,-0.980785,0.180240,-0.074658,0.980785,0.353554,-0.146447,0.923880,0.513280,-0.212608,0.831470 + ,0.653282,-0.270598,0.707107,0.768178,-0.318190,0.555570,0.853554,-0.353554,0.382683,0.906128,-0.375330,0.195090,0.923880,-0.382683,0.000000,0.906128,-0.375330,-0.195090,0.853554,-0.353553,-0.382683 + ,0.768178,-0.318190,-0.555570,0.653282,-0.270598,-0.707107,0.513280,-0.212608,-0.831470,0.353554,-0.146447,-0.923880,0.180240,-0.074658,-0.980785,0.162212,-0.108387,0.980785,0.318190,-0.212608,0.923880 + ,0.461940,-0.308658,0.831470,0.587938,-0.392848,0.707107,0.691342,-0.461940,0.555570,0.768178,-0.513280,0.382683,0.815493,-0.544895,0.195090,0.831470,-0.555570,0.000000,0.815493,-0.544895,-0.195090 + ,0.768178,-0.513280,-0.382683,0.691342,-0.461940,-0.555570,0.587938,-0.392848,-0.707107,0.461940,-0.308658,-0.831470,0.318190,-0.212608,-0.923880,0.162212,-0.108386,-0.980785,0.137950,-0.137950,0.980785 + ,0.270598,-0.270598,0.923880,0.392848,-0.392848,0.831470,0.500000,-0.500000,0.707107,0.587938,-0.587938,0.555570,0.653282,-0.653282,0.382683,0.693520,-0.693520,0.195090,0.707107,-0.707107,0.000000 + ,0.693520,-0.693520,-0.195090,0.653282,-0.653282,-0.382683,0.587938,-0.587938,-0.555570,0.500000,-0.500000,-0.707107,0.392848,-0.392848,-0.831470,0.270598,-0.270598,-0.923880,0.137950,-0.137950,-0.980785 + ,0.108387,-0.162212,0.980785,0.212608,-0.318190,0.923880,0.308659,-0.461940,0.831470,0.392848,-0.587938,0.707107,0.461940,-0.691342,0.555570,0.513280,-0.768178,0.382683,0.544895,-0.815493,0.195090 + ,0.555570,-0.831469,0.000000,0.544895,-0.815493,-0.195090,0.513280,-0.768178,-0.382683,0.461940,-0.691342,-0.555570,0.392848,-0.587938,-0.707107,0.308659,-0.461940,-0.831470,0.212608,-0.318190,-0.923880 + ,0.108387,-0.162212,-0.980785,0.000000,0.000000,-1.000000,0.074658,-0.180240,0.980785,0.146447,-0.353554,0.923880,0.212608,-0.513280,0.831470,0.270598,-0.653281,0.707107,0.318190,-0.768178,0.555570 + ,0.353554,-0.853553,0.382683,0.375330,-0.906127,0.195090,0.382683,-0.923879,0.000000,0.375330,-0.906127,-0.195090,0.353554,-0.853553,-0.382683,0.318190,-0.768178,-0.555570,0.270598,-0.653281,-0.707107 + ,0.212608,-0.513280,-0.831470,0.146447,-0.353553,-0.923880,0.074658,-0.180240,-0.980785,0.038061,-0.191342,0.980785,0.074658,-0.375330,0.923880,0.108387,-0.544895,0.831470,0.137950,-0.693520,0.707107 + ,0.162212,-0.815493,0.555570,0.180240,-0.906127,0.382683,0.191342,-0.961940,0.195090,0.195090,-0.980785,0.000000,0.191342,-0.961940,-0.195090,0.180240,-0.906128,-0.382683,0.162212,-0.815493,-0.555570 + ,0.137950,-0.693520,-0.707107,0.108387,-0.544895,-0.831470,0.074658,-0.375330,-0.923880,0.038061,-0.191342,-0.980785,0.000000,-0.195090,0.980785,0.000000,-0.382684,0.923880,0.000000,-0.555570,0.831470 + ,0.000000,-0.707107,0.707107,0.000000,-0.831469,0.555570,0.000000,-0.923879,0.382683,0.000000,-0.980785,0.195090,0.000000,-1.000000,0.000000,0.000000,-0.980785,-0.195090,0.000000,-0.923880,-0.382683 + ,0.000000,-0.831469,-0.555570,0.000000,-0.707107,-0.707107,0.000000,-0.555570,-0.831470,0.000000,-0.382683,-0.923880,0.000000,-0.195090,-0.980785,-0.038060,-0.191342,0.980785,-0.074658,-0.375330,0.923880 + ,-0.108386,-0.544895,0.831470,-0.137949,-0.693520,0.707107,-0.162211,-0.815493,0.555570,-0.180240,-0.906127,0.382683,-0.191342,-0.961939,0.195090,-0.195090,-0.980785,0.000000,-0.191342,-0.961939,-0.195090 + ,-0.180240,-0.906127,-0.382683,-0.162211,-0.815493,-0.555570,-0.137949,-0.693520,-0.707107,-0.108386,-0.544895,-0.831470,-0.074658,-0.375330,-0.923880,-0.038060,-0.191342,-0.980785,-0.074658,-0.180240,0.980785 + ,-0.146446,-0.353553,0.923880,-0.212607,-0.513280,0.831470,-0.270598,-0.653281,0.707107,-0.318189,-0.768177,0.555570,-0.353553,-0.853553,0.382683,-0.375330,-0.906127,0.195090,-0.382683,-0.923879,0.000000 + ,-0.375330,-0.906127,-0.195090,-0.353553,-0.853553,-0.382683,-0.318189,-0.768177,-0.555570,-0.270598,-0.653281,-0.707107,-0.212607,-0.513280,-0.831470,-0.146446,-0.353553,-0.923880,-0.074657,-0.180240,-0.980785 + ,-0.108386,-0.162212,0.980785,-0.212607,-0.318190,0.923880,-0.308658,-0.461940,0.831470,-0.392847,-0.587938,0.707107,-0.461939,-0.691341,0.555570,-0.513280,-0.768178,0.382683,-0.544895,-0.815493,0.195090 + ,-0.555570,-0.831469,0.000000,-0.544895,-0.815493,-0.195090,-0.513280,-0.768178,-0.382683,-0.461939,-0.691341,-0.555570,-0.392847,-0.587938,-0.707107,-0.308658,-0.461940,-0.831470,-0.212607,-0.318190,-0.923880 + ,-0.108386,-0.162212,-0.980785,-0.137949,-0.137950,0.980785,-0.270598,-0.270598,0.923880,-0.392847,-0.392847,0.831470,-0.500000,-0.500000,0.707107,-0.587937,-0.587937,0.555570,-0.653281,-0.653281,0.382683 + ,-0.693519,-0.693519,0.195090,-0.707106,-0.707106,0.000000,-0.693519,-0.693519,-0.195090,-0.653281,-0.653281,-0.382683,-0.587937,-0.587937,-0.555570,-0.500000,-0.500000,-0.707107,-0.392847,-0.392847,-0.831470 + ,-0.270598,-0.270598,-0.923880,-0.137949,-0.137950,-0.980785,0.000000,-0.000000,1.000000,-0.162211,-0.108386,0.980785,-0.318189,-0.212608,0.923880,-0.461939,-0.308658,0.831470,-0.587937,-0.392847,0.707107 + ,-0.691341,-0.461939,0.555570,-0.768177,-0.513280,0.382683,-0.815493,-0.544895,0.195090,-0.831469,-0.555570,0.000000,-0.815493,-0.544895,-0.195090,-0.768178,-0.513280,-0.382683,-0.691341,-0.461939,-0.555570 + ,-0.587937,-0.392847,-0.707107,-0.461939,-0.308658,-0.831470,-0.318189,-0.212608,-0.923880,-0.162211,-0.108386,-0.980785,-0.180240,-0.074658,0.980785,-0.353553,-0.146447,0.923880,-0.513280,-0.212607,0.831470 + ,-0.653281,-0.270598,0.707107,-0.768177,-0.318189,0.555570,-0.853553,-0.353553,0.382683,-0.906127,-0.375330,0.195090,-0.923879,-0.382683,0.000000,-0.906127,-0.375330,-0.195090,-0.853553,-0.353553,-0.382683 + ,-0.768177,-0.318189,-0.555570,-0.653281,-0.270598,-0.707107,-0.513280,-0.212607,-0.831470,-0.353553,-0.146447,-0.923880,-0.180240,-0.074658,-0.980785,-0.191341,-0.038060,0.980785,-0.375330,-0.074658,0.923880 + ,-0.544895,-0.108386,0.831470,-0.693520,-0.137950,0.707107,-0.815492,-0.162211,0.555570,-0.906127,-0.180240,0.382683,-0.961939,-0.191341,0.195090,-0.980784,-0.195090,0.000000,-0.961939,-0.191341,-0.195090 + ,-0.906127,-0.180240,-0.382683,-0.815492,-0.162211,-0.555570,-0.693520,-0.137950,-0.707107,-0.544895,-0.108386,-0.831470,-0.375330,-0.074658,-0.923880,-0.191341,-0.038060,-0.980785 + PolygonVertexIndex: 21,22,7,-7,1,0,15,-17,28,29,14,-14,22,23,8,-8,16,17,2,-2,23,24,9,-9,17,18,3,-3,24,25,10,-10,18,19,4,-4,25,26,11,-11,19,20,5,-5,26,27,12,-12,20,21,6,-6 + ,27,28,13,-13,39,40,25,-25,33,34,19,-19,40,41,26,-26,34,35,20,-20,41,42,27,-27,35,36,21,-21,42,43,28,-28,36,37,22,-22,30,31,16,-16,43,44,29,-29,37,38,23,-23,31,32,17,-17 + ,38,39,24,-24,32,33,18,-18,58,59,44,-44,52,53,38,-38,46,47,32,-32,53,54,39,-39,47,48,33,-33,54,55,40,-40,48,49,34,-34,55,56,41,-41,49,50,35,-35,56,57,42,-42,50,51,36,-36 + ,57,58,43,-43,51,52,37,-37,45,46,31,-31,71,72,57,-57,65,66,51,-51,72,73,58,-58,66,67,52,-52,60,61,46,-46,73,74,59,-59,67,68,53,-53,61,62,47,-47,68,69,54,-54,62,63,48,-48 + ,69,70,55,-55,63,64,49,-49,70,71,56,-56,64,65,50,-50,77,78,63,-63,84,85,70,-70,78,79,64,-64,85,86,71,-71,79,80,65,-65,86,87,72,-72,80,81,66,-66,87,88,73,-73,81,82,67,-67 + ,75,76,61,-61,88,89,74,-74,82,83,68,-68,76,77,62,-62,83,84,69,-69,96,97,82,-82,90,91,76,-76,103,104,89,-89,97,98,83,-83,91,92,77,-77,98,99,84,-84,92,93,78,-78,99,100,85,-85 + ,93,94,79,-79,100,101,86,-86,94,95,80,-80,101,102,87,-87,95,96,81,-81,102,103,88,-88,115,116,101,-101,109,110,95,-95,116,117,102,-102,110,111,96,-96,117,118,103,-103,111,112,97,-97,105,106,91,-91 + ,118,119,104,-104,112,113,98,-98,106,107,92,-92,113,114,99,-99,107,108,93,-93,114,115,100,-100,108,109,94,-94,128,129,114,-114,122,123,108,-108,129,130,115,-115,123,124,109,-109,130,131,116,-116,124,125,110,-110 + ,131,132,117,-117,125,126,111,-111,132,133,118,-118,126,127,112,-112,120,121,106,-106,133,134,119,-119,127,128,113,-113,121,122,107,-107,147,148,133,-133,141,142,127,-127,135,136,121,-121,148,149,134,-134,142,143,128,-128 + ,136,137,122,-122,143,144,129,-129,137,138,123,-123,144,145,130,-130,138,139,124,-124,145,146,131,-131,139,140,125,-125,146,147,132,-132,140,141,126,-126,160,161,146,-146,154,155,140,-140,161,162,147,-147,155,156,141,-141 + ,162,163,148,-148,156,157,142,-142,150,151,136,-136,163,164,149,-149,157,158,143,-143,151,152,137,-137,158,159,144,-144,152,153,138,-138,159,160,145,-145,153,154,139,-139,173,174,159,-159,167,168,153,-153,174,175,160,-160 + ,168,169,154,-154,175,176,161,-161,169,170,155,-155,176,177,162,-162,170,171,156,-156,177,178,163,-163,171,172,157,-157,165,166,151,-151,178,179,164,-164,172,173,158,-158,166,167,152,-152,192,193,178,-178,186,187,172,-172 + ,180,181,166,-166,193,194,179,-179,187,188,173,-173,181,182,167,-167,188,189,174,-174,182,183,168,-168,189,190,175,-175,183,184,169,-169,190,191,176,-176,184,185,170,-170,191,192,177,-177,185,186,171,-171,205,206,191,-191 + ,199,200,185,-185,206,207,192,-192,200,201,186,-186,207,208,193,-193,201,202,187,-187,195,196,181,-181,208,209,194,-194,202,203,188,-188,196,197,182,-182,203,204,189,-189,197,198,183,-183,204,205,190,-190,198,199,184,-184 + ,211,212,197,-197,218,219,204,-204,212,213,198,-198,219,220,205,-205,213,214,199,-199,220,221,206,-206,214,215,200,-200,221,222,207,-207,215,216,201,-201,222,223,208,-208,216,217,202,-202,210,211,196,-196,223,224,209,-209 + ,217,218,203,-203,230,231,216,-216,237,238,223,-223,231,232,217,-217,225,226,211,-211,238,239,224,-224,232,233,218,-218,226,227,212,-212,233,234,219,-219,227,228,213,-213,234,235,220,-220,228,229,214,-214,235,236,221,-221 + ,229,230,215,-215,236,237,222,-222,249,250,235,-235,243,244,229,-229,250,251,236,-236,244,245,230,-230,251,252,237,-237,245,246,231,-231,252,253,238,-238,246,247,232,-232,240,241,226,-226,253,254,239,-239,247,248,233,-233 + ,241,242,227,-227,248,249,234,-234,242,243,228,-228,268,269,254,-254,262,263,248,-248,256,257,242,-242,263,264,249,-249,257,258,243,-243,264,265,250,-250,258,259,244,-244,265,266,251,-251,259,260,245,-245,266,267,252,-252 + ,260,261,246,-246,267,268,253,-253,261,262,247,-247,255,256,241,-241,281,282,267,-267,275,276,261,-261,282,283,268,-268,276,277,262,-262,270,271,256,-256,283,284,269,-269,277,278,263,-263,271,272,257,-257,278,279,264,-264 + ,272,273,258,-258,279,280,265,-265,273,274,259,-259,280,281,266,-266,274,275,260,-260,294,295,280,-280,288,289,274,-274,295,296,281,-281,289,290,275,-275,296,297,282,-282,290,291,276,-276,297,298,283,-283,291,292,277,-277 + ,285,286,271,-271,298,299,284,-284,292,293,278,-278,286,287,272,-272,293,294,279,-279,287,288,273,-273,313,314,299,-299,307,308,293,-293,301,302,287,-287,308,309,294,-294,302,303,288,-288,309,310,295,-295,303,304,289,-289 + ,310,311,296,-296,304,305,290,-290,311,312,297,-297,305,306,291,-291,312,313,298,-298,306,307,292,-292,300,301,286,-286,326,327,312,-312,320,321,306,-306,327,328,313,-313,321,322,307,-307,315,316,301,-301,328,329,314,-314 + ,322,323,308,-308,316,317,302,-302,323,324,309,-309,317,318,303,-303,324,325,310,-310,318,319,304,-304,325,326,311,-311,319,320,305,-305,340,341,325,-325,334,335,319,-319,341,342,326,-326,335,336,320,-320,342,343,327,-327 + ,336,337,321,-321,343,344,328,-328,337,338,322,-322,331,332,316,-316,344,345,329,-329,338,339,323,-323,332,333,317,-317,339,340,324,-324,333,334,318,-318,346,347,332,-332,359,360,345,-345,353,354,339,-339,347,348,333,-333 + ,354,355,340,-340,348,349,334,-334,355,356,341,-341,349,350,335,-335,356,357,342,-342,350,351,336,-336,357,358,343,-343,351,352,337,-337,358,359,344,-344,352,353,338,-338,365,366,351,-351,372,373,358,-358,366,367,352,-352 + ,373,374,359,-359,367,368,353,-353,361,362,347,-347,374,375,360,-360,368,369,354,-354,362,363,348,-348,369,370,355,-355,363,364,349,-349,370,371,356,-356,364,365,350,-350,371,372,357,-357,384,385,370,-370,378,379,364,-364 + ,385,386,371,-371,379,380,365,-365,386,387,372,-372,380,381,366,-366,387,388,373,-373,381,382,367,-367,388,389,374,-374,382,383,368,-368,376,377,362,-362,389,390,375,-375,383,384,369,-369,377,378,363,-363,403,404,389,-389 + ,397,398,383,-383,391,392,377,-377,404,405,390,-390,398,399,384,-384,392,393,378,-378,399,400,385,-385,393,394,379,-379,400,401,386,-386,394,395,380,-380,401,402,387,-387,395,396,381,-381,402,403,388,-388,396,397,382,-382 + ,416,417,402,-402,410,411,396,-396,417,418,403,-403,411,412,397,-397,418,419,404,-404,412,413,398,-398,406,407,392,-392,419,420,405,-405,413,414,399,-399,407,408,393,-393,414,415,400,-400,408,409,394,-394,415,416,401,-401 + ,409,410,395,-395,429,430,415,-415,423,424,409,-409,430,431,416,-416,424,425,410,-410,431,432,417,-417,425,426,411,-411,432,433,418,-418,426,427,412,-412,433,434,419,-419,427,428,413,-413,421,422,407,-407,434,435,420,-420 + ,428,429,414,-414,422,423,408,-408,449,450,434,-434,443,444,428,-428,437,438,422,-422,450,451,435,-435,444,445,429,-429,438,439,423,-423,445,446,430,-430,439,440,424,-424,446,447,431,-431,440,441,425,-425,447,448,432,-432 + ,441,442,426,-426,448,449,433,-433,442,443,427,-427,462,463,448,-448,456,457,442,-442,463,464,449,-449,457,458,443,-443,464,465,450,-450,458,459,444,-444,452,453,438,-438,465,466,451,-451,459,460,445,-445,453,454,439,-439 + ,460,461,446,-446,454,455,440,-440,461,462,447,-447,455,456,441,-441,475,476,461,-461,469,470,455,-455,476,477,462,-462,470,471,456,-456,477,478,463,-463,471,472,457,-457,478,479,464,-464,472,473,458,-458,479,480,465,-465 + ,473,474,459,-459,467,468,453,-453,480,481,466,-466,474,475,460,-460,468,469,454,-454,29,330,-15,15,0,-437,436,30,-16,44,330,-30,59,330,-45,436,45,-31,436,60,-46,74,330,-60 + ,436,75,-61,89,330,-75,104,330,-90,436,90,-76,436,105,-91,119,330,-105,134,330,-120,436,120,-106,149,330,-135,436,135,-121,436,150,-136,164,330,-150,179,330,-165 + ,436,165,-151,194,330,-180,436,180,-166,436,195,-181,209,330,-195,224,330,-210,436,210,-196,436,225,-211,239,330,-225,436,240,-226,254,330,-240,269,330,-255,436,255,-241 + ,436,270,-256,284,330,-270,436,285,-271,299,330,-285,314,330,-300,436,300,-286,436,315,-301,329,330,-315,436,331,-316,345,330,-330,360,330,-346,436,346,-332,436,361,-347 + ,375,330,-361,436,376,-362,390,330,-376,405,330,-391,436,391,-377,436,406,-392,420,330,-406,435,330,-421,436,421,-407,451,330,-436,436,437,-422,436,452,-438,466,330,-452 + ,481,330,-467,436,467,-453,436,0,-468,12,13,480,-480,6,7,474,-474,0,1,468,-468,13,14,481,-481,7,8,475,-475,1,2,469,-469,14,330,-482,8,9,476,-476,2,3,470,-470,9,10,477,-477 + ,3,4,471,-471,10,11,478,-478,4,5,472,-472,11,12,479,-479,5,6,473,-473 + Edges: + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: -0.200964391231537,0.000000000000000,0.979583144187927,-0.387859731912613,0.000000000000000,0.921689510345459 + ,-0.559770524501801,0.000000000000000,0.828638553619385,-0.710135221481323,0.000000000000000,0.704031467437744 + ,-0.833338439464569,0.000000000000000,0.552751243114471,-0.924741327762604,0.000000000000000,0.380535304546356 + ,-0.980986952781677,0.000000000000000,0.193914607167244,-1.000000000000000,0.000000000000000,0.000000000000000 + ,-0.980986952781677,0.000000000000000,-0.193914607167244,-0.924741327762604,0.000000000000000,-0.380535304546356 + ,-0.833338439464569,0.000000000000000,-0.552751243114471,-0.710135221481323,0.000000000000000,-0.704031467437744 + ,-0.559770524501801,0.000000000000000,-0.828638553619385,-0.387859731912613,0.000000000000000,-0.921689510345459 + ,-0.200964391231537,0.000000000000000,-0.979583144187927,-0.197088539600372,0.039185766130686,0.979583144187927 + ,-0.380413234233856,0.075655385851860,0.921689510345459,-0.548997461795807,0.109195224940777,0.828638553619385 + ,-0.696493446826935,0.138523519039154,0.704031467437744,-0.817316174507141,0.162572100758553,0.552751243114471 + ,-0.906979560852051,0.180394902825356,0.380535304546356,-0.962157070636749,0.191381573677063,0.193914607167244 + ,-0.980773329734802,0.195074319839478,0.000000000000000,-0.962157070636749,0.191381573677063,-0.193914607167244 + ,-0.906979560852051,0.180394902825356,-0.380535304546356,-0.817316174507141,0.162572100758553,-0.552751243114471 + ,-0.696493446826935,0.138523519039154,-0.704031467437744,-0.548997461795807,0.109195224940777,-0.828638553619385 + ,-0.380413234233856,0.075655385851860,-0.921689510345459,-0.197088539600372,0.039185766130686,-0.979583144187927 + ,-0.185644090175629,0.076906643807888,0.979583144187927,-0.358348339796066,0.148411512374878,0.921689510345459 + ,-0.517136156558990,0.214209422469139,0.828638553619385,-0.656056404113770,0.271736800670624,0.704031467437744 + ,-0.769890427589417,0.318887919187546,0.552751243114471,-0.854365646839142,0.353892624378204,0.380535304546356 + ,-0.906338691711426,0.375408172607422,0.193914607167244,-0.923856317996979,0.382671594619751,0.000000000000000 + ,-0.906338691711426,0.375408172607422,-0.193914607167244,-0.854365646839142,0.353892624378204,-0.380535304546356 + ,-0.769890427589417,0.318887919187546,-0.552751243114471,-0.656056404113770,0.271736800670624,-0.704031467437744 + ,-0.517136156558990,0.214209422469139,-0.828638553619385,-0.358348339796066,0.148411512374878,-0.921689510345459 + ,-0.185644090175629,0.076906643807888,-0.979583144187927,-0.167088836431503,0.111636705696583,0.979583144187927 + ,-0.322489082813263,0.215491190552711,0.921689510345459,-0.465407282114029,0.310983598232269,0.828638553619385 + ,-0.590441584587097,0.394512772560120,0.704031467437744,-0.692892253398895,0.462965786457062,0.552751243114471 + ,-0.768913865089417,0.513748586177826,0.380535304546356,-0.815668225288391,0.544999539852142,0.193914607167244 + ,-0.831446290016174,0.555558919906616,0.000000000000000,-0.815668225288391,0.544999539852142,-0.193914607167244 + ,-0.768913865089417,0.513748586177826,-0.380535304546356,-0.692892253398895,0.462965786457062,-0.552751243114471 + ,-0.590441584587097,0.394512772560120,-0.704031467437744,-0.465407282114029,0.310983598232269,-0.828638553619385 + ,-0.322489082813263,0.215491190552711,-0.921689510345459,-0.167088836431503,0.111636705696583,-0.979583144187927 + ,-0.142094179987907,0.142094179987907,0.979583144187927,-0.274269849061966,0.274269849061966,0.921689510345459 + ,-0.395794540643692,0.395794540643692,0.828638553619385,-0.502121031284332,0.502121031284332,0.704031467437744 + ,-0.589251399040222,0.589251399040222,0.552751243114471,-0.653889596462250,0.653889596462250,0.380535304546356 + ,-0.693655192852020,0.693655192852020,0.193914607167244,-0.707083344459534,0.707083344459534,0.000000000000000 + ,-0.693655192852020,0.693655192852020,-0.193914607167244,-0.653889596462250,0.653889596462250,-0.380535304546356 + ,-0.589251399040222,0.589251399040222,-0.552751243114471,-0.502121031284332,0.502121031284332,-0.704031467437744 + ,-0.395794540643692,0.395794540643692,-0.828638553619385,-0.274269849061966,0.274269849061966,-0.921689510345459 + ,-0.142094179987907,0.142094179987907,-0.979583144187927,-0.111636705696583,0.167088836431503,0.979583144187927 + ,-0.215491190552711,0.322489082813263,0.921689510345459,-0.310983598232269,0.465407282114029,0.828638553619385 + ,-0.394512772560120,0.590441584587097,0.704031467437744,-0.462965786457062,0.692892253398895,0.552751243114471 + ,-0.513748586177826,0.768913865089417,0.380535304546356,-0.544999539852142,0.815668225288391,0.193914607167244 + ,-0.555558919906616,0.831446290016174,0.000000000000000,-0.544999539852142,0.815668225288391,-0.193914607167244 + ,-0.513748586177826,0.768913865089417,-0.380535304546356,-0.462965786457062,0.692892253398895,-0.552751243114471 + ,-0.394512772560120,0.590441584587097,-0.704031467437744,-0.310983598232269,0.465407282114029,-0.828638553619385 + ,-0.215491190552711,0.322489082813263,-0.921689510345459,-0.111636705696583,0.167088836431503,-0.979583144187927 + ,-0.076906643807888,0.185644090175629,0.979583144187927,-0.148411512374878,0.358348339796066,0.921689510345459 + ,-0.214209422469139,0.517136156558990,0.828638553619385,-0.271736800670624,0.656056404113770,0.704031467437744 + ,-0.318887919187546,0.769890427589417,0.552751243114471,-0.353862106800079,0.854365646839142,0.380535304546356 + ,-0.375408172607422,0.906338691711426,0.193914607167244,-0.382671594619751,0.923856317996979,0.000000000000000 + ,-0.375408172607422,0.906338691711426,-0.193914607167244,-0.353862106800079,0.854365646839142,-0.380535304546356 + ,-0.318887919187546,0.769890427589417,-0.552751243114471,-0.271736800670624,0.656056404113770,-0.704031467437744 + ,-0.214209422469139,0.517136156558990,-0.828638553619385,-0.148411512374878,0.358348339796066,-0.921689510345459 + ,-0.076906643807888,0.185644090175629,-0.979583144187927,-0.039185766130686,0.197088539600372,0.979583144187927 + ,-0.075655385851860,0.380413234233856,0.921689510345459,-0.109195224940777,0.548997461795807,0.828638553619385 + ,-0.138523519039154,0.696493446826935,0.704031467437744,-0.162572100758553,0.817316174507141,0.552751243114471 + ,-0.180394902825356,0.906979560852051,0.380535304546356,-0.191381573677063,0.962157070636749,0.193914607167244 + ,-0.195074319839478,0.980773329734802,0.000000000000000,-0.191381573677063,0.962157070636749,-0.193914607167244 + ,-0.180394902825356,0.906979560852051,-0.380535304546356,-0.162572100758553,0.817316174507141,-0.552751243114471 + ,-0.138523519039154,0.696493446826935,-0.704031467437744,-0.109195224940777,0.548997461795807,-0.828638553619385 + ,-0.075655385851860,0.380413234233856,-0.921689510345459,-0.039185766130686,0.197088539600372,-0.979583144187927 + ,0.000000000000000,0.200964391231537,0.979583144187927,0.000000000000000,0.387859731912613,0.921689510345459 + ,0.000000000000000,0.559770524501801,0.828638553619385,0.000000000000000,0.710135221481323,0.704031467437744 + ,0.000000000000000,0.833338439464569,0.552751243114471,0.000000000000000,0.924741327762604,0.380535304546356 + ,0.000000000000000,0.980986952781677,0.193914607167244,0.000000000000000,1.000000000000000,0.000000000000000 + ,0.000000000000000,0.980986952781677,-0.193914607167244,0.000000000000000,0.924741327762604,-0.380535304546356 + ,0.000000000000000,0.833338439464569,-0.552751243114471,0.000000000000000,0.710135221481323,-0.704031467437744 + ,0.000000000000000,0.559770524501801,-0.828638553619385,0.000000000000000,0.387859731912613,-0.921689510345459 + ,0.000000000000000,0.200964391231537,-0.979583144187927,0.039185766130686,0.197088539600372,0.979583144187927 + ,0.075655385851860,0.380413234233856,0.921689510345459,0.109195224940777,0.548997461795807,0.828638553619385 + ,0.138523519039154,0.696493446826935,0.704031467437744,0.162572100758553,0.817316174507141,0.552751243114471 + ,0.180394902825356,0.906979560852051,0.380535304546356,0.191381573677063,0.962157070636749,0.193914607167244 + ,0.195074319839478,0.980773329734802,0.000000000000000,0.191381573677063,0.962157070636749,-0.193914607167244 + ,0.180394902825356,0.906979560852051,-0.380535304546356,0.162572100758553,0.817316174507141,-0.552751243114471 + ,0.138523519039154,0.696493446826935,-0.704031467437744,0.109195224940777,0.548997461795807,-0.828638553619385 + ,0.075655385851860,0.380413234233856,-0.921689510345459,0.039185766130686,0.197088539600372,-0.979583144187927 + ,0.076906643807888,0.185644090175629,0.979583144187927,0.148411512374878,0.358348339796066,0.921689510345459 + ,0.214209422469139,0.517136156558990,0.828638553619385,0.271736800670624,0.656056404113770,0.704031467437744 + ,0.318887919187546,0.769890427589417,0.552751243114471,0.353892624378204,0.854365646839142,0.380535304546356 + ,0.375408172607422,0.906338691711426,0.193914607167244,0.382671594619751,0.923856317996979,0.000000000000000 + ,0.375408172607422,0.906338691711426,-0.193914607167244,0.353892624378204,0.854365646839142,-0.380535304546356 + ,0.318887919187546,0.769890427589417,-0.552751243114471,0.271736800670624,0.656056404113770,-0.704031467437744 + ,0.214209422469139,0.517136156558990,-0.828638553619385,0.148411512374878,0.358348339796066,-0.921689510345459 + ,0.076906643807888,0.185644090175629,-0.979583144187927,0.111636705696583,0.167088836431503,0.979583144187927 + ,0.215491190552711,0.322489082813263,0.921689510345459,0.310983598232269,0.465407282114029,0.828638553619385 + ,0.394512772560120,0.590441584587097,0.704031467437744,0.462965786457062,0.692892253398895,0.552751243114471 + ,0.513748586177826,0.768913865089417,0.380535304546356,0.544999539852142,0.815668225288391,0.193914607167244 + ,0.555558919906616,0.831446290016174,0.000000000000000,0.544999539852142,0.815668225288391,-0.193914607167244 + ,0.513748586177826,0.768913865089417,-0.380535304546356,0.462965786457062,0.692892253398895,-0.552751243114471 + ,0.394512772560120,0.590441584587097,-0.704031467437744,0.310983598232269,0.465407282114029,-0.828638553619385 + ,0.215491190552711,0.322489082813263,-0.921689510345459,0.111636705696583,0.167088836431503,-0.979583144187927 + ,0.142094179987907,0.142094179987907,0.979583144187927,0.274269849061966,0.274269849061966,0.921689510345459 + ,0.395794540643692,0.395794540643692,0.828638553619385,0.502121031284332,0.502121031284332,0.704031467437744 + ,0.589251399040222,0.589251399040222,0.552751243114471,0.653889596462250,0.653889596462250,0.380535304546356 + ,0.693655192852020,0.693655192852020,0.193914607167244,0.707083344459534,0.707083344459534,0.000000000000000 + ,0.693655192852020,0.693655192852020,-0.193914607167244,0.653889596462250,0.653889596462250,-0.380535304546356 + ,0.589251399040222,0.589251399040222,-0.552751243114471,0.502121031284332,0.502121031284332,-0.704031467437744 + ,0.395794540643692,0.395794540643692,-0.828638553619385,0.274269849061966,0.274269849061966,-0.921689510345459 + ,0.142094179987907,0.142094179987907,-0.979583144187927,0.167088836431503,0.111636705696583,0.979583144187927 + ,0.322489082813263,0.215491190552711,0.921689510345459,0.465407282114029,0.310983598232269,0.828638553619385 + ,0.590441584587097,0.394512772560120,0.704031467437744,0.692892253398895,0.462965786457062,0.552751243114471 + ,0.768913865089417,0.513748586177826,0.380535304546356,0.815668225288391,0.544999539852142,0.193914607167244 + ,0.831446290016174,0.555558919906616,0.000000000000000,0.815668225288391,0.544999539852142,-0.193914607167244 + ,0.768913865089417,0.513748586177826,-0.380535304546356,0.692892253398895,0.462965786457062,-0.552751243114471 + ,0.590441584587097,0.394512772560120,-0.704031467437744,0.465407282114029,0.310983598232269,-0.828638553619385 + ,0.322489082813263,0.215491190552711,-0.921689510345459,0.167088836431503,0.111636705696583,-0.979583144187927 + ,0.185644090175629,0.076906643807888,0.979583144187927,0.358348339796066,0.148411512374878,0.921689510345459 + ,0.517136156558990,0.214209422469139,0.828638553619385,0.656056404113770,0.271736800670624,0.704031467437744 + ,0.769890427589417,0.318887919187546,0.552751243114471,0.854365646839142,0.353862106800079,0.380535304546356 + ,0.906338691711426,0.375408172607422,0.193914607167244,0.923856317996979,0.382671594619751,0.000000000000000 + ,0.906338691711426,0.375408172607422,-0.193914607167244,0.854365646839142,0.353862106800079,-0.380535304546356 + ,0.769890427589417,0.318887919187546,-0.552751243114471,0.656056404113770,0.271736800670624,-0.704031467437744 + ,0.517136156558990,0.214209422469139,-0.828638553619385,0.358348339796066,0.148411512374878,-0.921689510345459 + ,0.185644090175629,0.076906643807888,-0.979583144187927,0.197088539600372,0.039185766130686,0.979583144187927 + ,0.380413234233856,0.075655385851860,0.921689510345459,0.548997461795807,0.109195224940777,0.828638553619385 + ,0.696493446826935,0.138523519039154,0.704031467437744,0.817316174507141,0.162572100758553,0.552751243114471 + ,0.906979560852051,0.180394902825356,0.380535304546356,0.962157070636749,0.191381573677063,0.193914607167244 + ,0.980773329734802,0.195074319839478,0.000000000000000,0.962157070636749,0.191381573677063,-0.193914607167244 + ,0.906979560852051,0.180394902825356,-0.380535304546356,0.817316174507141,0.162572100758553,-0.552751243114471 + ,0.696493446826935,0.138523519039154,-0.704031467437744,0.548997461795807,0.109195224940777,-0.828638553619385 + ,0.380413234233856,0.075655385851860,-0.921689510345459,0.197088539600372,0.039185766130686,-0.979583144187927 + ,0.200964391231537,0.000000000000000,0.979583144187927,0.387859731912613,0.000000000000000,0.921689510345459 + ,0.559770524501801,0.000000000000000,0.828638553619385,0.710135221481323,0.000000000000000,0.704031467437744 + ,0.833338439464569,0.000000000000000,0.552751243114471,0.924741327762604,0.000000000000000,0.380535304546356 + ,0.980986952781677,0.000000000000000,0.193914607167244,1.000000000000000,0.000000000000000,0.000000000000000 + ,0.980986952781677,0.000000000000000,-0.193914607167244,0.924741327762604,0.000000000000000,-0.380535304546356 + ,0.833338439464569,0.000000000000000,-0.552751243114471,0.710135221481323,0.000000000000000,-0.704031467437744 + ,0.559770524501801,0.000000000000000,-0.828638553619385,0.387859731912613,0.000000000000000,-0.921689510345459 + ,0.200964391231537,0.000000000000000,-0.979583144187927,0.197088539600372,-0.039185766130686,0.979583144187927 + ,0.380413234233856,-0.075655385851860,0.921689510345459,0.548997461795807,-0.109195224940777,0.828638553619385 + ,0.696493446826935,-0.138523519039154,0.704031467437744,0.817316174507141,-0.162572100758553,0.552751243114471 + ,0.906979560852051,-0.180394902825356,0.380535304546356,0.962157070636749,-0.191381573677063,0.193914607167244 + ,0.980773329734802,-0.195074319839478,0.000000000000000,0.962157070636749,-0.191381573677063,-0.193914607167244 + ,0.906979560852051,-0.180394902825356,-0.380535304546356,0.817316174507141,-0.162572100758553,-0.552751243114471 + ,0.696493446826935,-0.138523519039154,-0.704031467437744,0.548997461795807,-0.109195224940777,-0.828638553619385 + ,0.380413234233856,-0.075655385851860,-0.921689510345459,0.197088539600372,-0.039185766130686,-0.979583144187927 + ,0.185644090175629,-0.076906643807888,0.979583144187927,0.358348339796066,-0.148411512374878,0.921689510345459 + ,0.517136156558990,-0.214209422469139,0.828638553619385,0.656056404113770,-0.271736800670624,0.704031467437744 + ,0.769890427589417,-0.318887919187546,0.552751243114471,0.854365646839142,-0.353892624378204,0.380535304546356 + ,0.906338691711426,-0.375408172607422,0.193914607167244,0.923856317996979,-0.382671594619751,0.000000000000000 + ,0.906338691711426,-0.375408172607422,-0.193914607167244,0.854365646839142,-0.353892624378204,-0.380535304546356 + ,0.769890427589417,-0.318887919187546,-0.552751243114471,0.656056404113770,-0.271736800670624,-0.704031467437744 + ,0.517136156558990,-0.214209422469139,-0.828638553619385,0.358348339796066,-0.148411512374878,-0.921689510345459 + ,0.185644090175629,-0.076906643807888,-0.979583144187927,0.167088836431503,-0.111636705696583,0.979583144187927 + ,0.322489082813263,-0.215491190552711,0.921689510345459,0.465407282114029,-0.310983598232269,0.828638553619385 + ,0.590441584587097,-0.394512772560120,0.704031467437744,0.692892253398895,-0.462965786457062,0.552751243114471 + ,0.768913865089417,-0.513748586177826,0.380535304546356,0.815668225288391,-0.544999539852142,0.193914607167244 + ,0.831446290016174,-0.555558919906616,0.000000000000000,0.815668225288391,-0.544999539852142,-0.193914607167244 + ,0.768913865089417,-0.513748586177826,-0.380535304546356,0.692892253398895,-0.462965786457062,-0.552751243114471 + ,0.590441584587097,-0.394512772560120,-0.704031467437744,0.465407282114029,-0.310983598232269,-0.828638553619385 + ,0.322489082813263,-0.215491190552711,-0.921689510345459,0.167088836431503,-0.111636705696583,-0.979583144187927 + ,0.142094179987907,-0.142094179987907,0.979583144187927,0.274269849061966,-0.274269849061966,0.921689510345459 + ,0.395794540643692,-0.395794540643692,0.828638553619385,0.502121031284332,-0.502121031284332,0.704031467437744 + ,0.589251399040222,-0.589251399040222,0.552751243114471,0.653889596462250,-0.653889596462250,0.380535304546356 + ,0.693655192852020,-0.693655192852020,0.193914607167244,0.707083344459534,-0.707083344459534,0.000000000000000 + ,0.693655192852020,-0.693655192852020,-0.193914607167244,0.653889596462250,-0.653889596462250,-0.380535304546356 + ,0.589251399040222,-0.589251399040222,-0.552751243114471,0.502121031284332,-0.502121031284332,-0.704031467437744 + ,0.395794540643692,-0.395794540643692,-0.828638553619385,0.274269849061966,-0.274269849061966,-0.921689510345459 + ,0.142094179987907,-0.142094179987907,-0.979583144187927,0.111636705696583,-0.167088836431503,0.979583144187927 + ,0.215491190552711,-0.322489082813263,0.921689510345459,0.310983598232269,-0.465407282114029,0.828638553619385 + ,0.394512772560120,-0.590441584587097,0.704031467437744,0.462965786457062,-0.692892253398895,0.552751243114471 + ,0.513748586177826,-0.768913865089417,0.380535304546356,0.544999539852142,-0.815668225288391,0.193914607167244 + ,0.555558919906616,-0.831446290016174,0.000000000000000,0.544999539852142,-0.815668225288391,-0.193914607167244 + ,0.513748586177826,-0.768913865089417,-0.380535304546356,0.462965786457062,-0.692892253398895,-0.552751243114471 + ,0.394512772560120,-0.590441584587097,-0.704031467437744,0.310983598232269,-0.465407282114029,-0.828638553619385 + ,0.215491190552711,-0.322489082813263,-0.921689510345459,0.111636705696583,-0.167088836431503,-0.979583144187927 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.076906643807888,-0.185644090175629,0.979583144187927 + ,0.148411512374878,-0.358348339796066,0.921689510345459,0.214209422469139,-0.517136156558990,0.828638553619385 + ,0.271736800670624,-0.656056404113770,0.704031467437744,0.318887919187546,-0.769890427589417,0.552751243114471 + ,0.353862106800079,-0.854365646839142,0.380535304546356,0.375408172607422,-0.906338691711426,0.193914607167244 + ,0.382671594619751,-0.923856317996979,0.000000000000000,0.375408172607422,-0.906338691711426,-0.193914607167244 + ,0.353862106800079,-0.854365646839142,-0.380535304546356,0.318887919187546,-0.769890427589417,-0.552751243114471 + ,0.271736800670624,-0.656056404113770,-0.704031467437744,0.214209422469139,-0.517136156558990,-0.828638553619385 + ,0.148411512374878,-0.358348339796066,-0.921689510345459,0.076906643807888,-0.185644090175629,-0.979583144187927 + ,0.039185766130686,-0.197088539600372,0.979583144187927,0.075655385851860,-0.380413234233856,0.921689510345459 + ,0.109195224940777,-0.548997461795807,0.828638553619385,0.138523519039154,-0.696493446826935,0.704031467437744 + ,0.162572100758553,-0.817316174507141,0.552751243114471,0.180394902825356,-0.906979560852051,0.380535304546356 + ,0.191381573677063,-0.962157070636749,0.193914607167244,0.195074319839478,-0.980773329734802,0.000000000000000 + ,0.191381573677063,-0.962157070636749,-0.193914607167244,0.180394902825356,-0.906979560852051,-0.380535304546356 + ,0.162572100758553,-0.817316174507141,-0.552751243114471,0.138523519039154,-0.696493446826935,-0.704031467437744 + ,0.109195224940777,-0.548997461795807,-0.828638553619385,0.075655385851860,-0.380413234233856,-0.921689510345459 + ,0.039185766130686,-0.197088539600372,-0.979583144187927,0.000000000000000,-0.200964391231537,0.979583144187927 + ,0.000000000000000,-0.387859731912613,0.921689510345459,0.000000000000000,-0.559770524501801,0.828638553619385 + ,0.000000000000000,-0.710135221481323,0.704031467437744,0.000000000000000,-0.833338439464569,0.552751243114471 + ,0.000000000000000,-0.924741327762604,0.380535304546356,0.000000000000000,-0.980986952781677,0.193914607167244 + ,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,-0.980986952781677,-0.193914607167244 + ,0.000000000000000,-0.924741327762604,-0.380535304546356,0.000000000000000,-0.833338439464569,-0.552751243114471 + ,0.000000000000000,-0.710135221481323,-0.704031467437744,0.000000000000000,-0.559770524501801,-0.828638553619385 + ,0.000000000000000,-0.387859731912613,-0.921689510345459,0.000000000000000,-0.200964391231537,-0.979583144187927 + ,-0.039185766130686,-0.197088539600372,0.979583144187927,-0.075655385851860,-0.380413234233856,0.921689510345459 + ,-0.109195224940777,-0.548997461795807,0.828638553619385,-0.138523519039154,-0.696493446826935,0.704031467437744 + ,-0.162572100758553,-0.817316174507141,0.552751243114471,-0.180394902825356,-0.906979560852051,0.380535304546356 + ,-0.191381573677063,-0.962157070636749,0.193914607167244,-0.195074319839478,-0.980773329734802,0.000000000000000 + ,-0.191381573677063,-0.962157070636749,-0.193914607167244,-0.180394902825356,-0.906979560852051,-0.380535304546356 + ,-0.162572100758553,-0.817316174507141,-0.552751243114471,-0.138523519039154,-0.696493446826935,-0.704031467437744 + ,-0.109195224940777,-0.548997461795807,-0.828638553619385,-0.075655385851860,-0.380413234233856,-0.921689510345459 + ,-0.039185766130686,-0.197088539600372,-0.979583144187927,-0.076906643807888,-0.185644090175629,0.979583144187927 + ,-0.148411512374878,-0.358348339796066,0.921689510345459,-0.214209422469139,-0.517136156558990,0.828638553619385 + ,-0.271736800670624,-0.656056404113770,0.704031467437744,-0.318887919187546,-0.769890427589417,0.552751243114471 + ,-0.353892624378204,-0.854365646839142,0.380535304546356,-0.375408172607422,-0.906338691711426,0.193914607167244 + ,-0.382671594619751,-0.923856317996979,0.000000000000000,-0.375408172607422,-0.906338691711426,-0.193914607167244 + ,-0.353892624378204,-0.854365646839142,-0.380535304546356,-0.318887919187546,-0.769890427589417,-0.552751243114471 + ,-0.271736800670624,-0.656056404113770,-0.704031467437744,-0.214209422469139,-0.517136156558990,-0.828638553619385 + ,-0.148411512374878,-0.358348339796066,-0.921689510345459,-0.076906643807888,-0.185644090175629,-0.979583144187927 + ,-0.111636705696583,-0.167088836431503,0.979583144187927,-0.215491190552711,-0.322489082813263,0.921689510345459 + ,-0.310983598232269,-0.465407282114029,0.828638553619385,-0.394512772560120,-0.590441584587097,0.704031467437744 + ,-0.462965786457062,-0.692892253398895,0.552751243114471,-0.513748586177826,-0.768913865089417,0.380535304546356 + ,-0.544999539852142,-0.815668225288391,0.193914607167244,-0.555558919906616,-0.831446290016174,0.000000000000000 + ,-0.544999539852142,-0.815668225288391,-0.193914607167244,-0.513748586177826,-0.768913865089417,-0.380535304546356 + ,-0.462965786457062,-0.692892253398895,-0.552751243114471,-0.394512772560120,-0.590441584587097,-0.704031467437744 + ,-0.310983598232269,-0.465407282114029,-0.828638553619385,-0.215491190552711,-0.322489082813263,-0.921689510345459 + ,-0.111636705696583,-0.167088836431503,-0.979583144187927,-0.142094179987907,-0.142094179987907,0.979583144187927 + ,-0.274269849061966,-0.274269849061966,0.921689510345459,-0.395794540643692,-0.395794540643692,0.828638553619385 + ,-0.502121031284332,-0.502121031284332,0.704031467437744,-0.589251399040222,-0.589251399040222,0.552751243114471 + ,-0.653889596462250,-0.653889596462250,0.380535304546356,-0.693655192852020,-0.693655192852020,0.193914607167244 + ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.693655192852020,-0.693655192852020,-0.193914607167244 + ,-0.653889596462250,-0.653889596462250,-0.380535304546356,-0.589251399040222,-0.589251399040222,-0.552751243114471 + ,-0.502121031284332,-0.502121031284332,-0.704031467437744,-0.395794540643692,-0.395794540643692,-0.828638553619385 + ,-0.274269849061966,-0.274269849061966,-0.921689510345459,-0.142094179987907,-0.142094179987907,-0.979583144187927 + ,0.000000000000000,0.000000000000000,1.000000000000000,-0.167088836431503,-0.111636705696583,0.979583144187927 + ,-0.322489082813263,-0.215491190552711,0.921689510345459,-0.465407282114029,-0.310983598232269,0.828638553619385 + ,-0.590441584587097,-0.394512772560120,0.704031467437744,-0.692892253398895,-0.462965786457062,0.552751243114471 + ,-0.768913865089417,-0.513748586177826,0.380535304546356,-0.815668225288391,-0.544999539852142,0.193914607167244 + ,-0.831446290016174,-0.555558919906616,0.000000000000000,-0.815668225288391,-0.544999539852142,-0.193914607167244 + ,-0.768913865089417,-0.513748586177826,-0.380535304546356,-0.692892253398895,-0.462965786457062,-0.552751243114471 + ,-0.590441584587097,-0.394512772560120,-0.704031467437744,-0.465407282114029,-0.310983598232269,-0.828638553619385 + ,-0.322489082813263,-0.215491190552711,-0.921689510345459,-0.167088836431503,-0.111636705696583,-0.979583144187927 + ,-0.185644090175629,-0.076906643807888,0.979583144187927,-0.358348339796066,-0.148411512374878,0.921689510345459 + ,-0.517136156558990,-0.214209422469139,0.828638553619385,-0.656056404113770,-0.271736800670624,0.704031467437744 + ,-0.769890427589417,-0.318887919187546,0.552751243114471,-0.854365646839142,-0.353862106800079,0.380535304546356 + ,-0.906338691711426,-0.375408172607422,0.193914607167244,-0.923856317996979,-0.382671594619751,0.000000000000000 + ,-0.906338691711426,-0.375408172607422,-0.193914607167244,-0.854365646839142,-0.353862106800079,-0.380535304546356 + ,-0.769890427589417,-0.318887919187546,-0.552751243114471,-0.656056404113770,-0.271736800670624,-0.704031467437744 + ,-0.517136156558990,-0.214209422469139,-0.828638553619385,-0.358348339796066,-0.148411512374878,-0.921689510345459 + ,-0.185644090175629,-0.076906643807888,-0.979583144187927,-0.197088539600372,-0.039185766130686,0.979583144187927 + ,-0.380413234233856,-0.075655385851860,0.921689510345459,-0.548997461795807,-0.109195224940777,0.828638553619385 + ,-0.696493446826935,-0.138523519039154,0.704031467437744,-0.817316174507141,-0.162572100758553,0.552751243114471 + ,-0.906979560852051,-0.180394902825356,0.380535304546356,-0.962157070636749,-0.191381573677063,0.193914607167244 + ,-0.980773329734802,-0.195074319839478,0.000000000000000,-0.962157070636749,-0.191381573677063,-0.193914607167244 + ,-0.906979560852051,-0.180394902825356,-0.380535304546356,-0.817316174507141,-0.162572100758553,-0.552751243114471 + ,-0.696493446826935,-0.138523519039154,-0.704031467437744,-0.548997461795807,-0.109195224940777,-0.828638553619385 + ,-0.380413234233856,-0.075655385851860,-0.921689510345459,-0.197088539600372,-0.039185766130686,-0.979583144187927 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.073165,0.421558,0.062751,0.363479,0.115791,0.358433,0.125697,0.409339,0.167081,0.736562,0.199569,0.757887,0.196111,0.764610 + ,0.160116,0.749744,0.005431,0.806951,0.041428,0.792087,0.044885,0.798809,0.012396,0.820132,0.062751,0.363479,0.062047,0.304493 + ,0.115890,0.306585,0.115791,0.358433,0.248442,0.680133,0.197591,0.632947,0.225463,0.609235,0.269190,0.661100,0.062047,0.304493 + ,0.070012,0.245414,0.121209,0.254210,0.115890,0.306585,0.197591,0.632947,0.154354,0.584058,0.189989,0.559411,0.225463,0.609235 + ,0.070012,0.245414,0.086486,0.186941,0.132695,0.201152,0.121209,0.254210,0.154354,0.584058,0.119079,0.532236,0.161992,0.509620 + ,0.189989,0.559411,0.086486,0.186941,0.111460,0.129521,0.150891,0.147111,0.132695,0.201152,0.119079,0.532236,0.092002,0.477936 + ,0.140797,0.459720,0.161992,0.509620,0.111460,0.129521,0.144845,0.073328,0.176334,0.091518,0.150891,0.147111,0.092002,0.477936 + ,0.073165,0.421558,0.125697,0.409339,0.140797,0.459720,0.144845,0.073328,0.185949,0.017648,0.209446,0.032513,0.176334,0.091518 + ,0.012420,0.231966,0.036347,0.166763,0.086486,0.186941,0.070012,0.245414,0.118805,0.614869,0.073591,0.561444,0.119079,0.532236 + ,0.154354,0.584058,0.036347,0.166763,0.070784,0.105857,0.111460,0.129521,0.086486,0.186941,0.073591,0.561444,0.037906,0.501886 + ,0.092002,0.477936,0.119079,0.532236,0.070784,0.105857,0.114497,0.050183,0.144845,0.073328,0.111460,0.129521,0.037906,0.501886 + ,0.013025,0.437504,0.073165,0.421558,0.092002,0.477936,0.114497,0.050183,0.165141,0.000000,0.185949,0.017648,0.144845,0.073328 + ,0.013025,0.437504,0.000000,0.369433,0.062751,0.363479,0.073165,0.421558,0.193990,0.771904,0.155744,0.764013,0.160116,0.749744 + ,0.196111,0.764610,0.001061,0.792681,0.039308,0.784792,0.041428,0.792087,0.005431,0.806951,0.000000,0.369433,0.000000,0.300135 + ,0.062047,0.304493,0.062751,0.363479,0.231237,0.701364,0.172078,0.661370,0.197591,0.632947,0.248442,0.680133,0.000000,0.300135 + ,0.012420,0.231966,0.070012,0.245414,0.062047,0.304493,0.172078,0.661370,0.118805,0.614869,0.154354,0.584058,0.197591,0.632947 + ,0.000658,0.768355,0.039157,0.773723,0.038929,0.781303,0.000000,0.783237,0.964220,0.277676,0.959277,0.245013,0.992969,0.237516 + ,0.999082,0.274372,0.914307,0.482465,0.932407,0.446728,0.951690,0.457101,0.927983,0.490434,0.959277,0.245013,0.950619,0.212631 + ,0.981695,0.201529,0.992969,0.237516,0.932407,0.446728,0.946698,0.411973,0.971392,0.422214,0.951690,0.457101,0.950619,0.212631 + ,0.938157,0.180730,0.965396,0.167089,0.981695,0.201529,0.946698,0.411973,0.956876,0.377782,0.986144,0.386043,0.971392,0.422214 + ,0.938157,0.180730,0.921738,0.149161,0.944190,0.134467,0.965396,0.167089,0.956876,0.377782,0.963090,0.344115,0.995685,0.349177 + ,0.986144,0.386043,0.921738,0.149161,0.901232,0.117768,0.918374,0.103967,0.944190,0.134467,0.963090,0.344115,0.965503,0.310684 + ,1.000000,0.311719,0.995685,0.349177,0.901232,0.117768,0.876811,0.085921,0.888809,0.075514,0.918374,0.103967,0.965503,0.310684 + ,0.964220,0.277676,0.999082,0.274372,1.000000,0.311719,0.193836,0.782973,0.155337,0.788344,0.154683,0.773443,0.193610,0.775393 + ,0.899490,0.160654,0.883152,0.128835,0.901232,0.117768,0.921738,0.149161,0.933449,0.341069,0.934573,0.310559,0.965503,0.310684 + ,0.963090,0.344115,0.883152,0.128835,0.863205,0.094600,0.876811,0.085921,0.901232,0.117768,0.934573,0.310559,0.933060,0.280629 + ,0.964220,0.277676,0.965503,0.310684,0.195497,0.790334,0.158775,0.802822,0.155337,0.788344,0.193836,0.782973,0.004095,0.753861 + ,0.040817,0.766361,0.039157,0.773723,0.000658,0.768355,0.933060,0.280629,0.928924,0.250949,0.959277,0.245013,0.964220,0.277676 + ,0.899348,0.476477,0.912595,0.439212,0.932407,0.446728,0.914307,0.482465,0.928924,0.250949,0.922086,0.221199,0.950619,0.212631 + ,0.959277,0.245013,0.912595,0.439212,0.922642,0.404851,0.946698,0.411973,0.932407,0.446728,0.922086,0.221199,0.912360,0.191250 + ,0.938157,0.180730,0.950619,0.212631,0.922642,0.404851,0.929530,0.372327,0.956876,0.377782,0.946698,0.411973,0.912360,0.191250 + ,0.899490,0.160654,0.921738,0.149161,0.938157,0.180730,0.929530,0.372327,0.933449,0.341069,0.963090,0.344115,0.956876,0.377782 + ,0.892631,0.434050,0.899318,0.400100,0.922642,0.404851,0.912595,0.439212,0.895451,0.227959,0.887721,0.199484,0.912360,0.191250 + ,0.922086,0.221199,0.899318,0.400100,0.903756,0.368875,0.929530,0.372327,0.922642,0.404851,0.887721,0.199484,0.877525,0.169697 + ,0.899490,0.160654,0.912360,0.191250,0.903756,0.368875,0.906006,0.339435,0.933449,0.341069,0.929530,0.372327,0.877525,0.169697 + ,0.864459,0.137662,0.883152,0.128835,0.899490,0.160654,0.906006,0.339435,0.906220,0.311051,0.934573,0.310559,0.933449,0.341069 + ,0.864459,0.137662,0.848372,0.101683,0.863205,0.094600,0.883152,0.128835,0.906220,0.311051,0.904549,0.283330,0.933060,0.280629 + ,0.934573,0.310559,0.198519,0.797219,0.164875,0.816394,0.158775,0.802822,0.195497,0.790334,0.010200,0.740304,0.043843,0.759479 + ,0.040817,0.766361,0.004095,0.753861,0.904549,0.283330,0.900987,0.255789,0.928924,0.250949,0.933060,0.280629,0.883465,0.472270 + ,0.892631,0.434050,0.912595,0.439212,0.899348,0.476477,0.900987,0.255789,0.895451,0.227959,0.922086,0.221199,0.928924,0.250949 + ,0.879734,0.311985,0.877946,0.285847,0.904549,0.283330,0.906220,0.311051,0.202788,0.803380,0.173428,0.828557,0.164875,0.816394 + ,0.198519,0.797219,0.018753,0.728142,0.048113,0.753318,0.043843,0.759479,0.010200,0.740304,0.877946,0.285847,0.874801,0.259840 + ,0.900987,0.255789,0.904549,0.283330,0.866911,0.469646,0.872650,0.430709,0.892631,0.434050,0.883465,0.472270,0.874801,0.259840 + ,0.870218,0.233398,0.895451,0.227959,0.900987,0.255789,0.872650,0.430709,0.876642,0.397108,0.899318,0.400100,0.892631,0.434050 + ,0.870218,0.233398,0.863978,0.206009,0.887721,0.199484,0.895451,0.227959,0.876642,0.397108,0.879191,0.366913,0.903756,0.368875 + ,0.899318,0.400100,0.863978,0.206009,0.855832,0.176855,0.877525,0.169697,0.887721,0.199484,0.879191,0.366913,0.880190,0.338824 + ,0.906006,0.339435,0.903756,0.368875,0.855832,0.176855,0.845399,0.144770,0.864459,0.137662,0.877525,0.169697,0.880190,0.338824 + ,0.879734,0.311985,0.906220,0.311051,0.906006,0.339435,0.845399,0.144770,0.832713,0.107514,0.848372,0.101683,0.864459,0.137662 + ,0.840897,0.211228,0.834354,0.182512,0.855832,0.176855,0.863978,0.206009,0.855527,0.366102,0.855563,0.338987,0.880190,0.338824 + ,0.879191,0.366913,0.834354,0.182512,0.826079,0.150359,0.845399,0.144770,0.855832,0.176855,0.855563,0.338987,0.854596,0.313249 + ,0.879734,0.311985,0.880190,0.338824,0.826079,0.150359,0.816212,0.112082,0.832713,0.107514,0.845399,0.144770,0.854596,0.313249 + ,0.852715,0.288233,0.877946,0.285847,0.879734,0.311985,0.208145,0.808601,0.184128,0.838868,0.173428,0.828557,0.202788,0.803380 + ,0.029453,0.717830,0.053470,0.748098,0.048113,0.753318,0.018753,0.728142,0.852715,0.288233,0.849874,0.263309,0.874801,0.259840 + ,0.877946,0.285847,0.849879,0.468161,0.852628,0.428737,0.872650,0.430709,0.866911,0.469646,0.849874,0.263309,0.846003,0.237849 + ,0.870218,0.233398,0.874801,0.259840,0.852628,0.428737,0.854476,0.395548,0.876642,0.397108,0.872650,0.430709,0.846003,0.237849 + ,0.840897,0.211228,0.863978,0.206009,0.870218,0.233398,0.854476,0.395548,0.855527,0.366102,0.879191,0.366913,0.876642,0.397108 + ,0.825833,0.266343,0.822501,0.241546,0.846003,0.237849,0.849874,0.263309,0.832574,0.428236,0.832674,0.395160,0.854476,0.395548 + ,0.852628,0.428737,0.822501,0.241546,0.818268,0.215427,0.840897,0.211228,0.846003,0.237849,0.832674,0.395160,0.832497,0.366207 + ,0.855527,0.366102,0.854476,0.395548,0.818268,0.215427,0.812994,0.186948,0.834354,0.182512,0.840897,0.211228,0.832497,0.366207 + ,0.831782,0.339751,0.855563,0.338987,0.855527,0.366102,0.812994,0.186948,0.806448,0.154500,0.826079,0.150359,0.834354,0.182512 + ,0.831782,0.339751,0.830412,0.314772,0.854596,0.313249,0.855563,0.338987,0.806448,0.154500,0.798916,0.115216,0.816212,0.112082 + ,0.826079,0.150359,0.830412,0.314772,0.828449,0.290527,0.852715,0.288233,0.854596,0.313249,0.214390,0.812692,0.196588,0.846953 + ,0.184128,0.838868,0.208145,0.808601,0.041914,0.709745,0.059716,0.744007,0.053470,0.748098,0.029453,0.717830,0.828449,0.290527 + ,0.825833,0.266343,0.849874,0.263309,0.852715,0.288233,0.832314,0.468238,0.832574,0.428236,0.852628,0.428737,0.849879,0.468161 + ,0.786513,0.157810,0.781064,0.117669,0.798916,0.115216,0.806448,0.154500,0.806881,0.316507,0.804842,0.292760,0.828449,0.290527 + ,0.830412,0.314772,0.221295,0.815502,0.210355,0.852500,0.196588,0.846953,0.214390,0.812692,0.055681,0.704198,0.066621,0.741198 + ,0.059716,0.744007,0.041914,0.709745,0.804842,0.292760,0.802387,0.269047,0.825833,0.266343,0.828449,0.290527,0.814313,0.469092 + ,0.812359,0.428589,0.832574,0.428236,0.832314,0.468238,0.802387,0.269047,0.799464,0.244663,0.822501,0.241546,0.825833,0.266343 + ,0.812359,0.428589,0.811104,0.395608,0.832674,0.395160,0.832574,0.428236,0.799464,0.244663,0.795909,0.218826,0.818268,0.215427 + ,0.822501,0.241546,0.811104,0.395608,0.809920,0.366987,0.832497,0.366207,0.832674,0.395160,0.795909,0.218826,0.791646,0.190433 + ,0.812994,0.186948,0.818268,0.215427,0.809920,0.366987,0.808581,0.340990,0.831782,0.339751,0.832497,0.366207,0.791646,0.190433 + ,0.786513,0.157810,0.806448,0.154500,0.812994,0.186948,0.808581,0.340990,0.806881,0.316507,0.830412,0.314772,0.831782,0.339751 + ,0.773659,0.221581,0.770239,0.193104,0.791646,0.190433,0.795909,0.218826,0.787599,0.368472,0.785741,0.342648,0.808581,0.340990 + ,0.809920,0.366987,0.770239,0.193104,0.766255,0.159983,0.786513,0.157810,0.791646,0.190433,0.785741,0.342648,0.783764,0.318430 + ,0.806881,0.316507,0.808581,0.340990,0.766255,0.159983,0.762561,0.118839,0.781064,0.117669,0.786513,0.157810,0.783764,0.318430 + ,0.781651,0.294958,0.804842,0.292760,0.806881,0.316507,0.228600,0.816944,0.224925,0.855334,0.210355,0.852500,0.221295,0.815502 + ,0.070252,0.701364,0.073927,0.739757,0.066621,0.741198,0.055681,0.704198,0.781651,0.294958,0.779311,0.271503,0.802387,0.269047 + ,0.804842,0.292760,0.795880,0.471340,0.792076,0.430227,0.812359,0.428589,0.814313,0.469092,0.779311,0.271503,0.776696,0.247328 + ,0.799464,0.244663,0.802387,0.269047,0.792076,0.430227,0.789609,0.397058,0.811104,0.395608,0.812359,0.428589,0.776696,0.247328 + ,0.773659,0.221581,0.795909,0.218826,0.799464,0.244663,0.789609,0.397058,0.787599,0.368472,0.809920,0.366987,0.811104,0.395608 + ,0.756424,0.273770,0.754041,0.249647,0.776696,0.247328,0.779311,0.271503,0.771489,0.432258,0.768043,0.398924,0.789609,0.397058 + ,0.792076,0.430227,0.754041,0.249647,0.751413,0.223899,0.773659,0.221581,0.776696,0.247328,0.768043,0.398924,0.765361,0.370378 + ,0.787599,0.368472,0.789609,0.397058,0.751413,0.223899,0.748639,0.195236,0.770239,0.193104,0.773659,0.221581,0.765361,0.370378 + ,0.763077,0.344637,0.785741,0.342648,0.787599,0.368472,0.748639,0.195236,0.745564,0.161654,0.766255,0.159983,0.770239,0.193104 + ,0.763077,0.344637,0.760869,0.320513,0.783764,0.318430,0.785741,0.342648,0.745564,0.161654,0.743479,0.119580,0.762561,0.118839 + ,0.766255,0.159983,0.760869,0.320513,0.758687,0.297140,0.781651,0.294958,0.783764,0.318430,0.236041,0.816960,0.239766,0.855334 + ,0.224925,0.855334,0.228600,0.816944,0.085093,0.701364,0.081368,0.739741,0.073927,0.739757,0.070252,0.701364,0.758687,0.297140 + ,0.756424,0.273770,0.779311,0.271503,0.781651,0.294958,0.776928,0.474079,0.771489,0.432258,0.792076,0.430227,0.795880,0.471340 + ,0.724500,0.162678,0.723736,0.119589,0.743479,0.119580,0.745564,0.161654,0.738045,0.322746,0.735802,0.299318,0.758687,0.297140 + ,0.760869,0.320513,0.243342,0.815551,0.254332,0.852499,0.239766,0.855334,0.236041,0.816960,0.099659,0.704199,0.088670,0.741151 + ,0.081368,0.739741,0.085093,0.701364,0.735802,0.299318,0.733582,0.275886,0.756424,0.273770,0.758687,0.297140,0.757537,0.478072 + ,0.750731,0.435381,0.771489,0.432258,0.776928,0.474079,0.733582,0.275886,0.731366,0.251665,0.754041,0.249647,0.756424,0.273770 + ,0.750731,0.435381,0.746414,0.401611,0.768043,0.398924,0.771489,0.432258,0.731366,0.251665,0.729067,0.225724,0.751413,0.223899 + ,0.754041,0.249647,0.746414,0.401611,0.743122,0.372837,0.765361,0.370378,0.768043,0.398924,0.729067,0.225724,0.726765,0.196761 + ,0.748639,0.195236,0.751413,0.223899,0.743122,0.372837,0.740443,0.346947,0.763077,0.344637,0.765361,0.370378,0.726765,0.196761 + ,0.724500,0.162678,0.745564,0.161654,0.748639,0.195236,0.740443,0.346947,0.738045,0.322746,0.760869,0.320513,0.763077,0.344637 + ,0.706470,0.227206,0.704585,0.197828,0.726765,0.196761,0.729067,0.225724,0.720671,0.375577,0.717700,0.349480,0.740443,0.346947 + ,0.743122,0.372837,0.704585,0.197828,0.703009,0.163175,0.724500,0.162678,0.726765,0.196761,0.717700,0.349480,0.715173,0.325104 + ,0.738045,0.322746,0.740443,0.346947,0.703009,0.163175,0.703297,0.118971,0.723736,0.119589,0.724500,0.162678,0.715173,0.325104 + ,0.712889,0.301501,0.735802,0.299318,0.738045,0.322746,0.250235,0.812772,0.268086,0.846932,0.254332,0.852499,0.243342,0.815551 + ,0.113406,0.709780,0.095560,0.743939,0.088670,0.741151,0.099659,0.704199,0.712889,0.301501,0.710670,0.277887,0.733582,0.275886 + ,0.735802,0.299318,0.737616,0.482782,0.729577,0.439115,0.750731,0.435381,0.757537,0.478072,0.710670,0.277887,0.708544,0.253449 + ,0.731366,0.251665,0.733582,0.275886,0.729577,0.439115,0.724484,0.404727,0.746414,0.401611,0.750731,0.435381,0.708544,0.253449 + ,0.706470,0.227206,0.729067,0.225724,0.731366,0.251665,0.724484,0.404727,0.720671,0.375577,0.743122,0.372837,0.746414,0.401611 + ,0.717115,0.488144,0.707954,0.443415,0.729577,0.439115,0.737616,0.482782,0.687602,0.279803,0.685466,0.255051,0.708544,0.253449 + ,0.710670,0.277887,0.707954,0.443415,0.702200,0.408394,0.724484,0.404727,0.729577,0.439115,0.685466,0.255051,0.683516,0.228387 + ,0.706470,0.227206,0.708544,0.253449,0.702200,0.408394,0.697970,0.378806,0.720671,0.375577,0.724484,0.404727,0.683516,0.228387 + ,0.682013,0.198475,0.704585,0.197828,0.706470,0.227206,0.697970,0.378806,0.694765,0.352302,0.717700,0.349480,0.720671,0.375577 + ,0.682013,0.198475,0.681000,0.162872,0.703009,0.163175,0.704585,0.197828,0.694765,0.352302,0.692168,0.327594,0.715173,0.325104 + ,0.717700,0.349480,0.681000,0.162872,0.682226,0.117353,0.703297,0.118971,0.703009,0.163175,0.692168,0.327594,0.689906,0.303697 + ,0.712889,0.301501,0.715173,0.325104,0.256467,0.808724,0.280522,0.838836,0.268086,0.846932,0.250235,0.812772,0.125842,0.717874 + ,0.101791,0.747986,0.095560,0.743939,0.113406,0.709780,0.689906,0.303697,0.687602,0.279803,0.710670,0.277887,0.712889,0.301501 + ,0.671452,0.355291,0.668943,0.330184,0.692168,0.327594,0.694765,0.352302,0.658240,0.162503,0.660393,0.115749,0.682226,0.117353 + ,0.681000,0.162872,0.668943,0.330184,0.666953,0.305890,0.689906,0.303697,0.692168,0.327594,0.261800,0.803553,0.291167,0.828501 + ,0.280522,0.838836,0.256467,0.808724,0.136500,0.728199,0.107129,0.753152,0.101791,0.747986,0.125842,0.717874,0.666953,0.305890 + ,0.664307,0.281659,0.687602,0.279803,0.689906,0.303697,0.695998,0.494089,0.685796,0.448217,0.707954,0.443415,0.717115,0.488144 + ,0.664307,0.281659,0.662014,0.256532,0.685466,0.255051,0.687602,0.279803,0.685796,0.448217,0.679455,0.412367,0.702200,0.408394 + ,0.707954,0.443415,0.662014,0.256532,0.660094,0.229424,0.683516,0.228387,0.685466,0.255051,0.679455,0.412367,0.674814,0.382222 + ,0.697970,0.378806,0.702200,0.408394,0.660094,0.229424,0.658899,0.198926,0.682013,0.198475,0.683516,0.228387,0.674814,0.382222 + ,0.671452,0.355291,0.694765,0.352302,0.697970,0.378806,0.658899,0.198926,0.658240,0.162503,0.681000,0.162872,0.682013,0.198475 + ,0.638026,0.257919,0.636148,0.230288,0.660094,0.229424,0.662014,0.256532,0.656135,0.416708,0.651146,0.385921,0.674814,0.382222 + ,0.679455,0.412367,0.636148,0.230288,0.635176,0.199133,0.658899,0.198926,0.660094,0.229424,0.651146,0.385921,0.647630,0.358479 + ,0.671452,0.355291,0.674814,0.382222,0.635176,0.199133,0.634883,0.161808,0.658240,0.162503,0.658899,0.198926,0.647630,0.358479 + ,0.645316,0.332891,0.668943,0.330184,0.671452,0.355291,0.634883,0.161808,0.637782,0.113739,0.660393,0.115749,0.658240,0.162503 + ,0.645316,0.332891,0.644638,0.308021,0.666953,0.305890,0.668943,0.330184,0.266048,0.797462,0.299651,0.816327,0.291167,0.828501 + ,0.261800,0.803553,0.144971,0.740382,0.111371,0.759249,0.107129,0.753152,0.136500,0.728199,0.644638,0.308021,0.640598,0.283475 + ,0.664307,0.281659,0.666953,0.305890,0.674245,0.500547,0.663025,0.453503,0.685796,0.448217,0.695998,0.494089,0.640598,0.283475 + ,0.638026,0.257919,0.662014,0.256532,0.664307,0.281659,0.663025,0.453503,0.656135,0.416708,0.679455,0.412367,0.685796,0.448217 + ,0.150949,0.753962,0.114364,0.766042,0.111371,0.759249,0.144971,0.740382,0.618047,0.310558,0.615383,0.285375,0.640598,0.283475 + ,0.644638,0.308021,0.651634,0.506984,0.639536,0.458823,0.663025,0.453503,0.674245,0.500547,0.615383,0.285375,0.613213,0.259245 + ,0.638026,0.257919,0.640598,0.283475,0.639536,0.458823,0.632167,0.421347,0.656135,0.416708,0.663025,0.453503,0.613213,0.259245 + ,0.611571,0.231038,0.636148,0.230288,0.638026,0.257919,0.632167,0.421347,0.626856,0.389858,0.651146,0.385921,0.656135,0.416708 + ,0.611571,0.231038,0.610788,0.199137,0.635176,0.199133,0.636148,0.230288,0.626856,0.389858,0.623003,0.361879,0.647630,0.358479 + ,0.651146,0.385921,0.610788,0.199137,0.610872,0.160844,0.634883,0.161808,0.635176,0.199133,0.623003,0.361879,0.620191,0.335795 + ,0.645316,0.332891,0.647630,0.358479,0.610872,0.160844,0.614395,0.111411,0.637782,0.113739,0.634883,0.161808,0.620191,0.335795 + ,0.618047,0.310558,0.644638,0.308021,0.645316,0.332891,0.269042,0.790668,0.305628,0.802746,0.299651,0.816327,0.266048,0.797462 + ,0.585748,0.198886,0.586186,0.159645,0.610872,0.160844,0.610788,0.199137,0.597730,0.365472,0.594527,0.338815,0.620191,0.335795 + ,0.623003,0.361879,0.586186,0.159645,0.590244,0.108840,0.614395,0.111411,0.610872,0.160844,0.594527,0.338815,0.591955,0.313043 + ,0.618047,0.310558,0.620191,0.335795,0.270687,0.783429,0.308910,0.788276,0.305628,0.802746,0.269042,0.790668,0.154232,0.768432 + ,0.116008,0.773281,0.114364,0.766042,0.150949,0.753962,0.591955,0.313043,0.589619,0.287253,0.615383,0.285375,0.618047,0.310558 + ,0.628500,0.514325,0.615654,0.464880,0.639536,0.458823,0.651634,0.506984,0.589619,0.287253,0.587740,0.260490,0.613213,0.259245 + ,0.615383,0.285375,0.615654,0.464880,0.607630,0.426407,0.632167,0.421347,0.639536,0.458823,0.587740,0.260490,0.586365,0.231578 + ,0.611571,0.231038,0.613213,0.259245,0.607630,0.426407,0.601964,0.394132,0.626856,0.389858,0.632167,0.421347,0.586365,0.231578 + ,0.585748,0.198886,0.610788,0.199137,0.611571,0.231038,0.601964,0.394132,0.597730,0.365472,0.623003,0.361879,0.626856,0.389858 + ,0.561639,0.261666,0.560477,0.232018,0.586365,0.231578,0.587740,0.260490,0.582379,0.431390,0.576384,0.398474,0.601964,0.394132 + ,0.607630,0.426407,0.560477,0.232018,0.560073,0.198493,0.585748,0.198886,0.586365,0.231578,0.576384,0.398474,0.571856,0.369210 + ,0.597730,0.365472,0.601964,0.394132,0.560073,0.198493,0.560828,0.158253,0.586186,0.159645,0.585748,0.198886,0.571856,0.369210 + ,0.568376,0.341935,0.594527,0.338815,0.597730,0.365472,0.560828,0.158253,0.565357,0.106084,0.590244,0.108840,0.586186,0.159645 + ,0.568376,0.341935,0.565615,0.315547,0.591955,0.313043,0.594527,0.338815,0.270913,0.776009,0.309360,0.773445,0.308910,0.788276 + ,0.270687,0.783429,0.154683,0.783263,0.116235,0.780703,0.116008,0.773281,0.154232,0.768432,0.565615,0.315547,0.563352,0.289111 + ,0.589619,0.287253,0.591955,0.313043,0.604492,0.521453,0.590844,0.470732,0.615654,0.464880,0.628500,0.514325,0.563352,0.289111 + ,0.561639,0.261666,0.587740,0.260490,0.589619,0.287253,0.590844,0.470732,0.582379,0.431390,0.607630,0.426407,0.615654,0.464880 + ,0.152286,0.797907,0.115034,0.788032,0.116235,0.780703,0.154683,0.783263,0.538763,0.318101,0.536501,0.290962,0.563352,0.289111 + ,0.565615,0.315547,0.579784,0.528896,0.565555,0.477000,0.590844,0.470732,0.604492,0.521453,0.536501,0.290962,0.534882,0.262770 + ,0.561639,0.261666,0.563352,0.289111,0.565555,0.477000,0.556683,0.436913,0.582379,0.431390,0.590844,0.470732,0.534882,0.262770 + ,0.533927,0.232352,0.560477,0.232018,0.561639,0.261666,0.556683,0.436913,0.550254,0.403190,0.576384,0.398474,0.582379,0.431390 + ,0.533927,0.232352,0.533732,0.197957,0.560073,0.198493,0.560477,0.232018,0.550254,0.403190,0.545378,0.373147,0.571856,0.369210 + ,0.576384,0.398474,0.533732,0.197957,0.534799,0.156687,0.560828,0.158253,0.560073,0.198493,0.545378,0.373147,0.541660,0.345174 + ,0.568376,0.341935,0.571856,0.369210,0.534799,0.156687,0.539777,0.103177,0.565357,0.106084,0.560828,0.158253,0.541660,0.345174 + ,0.538763,0.318101,0.565615,0.315547,0.568376,0.341935,0.269714,0.768680,0.306962,0.758802,0.309360,0.773445,0.270913,0.776009 + ,0.506702,0.197273,0.508109,0.154942,0.534799,0.156687,0.533732,0.197957,0.518229,0.377264,0.514288,0.348542,0.541660,0.345174 + ,0.545378,0.373147,0.508109,0.154942,0.513555,0.100132,0.539777,0.103177,0.534799,0.156687,0.514288,0.348542,0.511264,0.320721 + ,0.538763,0.318101,0.541660,0.345174,0.267131,0.761716,0.301804,0.744887,0.306962,0.758802,0.269714,0.768680,0.147115,0.811816 + ,0.112443,0.794993,0.115034,0.788032,0.152286,0.797907,0.511264,0.320721,0.508976,0.292826,0.536501,0.290962,0.538763,0.318101 + ,0.554681,0.537136,0.539876,0.483952,0.565555,0.477000,0.579784,0.528896,0.508976,0.292826,0.507415,0.263860,0.534882,0.262770 + ,0.536501,0.290962,0.539876,0.483952,0.530287,0.442702,0.556683,0.436913,0.565555,0.477000,0.507415,0.263860,0.506663,0.232609 + ,0.533927,0.232352,0.534882,0.262770,0.530287,0.442702,0.523404,0.408051,0.550254,0.403190,0.556683,0.436913,0.506663,0.232609 + ,0.506702,0.197273,0.533732,0.197957,0.533927,0.232352,0.523404,0.408051,0.518229,0.377264,0.545378,0.373147,0.550254,0.403190 + ,0.479205,0.264872,0.478639,0.232722,0.506663,0.232609,0.507415,0.263860,0.503171,0.448964,0.495904,0.413290,0.523404,0.408051 + ,0.530287,0.442702,0.478639,0.232722,0.478958,0.196404,0.506702,0.197273,0.506663,0.232609,0.495904,0.413290,0.490356,0.381617 + ,0.518229,0.377264,0.523404,0.408051,0.478958,0.196404,0.480767,0.152991,0.508109,0.154942,0.506702,0.197273,0.490356,0.381617 + ,0.486175,0.352062,0.514288,0.348542,0.518229,0.377264,0.480767,0.152991,0.486751,0.096934,0.513555,0.100132,0.508109,0.154942 + ,0.486175,0.352062,0.483018,0.323417,0.511264,0.320721,0.514288,0.348542,0.263261,0.755374,0.294078,0.732217,0.301804,0.744887 + ,0.267131,0.761716,0.139391,0.824487,0.108574,0.801334,0.112443,0.794993,0.147115,0.811816,0.483018,0.323417,0.480697,0.294690 + ,0.508976,0.292826,0.511264,0.320721,0.529097,0.545593,0.513487,0.491288,0.539876,0.483952,0.554681,0.537136,0.480697,0.294690 + ,0.479205,0.264872,0.507415,0.263860,0.508976,0.292826,0.513487,0.491288,0.503171,0.448964,0.530287,0.442702,0.539876,0.483952 + ,0.258245,0.749889,0.284070,0.721257,0.294078,0.732217,0.263261,0.755374,0.129384,0.835447,0.103558,0.806818,0.108574,0.801334 + ,0.139391,0.824487,0.453921,0.326197,0.451568,0.296548,0.480697,0.294690,0.483018,0.323417,0.502796,0.553777,0.486241,0.498415 + ,0.513487,0.491288,0.529097,0.545593,0.451568,0.296548,0.450162,0.265787,0.479205,0.264872,0.480697,0.294690,0.486241,0.498415 + ,0.475314,0.455294,0.503171,0.448964,0.513487,0.491288,0.450162,0.265787,0.449808,0.232659,0.478639,0.232722,0.479205,0.264872 + ,0.475314,0.455294,0.467600,0.418804,0.495904,0.413290,0.503171,0.448964,0.449808,0.232659,0.450473,0.195301,0.478958,0.196404 + ,0.478639,0.232722,0.467600,0.418804,0.461670,0.386220,0.490356,0.381617,0.495904,0.413290,0.450473,0.195301,0.452784,0.150785 + ,0.480767,0.152991,0.478958,0.196404,0.461670,0.386220,0.457225,0.355753,0.486175,0.352062,0.490356,0.381617,0.452784,0.150785 + ,0.459433,0.093546,0.486751,0.096934,0.480767,0.152991,0.457225,0.355753,0.453921,0.326197,0.483018,0.323417,0.486175,0.352062 + ,0.438502,0.424736,0.432091,0.391134,0.461670,0.386220,0.467600,0.418804,0.421213,0.193892,0.424175,0.148244,0.452784,0.150785 + ,0.450473,0.195301,0.432091,0.391134,0.427330,0.359650,0.457225,0.355753,0.461670,0.386220,0.424175,0.148244,0.431675,0.089901 + ,0.459433,0.093546,0.452784,0.150785,0.427330,0.359650,0.423857,0.329070,0.453921,0.326197,0.457225,0.355753,0.252269,0.745464 + ,0.272148,0.712412,0.284070,0.721257,0.258245,0.749889,0.117463,0.844293,0.097582,0.811242,0.103558,0.806818,0.129384,0.835447 + ,0.423857,0.329070,0.421476,0.298385,0.451568,0.296548,0.453921,0.326197,0.476391,0.562894,0.458684,0.506629,0.486241,0.498415 + ,0.502796,0.553777,0.421476,0.298385,0.420185,0.266572,0.450162,0.265787,0.451568,0.296548,0.458684,0.506629,0.446923,0.462300 + ,0.475314,0.455294,0.486241,0.498415,0.420185,0.266572,0.420103,0.232366,0.449808,0.232659,0.450162,0.265787,0.446923,0.462300 + ,0.438502,0.424736,0.467600,0.418804,0.475314,0.455294,0.420103,0.232366,0.421213,0.193892,0.450473,0.195301,0.449808,0.232659 + ,0.390284,0.300182,0.389155,0.267175,0.420185,0.266572,0.421476,0.298385,0.430461,0.514947,0.417718,0.469834,0.446923,0.462300 + ,0.458684,0.506629,0.389155,0.267175,0.389433,0.231764,0.420103,0.232366,0.420185,0.266572,0.417718,0.469834,0.408495,0.431161 + ,0.438502,0.424736,0.446923,0.462300,0.389433,0.231764,0.391133,0.192076,0.421213,0.193892,0.420103,0.232366,0.408495,0.431161 + ,0.401503,0.396427,0.432091,0.391134,0.438502,0.424736,0.391133,0.192076,0.394951,0.145258,0.424175,0.148244,0.421213,0.193892 + ,0.401503,0.396427,0.396360,0.363794,0.427330,0.359650,0.432091,0.391134,0.394951,0.145258,0.403563,0.085905,0.431675,0.089901 + ,0.424175,0.148244,0.396360,0.363794,0.392687,0.332048,0.423857,0.329070,0.427330,0.359650,0.245551,0.742264,0.258753,0.706008 + ,0.272148,0.712412,0.252269,0.745464,0.104068,0.850697,0.090864,0.814442,0.097582,0.811242,0.117463,0.844293,0.392687,0.332048 + ,0.390284,0.300182,0.421476,0.298385,0.423857,0.329070,0.449458,0.571882,0.430461,0.514947,0.458684,0.506629,0.476391,0.562894 + ,0.365130,0.141679,0.375200,0.081433,0.403563,0.085905,0.394951,0.145258,0.364146,0.368240,0.360229,0.335148,0.392687,0.332048 + ,0.396360,0.363794,0.238339,0.740409,0.244377,0.702280,0.258753,0.706008,0.245551,0.742264,0.089693,0.854426,0.083651,0.816297 + ,0.090864,0.814442,0.104068,0.850697,0.360229,0.335148,0.357816,0.301909,0.390284,0.300182,0.392687,0.332048,0.422670,0.581951 + ,0.401992,0.524391,0.430461,0.514947,0.449458,0.571882,0.357816,0.301909,0.356917,0.267522,0.389155,0.267175,0.390284,0.300182 + ,0.401992,0.524391,0.387739,0.478136,0.417718,0.469834,0.430461,0.514947,0.356917,0.267522,0.357685,0.230742,0.389433,0.231764 + ,0.389155,0.267175,0.387739,0.478136,0.377492,0.438201,0.408495,0.431161,0.417718,0.469834,0.357685,0.230742,0.360174,0.189711 + ,0.391133,0.192076,0.389433,0.231764,0.377492,0.438201,0.369766,0.402195,0.401503,0.396427,0.408495,0.431161,0.360174,0.189711 + ,0.365130,0.141679,0.394951,0.145258,0.391133,0.192076,0.369766,0.402195,0.364146,0.368240,0.396360,0.363794,0.401503,0.396427 + ,0.324711,0.229142,0.328265,0.186607,0.360174,0.189711,0.357685,0.230742,0.345370,0.445993,0.336704,0.408568,0.369766,0.402195 + ,0.377492,0.438201,0.328265,0.186607,0.334733,0.137307,0.365130,0.141679,0.360174,0.189711,0.336704,0.408568,0.330465,0.373070 + ,0.364146,0.368240,0.369766,0.402195,0.334733,0.137307,0.346709,0.076323,0.375200,0.081433,0.365130,0.141679,0.330465,0.373070 + ,0.326244,0.338383,0.360229,0.335148,0.364146,0.368240,0.230898,0.739968,0.229550,0.701364,0.244377,0.702280,0.238339,0.740409 + ,0.074866,0.855343,0.076210,0.816737,0.083651,0.816297,0.089693,0.854426,0.326244,0.338383,0.323843,0.303524,0.357816,0.301909 + ,0.360229,0.335148,0.395591,0.592146,0.372740,0.534206,0.401992,0.524391,0.422670,0.581951,0.323843,0.303524,0.323271,0.267511 + ,0.356917,0.267522,0.357816,0.301909,0.372740,0.534206,0.356865,0.487072,0.387739,0.478136,0.401992,0.524391,0.323271,0.267511 + ,0.324711,0.229142,0.357685,0.230742,0.356917,0.267522,0.356865,0.487072,0.345370,0.445993,0.377492,0.438201,0.387739,0.478136 + ,0.288051,0.304967,0.287952,0.266996,0.323271,0.267511,0.323843,0.303524,0.343339,0.545292,0.325322,0.497363,0.356865,0.487072 + ,0.372740,0.534206,0.287952,0.266996,0.290320,0.226752,0.324711,0.229142,0.323271,0.267511,0.325322,0.497363,0.312037,0.454848 + ,0.345370,0.445993,0.356865,0.487072,0.290320,0.226752,0.295317,0.182505,0.328265,0.186607,0.324711,0.229142,0.312037,0.454848 + ,0.302090,0.415758,0.336704,0.408568,0.345370,0.445993,0.295317,0.182505,0.303794,0.131884,0.334733,0.137307,0.328265,0.186607 + ,0.302090,0.415758,0.295032,0.378397,0.330465,0.373070,0.336704,0.408568,0.303794,0.131884,0.318242,0.070372,0.346709,0.076323 + ,0.334733,0.137307,0.295032,0.378397,0.290414,0.341791,0.326244,0.338383,0.330465,0.373070,0.223501,0.740962,0.214816,0.703293 + ,0.229550,0.701364,0.230898,0.739968,0.060131,0.853415,0.068812,0.815743,0.076210,0.816737,0.074866,0.855343,0.290414,0.341791 + ,0.288051,0.304967,0.323843,0.303524,0.326244,0.338383,0.368675,0.603204,0.343339,0.545292,0.372740,0.534206,0.395591,0.592146 + ,0.272369,0.125077,0.289995,0.063332,0.318242,0.070372,0.303794,0.131884,0.257479,0.384406,0.252310,0.345418,0.290414,0.341791 + ,0.295032,0.378397,0.216420,0.743357,0.200712,0.707995,0.214816,0.703293,0.223501,0.740962,0.046025,0.848700,0.061732,0.813341 + ,0.068812,0.815743,0.060131,0.853415,0.252310,0.345418,0.250030,0.306153,0.288051,0.304967,0.290414,0.341791,0.342566,0.615756 + ,0.313908,0.558183,0.343339,0.545292,0.368675,0.603204,0.250030,0.306153,0.250616,0.265774,0.287952,0.266996,0.288051,0.304967 + ,0.313908,0.558183,0.292881,0.509267,0.325322,0.497363,0.343339,0.545292,0.250616,0.265774,0.254272,0.223270,0.290320,0.226752 + ,0.287952,0.266996,0.292881,0.509267,0.277283,0.465098,0.312037,0.454848,0.325322,0.497363,0.254272,0.223270,0.261230,0.177056 + ,0.295317,0.182505,0.290320,0.226752,0.277283,0.465098,0.265653,0.424031,0.302090,0.415758,0.312037,0.454848,0.261230,0.177056 + ,0.272369,0.125077,0.303794,0.131884,0.295317,0.182505,0.265653,0.424031,0.257479,0.384406,0.295032,0.378397,0.302090,0.415758 + ,0.216264,0.218274,0.225898,0.169785,0.261230,0.177056,0.254272,0.223270,0.240865,0.477158,0.226978,0.433727,0.265653,0.424031 + ,0.277283,0.465098,0.225898,0.169785,0.240557,0.116460,0.272369,0.125077,0.261230,0.177056,0.226978,0.433727,0.217243,0.391319 + ,0.257479,0.384406,0.265653,0.424031,0.240557,0.116460,0.262216,0.054909,0.289995,0.063332,0.272369,0.125077,0.217243,0.391319 + ,0.211295,0.349325,0.252310,0.345418,0.257479,0.384406,0.209915,0.747069,0.187753,0.715297,0.200712,0.707995,0.216420,0.743357 + ,0.033066,0.841398,0.055229,0.809628,0.061732,0.813341,0.046025,0.848700,0.211295,0.349325,0.209207,0.306958,0.250030,0.306153 + ,0.252310,0.345418,0.316828,0.629184,0.284024,0.572561,0.313908,0.558183,0.342566,0.615756,0.209207,0.306958,0.210803,0.263550 + ,0.250616,0.265774,0.250030,0.306153,0.284024,0.572561,0.259415,0.522978,0.292881,0.509267,0.313908,0.558183,0.210803,0.263550 + ,0.216264,0.218274,0.254272,0.223270,0.250616,0.265774,0.259415,0.522978,0.240865,0.477158,0.277283,0.465098,0.292881,0.509267 + ,0.164809,0.307200,0.167917,0.259900,0.210803,0.263550,0.209207,0.306958,0.254532,0.589413,0.225241,0.539462,0.259415,0.522978 + ,0.284024,0.572561,0.167917,0.259900,0.175919,0.211147,0.216264,0.218274,0.210803,0.263550,0.225241,0.539462,0.202581,0.491729 + ,0.240865,0.477158,0.259415,0.522978,0.175919,0.211147,0.189227,0.160048,0.225898,0.169785,0.216264,0.218274,0.202581,0.491729 + ,0.185585,0.445369,0.226978,0.433727,0.240865,0.477158,0.189227,0.160048,0.208529,0.105500,0.240557,0.116460,0.225898,0.169785 + ,0.185585,0.445369,0.173618,0.399477,0.217243,0.391319,0.226978,0.433727,0.208529,0.105500,0.235228,0.044762,0.262216,0.054909 + ,0.240557,0.116460,0.173618,0.399477,0.166388,0.353608,0.211295,0.349325,0.217243,0.391319,0.204226,0.751969,0.176406,0.724931 + ,0.187753,0.715297,0.209915,0.747069,0.021721,0.831764,0.049541,0.804728,0.055229,0.809628,0.033066,0.841398,0.166388,0.353608 + ,0.164809,0.307200,0.209207,0.306958,0.211295,0.349325,0.292216,0.644201,0.254532,0.589413,0.284024,0.572561,0.316828,0.629184 + ,0.041428,0.792087,0.077782,0.778137,0.044885,0.798809,0.196111,0.764610,0.199569,0.757887,0.232462,0.778566,0.232462,0.778566 + ,0.193990,0.771904,0.196111,0.764610,0.039308,0.784792,0.077782,0.778137,0.041428,0.792087,0.039157,0.773723,0.077782,0.778137 + ,0.038929,0.781303,0.232462,0.778566,0.193836,0.782973,0.193610,0.775393,0.232462,0.778566,0.195497,0.790334,0.193836,0.782973 + ,0.040817,0.766361,0.077782,0.778137,0.039157,0.773723,0.232462,0.778566,0.198519,0.797219,0.195497,0.790334,0.043843,0.759479 + ,0.077782,0.778137,0.040817,0.766361,0.048113,0.753318,0.077782,0.778137,0.043843,0.759479,0.232462,0.778566,0.202788,0.803380 + ,0.198519,0.797219,0.232462,0.778566,0.208145,0.808601,0.202788,0.803380,0.053470,0.748098,0.077782,0.778137,0.048113,0.753318 + ,0.059716,0.744007,0.077782,0.778137,0.053470,0.748098,0.232462,0.778566,0.214390,0.812692,0.208145,0.808601,0.066621,0.741198 + ,0.077782,0.778137,0.059716,0.744007,0.232462,0.778566,0.221295,0.815502,0.214390,0.812692,0.232462,0.778566,0.228600,0.816944 + ,0.221295,0.815502,0.073927,0.739757,0.077782,0.778137,0.066621,0.741198,0.081368,0.739741,0.077782,0.778137,0.073927,0.739757 + ,0.232462,0.778566,0.236041,0.816960,0.228600,0.816944,0.088670,0.741151,0.077782,0.778137,0.081368,0.739741,0.232462,0.778566 + ,0.243342,0.815551,0.236041,0.816960,0.232462,0.778566,0.250235,0.812772,0.243342,0.815551,0.095560,0.743939,0.077782,0.778137 + ,0.088670,0.741151,0.101791,0.747986,0.077782,0.778137,0.095560,0.743939,0.232462,0.778566,0.256467,0.808724,0.250235,0.812772 + ,0.232462,0.778566,0.261800,0.803553,0.256467,0.808724,0.107129,0.753152,0.077782,0.778137,0.101791,0.747986,0.232462,0.778566 + ,0.266048,0.797462,0.261800,0.803553,0.111371,0.759249,0.077782,0.778137,0.107129,0.753152,0.114364,0.766042,0.077782,0.778137 + ,0.111371,0.759249,0.232462,0.778566,0.269042,0.790668,0.266048,0.797462,0.232462,0.778566,0.270687,0.783429,0.269042,0.790668 + ,0.116008,0.773281,0.077782,0.778137,0.114364,0.766042,0.232462,0.778566,0.270913,0.776009,0.270687,0.783429,0.116235,0.780703 + ,0.077782,0.778137,0.116008,0.773281,0.115034,0.788032,0.077782,0.778137,0.116235,0.780703,0.232462,0.778566,0.269714,0.768680 + ,0.270913,0.776009,0.232462,0.778566,0.267131,0.761716,0.269714,0.768680,0.112443,0.794993,0.077782,0.778137,0.115034,0.788032 + ,0.232462,0.778566,0.263261,0.755374,0.267131,0.761716,0.108574,0.801334,0.077782,0.778137,0.112443,0.794993,0.103558,0.806818 + ,0.077782,0.778137,0.108574,0.801334,0.232462,0.778566,0.258245,0.749889,0.263261,0.755374,0.232462,0.778566,0.252269,0.745464 + ,0.258245,0.749889,0.097582,0.811242,0.077782,0.778137,0.103558,0.806818,0.232462,0.778566,0.245551,0.742264,0.252269,0.745464 + ,0.090864,0.814442,0.077782,0.778137,0.097582,0.811242,0.083651,0.816297,0.077782,0.778137,0.090864,0.814442,0.232462,0.778566 + ,0.238339,0.740409,0.245551,0.742264,0.232462,0.778566,0.230898,0.739968,0.238339,0.740409,0.076210,0.816737,0.077782,0.778137 + ,0.083651,0.816297,0.068812,0.815743,0.077782,0.778137,0.076210,0.816737,0.232462,0.778566,0.223501,0.740962,0.230898,0.739968 + ,0.061732,0.813341,0.077782,0.778137,0.068812,0.815743,0.232462,0.778566,0.216420,0.743357,0.223501,0.740962,0.232462,0.778566 + ,0.209915,0.747069,0.216420,0.743357,0.055229,0.809628,0.077782,0.778137,0.061732,0.813341,0.049541,0.804728,0.077782,0.778137 + ,0.055229,0.809628,0.232462,0.778566,0.204226,0.751969,0.209915,0.747069,0.232462,0.778566,0.199569,0.757887,0.204226,0.751969 + ,0.176334,0.091518,0.209446,0.032513,0.235228,0.044762,0.208529,0.105500,0.125697,0.409339,0.115791,0.358433,0.166388,0.353608 + ,0.173618,0.399477,0.199569,0.757887,0.167081,0.736562,0.176406,0.724931,0.204226,0.751969,0.012396,0.820132,0.044885,0.798809 + ,0.049541,0.804728,0.021721,0.831764,0.115791,0.358433,0.115890,0.306585,0.164809,0.307200,0.166388,0.353608,0.269190,0.661100 + ,0.225463,0.609235,0.254532,0.589413,0.292216,0.644201,0.044885,0.798809,0.077782,0.778137,0.049541,0.804728,0.115890,0.306585 + ,0.121209,0.254210,0.167917,0.259900,0.164809,0.307200,0.225463,0.609235,0.189989,0.559411,0.225241,0.539462,0.254532,0.589413 + ,0.121209,0.254210,0.132695,0.201152,0.175919,0.211147,0.167917,0.259900,0.189989,0.559411,0.161992,0.509620,0.202581,0.491729 + ,0.225241,0.539462,0.132695,0.201152,0.150891,0.147111,0.189227,0.160048,0.175919,0.211147,0.161992,0.509620,0.140797,0.459720 + ,0.185585,0.445369,0.202581,0.491729,0.150891,0.147111,0.176334,0.091518,0.208529,0.105500,0.189227,0.160048,0.140797,0.459720 + ,0.125697,0.409339,0.173618,0.399477,0.185585,0.445369 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164 + ,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 + ,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274 + ,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329 + ,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384 + ,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439 + ,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494 + ,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549 + ,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604 + ,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659 + ,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714 + ,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769 + ,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824 + ,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879 + ,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934 + ,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989 + ,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044 + ,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099 + ,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154 + ,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209 + ,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264 + ,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319 + ,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374 + ,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429 + ,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484 + ,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539 + ,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594 + ,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649 + ,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704 + ,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759 + ,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814 + ,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869 + ,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924 + ,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979 + ,1980,1981,1982,1983 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Material: "Material::Test__TestGrid1024", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Lambert" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",1.0000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",0.8000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "SpecularFactor", "double", "",0.2500 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 + Property: "Shininess", "double", "",9.6 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::TestGrid1024", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "TestGrid1024.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "TestGrid1024.png" + RelativeFilename: "TestGrid1024.png" + } + Texture: "Texture::TestGrid1024", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::TestGrid1024" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::TestGrid1024" + FileName: "TestGrid1024.png" + RelativeFilename: "TestGrid1024.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 1 + PoseNode: { + Node: "Model::Sphere" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",1 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::Sphere", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::Test__TestGrid1024", "" { + } + Texture: "Texture::TestGrid1024", "TextureVideoClip" { + } + Video: "Video::TestGrid1024", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::Sphere", "Model::Scene" + Connect: "OO", "Material::Test__TestGrid1024", "Model::Sphere" + Connect: "OO", "Texture::TestGrid1024", "Model::Sphere" + Connect: "OO", "Video::TestGrid1024", "Texture::TestGrid1024" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Samples/SampleContent/Models/SphereAndCube.fbx b/Samples/SampleContent/Models/SphereAndCube.fbx new file mode 100644 index 00000000..ebc13e45 --- /dev/null +++ b/Samples/SampleContent/Models/SphereAndCube.fbx @@ -0,0 +1,1188 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2012 + Month: 09 + Day: 20 + Hour: 07 + Minute: 23 + Second: 53 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2012-09-20 07:23:53:000" +Creator: "Blender version 2.63 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 6 + ObjectType: "Model" { + Count: 2 + } + ObjectType: "Geometry" { + Count: 2 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Cube", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.500000,-0.500000,1.500000,-0.500000,0.500000,1.500000,0.500000,0.500000,1.500000,0.500000,-0.500000,1.500000,-0.500000,-0.500000,2.500000,-0.500000,0.500000,2.500000,0.500000,0.500000,2.500000 + ,0.500000,-0.500000,2.500000 + PolygonVertexIndex: 1,0,4,-6,5,6,2,-2,6,7,3,-3,0,3,7,-5,0,1,2,-4,7,6,5,-5 + Edges: + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: -0.577349185943604,-0.577349185943604,-0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604 + ,0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604,-0.577349185943604 + ,-0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604,0.577349185943604 + ,0.577349185943604,0.577349185943604,0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.000001,0.749999,0.250001,0.749999,0.250000,1.000000,0.000000,0.999999,0.250004,0.249999,0.500004,0.250001,0.500002,0.500000 + ,0.250002,0.499999,0.750001,1.000000,0.500001,1.000000,0.500001,0.750000,0.750001,0.750000,0.250001,0.749999,0.500001,0.750000 + ,0.500001,1.000000,0.250000,1.000000,0.250001,0.749999,0.250002,0.499999,0.500002,0.500000,0.500001,0.750000,0.500005,0.000002 + ,0.500004,0.250001,0.250004,0.249999,0.250006,0.000000 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Sphere", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.195090,0.000000,0.980785,-0.382683,0.000000,0.923880,-0.555570,0.000000,0.831470,-0.707107,0.000000,0.707107,-0.831470,0.000000,0.555570,-0.923880,0.000000,0.382683,-0.980785,0.000000,0.195090 + ,-1.000000,0.000000,0.000000,-0.980785,0.000000,-0.195090,-0.923880,0.000000,-0.382683,-0.831470,0.000000,-0.555570,-0.707107,0.000000,-0.707107,-0.555570,0.000000,-0.831470,-0.382683,0.000000,-0.923880 + ,-0.195090,0.000000,-0.980785,-0.191342,0.038060,0.980785,-0.375330,0.074658,0.923880,-0.544895,0.108386,0.831470,-0.693520,0.137950,0.707107,-0.815493,0.162212,0.555570,-0.906127,0.180240,0.382683 + ,-0.961940,0.191342,0.195090,-0.980785,0.195090,0.000000,-0.961940,0.191342,-0.195090,-0.906127,0.180240,-0.382683,-0.815493,0.162212,-0.555570,-0.693520,0.137950,-0.707107,-0.544895,0.108386,-0.831470 + ,-0.375330,0.074658,-0.923880,-0.191341,0.038060,-0.980785,-0.180240,0.074658,0.980785,-0.353553,0.146447,0.923880,-0.513280,0.212608,0.831470,-0.653281,0.270598,0.707107,-0.768178,0.318190,0.555570 + ,-0.853553,0.353553,0.382683,-0.906127,0.375330,0.195090,-0.923880,0.382684,0.000000,-0.906127,0.375330,-0.195090,-0.853553,0.353554,-0.382683,-0.768178,0.318190,-0.555570,-0.653281,0.270598,-0.707107 + ,-0.513280,0.212608,-0.831470,-0.353553,0.146447,-0.923880,-0.180240,0.074658,-0.980785,-0.162212,0.108387,0.980785,-0.318190,0.212608,0.923880,-0.461940,0.308658,0.831470,-0.587938,0.392848,0.707107 + ,-0.691342,0.461940,0.555570,-0.768178,0.513280,0.382683,-0.815493,0.544895,0.195090,-0.831470,0.555570,0.000000,-0.815493,0.544895,-0.195090,-0.768178,0.513280,-0.382683,-0.691342,0.461940,-0.555570 + ,-0.587938,0.392848,-0.707107,-0.461940,0.308658,-0.831470,-0.318189,0.212608,-0.923880,-0.162211,0.108386,-0.980785,-0.137950,0.137950,0.980785,-0.270598,0.270598,0.923880,-0.392847,0.392848,0.831470 + ,-0.500000,0.500000,0.707107,-0.587938,0.587938,0.555570,-0.653281,0.653282,0.382683,-0.693520,0.693520,0.195090,-0.707107,0.707107,0.000000,-0.693520,0.693520,-0.195090,-0.653281,0.653282,-0.382683 + ,-0.587938,0.587938,-0.555570,-0.500000,0.500000,-0.707107,-0.392847,0.392848,-0.831470,-0.270598,0.270598,-0.923880,-0.137949,0.137950,-0.980785,-0.108386,0.162212,0.980785,-0.212607,0.318190,0.923880 + ,-0.308658,0.461940,0.831470,-0.392847,0.587938,0.707107,-0.461939,0.691342,0.555570,-0.513280,0.768178,0.382683,-0.544895,0.815493,0.195090,-0.555570,0.831470,0.000000,-0.544895,0.815493,-0.195090 + ,-0.513280,0.768178,-0.382683,-0.461939,0.691342,-0.555570,-0.392847,0.587938,-0.707107,-0.308658,0.461940,-0.831470,-0.212607,0.318190,-0.923880,-0.108386,0.162212,-0.980785,-0.074658,0.180240,0.980785 + ,-0.146446,0.353554,0.923880,-0.212607,0.513280,0.831470,-0.270598,0.653282,0.707107,-0.318189,0.768178,0.555570,-0.353553,0.853554,0.382683,-0.375330,0.906128,0.195090,-0.382683,0.923880,0.000000 + ,-0.375330,0.906128,-0.195090,-0.353553,0.853554,-0.382683,-0.318189,0.768178,-0.555570,-0.270598,0.653282,-0.707107,-0.212607,0.513280,-0.831470,-0.146446,0.353554,-0.923880,-0.074658,0.180240,-0.980785 + ,-0.038060,0.191342,0.980785,-0.074658,0.375331,0.923880,-0.108386,0.544895,0.831470,-0.137949,0.693520,0.707107,-0.162211,0.815493,0.555570,-0.180240,0.906128,0.382683,-0.191341,0.961940,0.195090 + ,-0.195090,0.980785,0.000000,-0.191341,0.961940,-0.195090,-0.180240,0.906128,-0.382683,-0.162211,0.815493,-0.555570,-0.137949,0.693520,-0.707107,-0.108386,0.544895,-0.831470,-0.074658,0.375330,-0.923880 + ,-0.038060,0.191342,-0.980785,0.000000,0.195091,0.980785,0.000000,0.382684,0.923880,0.000000,0.555570,0.831470,0.000000,0.707107,0.707107,0.000000,0.831470,0.555570,0.000000,0.923880,0.382683 + ,0.000000,0.980785,0.195090,0.000000,1.000000,0.000000,0.000000,0.980785,-0.195090,0.000000,0.923880,-0.382683,0.000000,0.831470,-0.555570,0.000000,0.707107,-0.707107,0.000000,0.555570,-0.831470 + ,0.000000,0.382684,-0.923880,0.000000,0.195090,-0.980785,0.038061,0.191342,0.980785,0.074658,0.375330,0.923880,0.108387,0.544895,0.831470,0.137950,0.693520,0.707107,0.162212,0.815493,0.555570 + ,0.180240,0.906128,0.382683,0.191342,0.961940,0.195090,0.195091,0.980785,0.000000,0.191342,0.961940,-0.195090,0.180240,0.906128,-0.382683,0.162212,0.815493,-0.555570,0.137950,0.693520,-0.707107 + ,0.108387,0.544895,-0.831470,0.074658,0.375330,-0.923880,0.038061,0.191342,-0.980785,0.074658,0.180240,0.980785,0.146447,0.353554,0.923880,0.212608,0.513280,0.831470,0.270599,0.653282,0.707107 + ,0.318190,0.768178,0.555570,0.353554,0.853553,0.382683,0.375331,0.906127,0.195090,0.382684,0.923880,0.000000,0.375331,0.906127,-0.195090,0.353554,0.853554,-0.382683,0.318190,0.768178,-0.555570 + ,0.270599,0.653282,-0.707107,0.212608,0.513280,-0.831470,0.146447,0.353553,-0.923880,0.074658,0.180240,-0.980785,0.108387,0.162212,0.980785,0.212608,0.318190,0.923880,0.308659,0.461940,0.831470 + ,0.392848,0.587938,0.707107,0.461940,0.691342,0.555570,0.513280,0.768178,0.382683,0.544895,0.815493,0.195090,0.555571,0.831470,0.000000,0.544895,0.815493,-0.195090,0.513280,0.768178,-0.382683 + ,0.461940,0.691342,-0.555570,0.392848,0.587938,-0.707107,0.308659,0.461940,-0.831470,0.212608,0.318190,-0.923880,0.108387,0.162212,-0.980785,0.137950,0.137950,0.980785,0.270599,0.270598,0.923880 + ,0.392848,0.392848,0.831470,0.500000,0.500000,0.707107,0.587938,0.587938,0.555570,0.653282,0.653281,0.382683,0.693520,0.693520,0.195090,0.707107,0.707107,0.000000,0.693520,0.693520,-0.195090 + ,0.653282,0.653282,-0.382683,0.587938,0.587938,-0.555570,0.500000,0.500000,-0.707107,0.392848,0.392847,-0.831470,0.270598,0.270598,-0.923880,0.137950,0.137950,-0.980785,0.162212,0.108386,0.980785 + ,0.318190,0.212608,0.923880,0.461940,0.308658,0.831470,0.587938,0.392847,0.707107,0.691342,0.461940,0.555570,0.768178,0.513280,0.382683,0.815493,0.544895,0.195090,0.831470,0.555570,0.000000 + ,0.815493,0.544895,-0.195090,0.768178,0.513280,-0.382683,0.691342,0.461940,-0.555570,0.587938,0.392847,-0.707107,0.461940,0.308658,-0.831470,0.318190,0.212608,-0.923880,0.162212,0.108386,-0.980785 + ,0.180240,0.074658,0.980785,0.353554,0.146447,0.923880,0.513280,0.212608,0.831470,0.653282,0.270598,0.707107,0.768178,0.318190,0.555570,0.853554,0.353553,0.382683,0.906128,0.375330,0.195090 + ,0.923880,0.382683,0.000000,0.906128,0.375330,-0.195090,0.853554,0.353553,-0.382683,0.768178,0.318190,-0.555570,0.653282,0.270598,-0.707107,0.513280,0.212607,-0.831470,0.353554,0.146447,-0.923880 + ,0.180240,0.074658,-0.980785,0.191342,0.038060,0.980785,0.375331,0.074658,0.923880,0.544896,0.108386,0.831470,0.693520,0.137950,0.707107,0.815493,0.162212,0.555570,0.906128,0.180240,0.382683 + ,0.961940,0.191342,0.195090,0.980785,0.195090,0.000000,0.961940,0.191342,-0.195090,0.906128,0.180240,-0.382683,0.815493,0.162212,-0.555570,0.693520,0.137950,-0.707107,0.544895,0.108386,-0.831470 + ,0.375331,0.074658,-0.923880,0.191342,0.038060,-0.980785,0.195091,-0.000000,0.980785,0.382684,-0.000000,0.923880,0.555571,-0.000000,0.831470,0.707107,-0.000000,0.707107,0.831470,-0.000000,0.555570 + ,0.923880,-0.000000,0.382683,0.980785,-0.000000,0.195090,1.000000,-0.000000,0.000000,0.980785,-0.000000,-0.195090,0.923880,-0.000000,-0.382683,0.831470,-0.000000,-0.555570,0.707107,-0.000000,-0.707107 + ,0.555571,-0.000000,-0.831470,0.382684,-0.000000,-0.923880,0.195091,0.000000,-0.980785,0.191342,-0.038060,0.980785,0.375331,-0.074658,0.923880,0.544896,-0.108386,0.831470,0.693520,-0.137950,0.707107 + ,0.815493,-0.162212,0.555570,0.906128,-0.180240,0.382683,0.961940,-0.191342,0.195090,0.980785,-0.195090,0.000000,0.961940,-0.191342,-0.195090,0.906128,-0.180240,-0.382683,0.815493,-0.162212,-0.555570 + ,0.693520,-0.137950,-0.707107,0.544895,-0.108386,-0.831470,0.375331,-0.074658,-0.923880,0.191342,-0.038060,-0.980785,0.180240,-0.074658,0.980785,0.353554,-0.146447,0.923880,0.513280,-0.212608,0.831470 + ,0.653282,-0.270598,0.707107,0.768178,-0.318190,0.555570,0.853554,-0.353554,0.382683,0.906128,-0.375330,0.195090,0.923880,-0.382683,0.000000,0.906128,-0.375330,-0.195090,0.853554,-0.353553,-0.382683 + ,0.768178,-0.318190,-0.555570,0.653282,-0.270598,-0.707107,0.513280,-0.212608,-0.831470,0.353554,-0.146447,-0.923880,0.180240,-0.074658,-0.980785,0.162212,-0.108387,0.980785,0.318190,-0.212608,0.923880 + ,0.461940,-0.308658,0.831470,0.587938,-0.392848,0.707107,0.691342,-0.461940,0.555570,0.768178,-0.513280,0.382683,0.815493,-0.544895,0.195090,0.831470,-0.555570,0.000000,0.815493,-0.544895,-0.195090 + ,0.768178,-0.513280,-0.382683,0.691342,-0.461940,-0.555570,0.587938,-0.392848,-0.707107,0.461940,-0.308658,-0.831470,0.318190,-0.212608,-0.923880,0.162212,-0.108386,-0.980785,0.137950,-0.137950,0.980785 + ,0.270598,-0.270598,0.923880,0.392848,-0.392848,0.831470,0.500000,-0.500000,0.707107,0.587938,-0.587938,0.555570,0.653282,-0.653282,0.382683,0.693520,-0.693520,0.195090,0.707107,-0.707107,0.000000 + ,0.693520,-0.693520,-0.195090,0.653282,-0.653282,-0.382683,0.587938,-0.587938,-0.555570,0.500000,-0.500000,-0.707107,0.392848,-0.392848,-0.831470,0.270598,-0.270598,-0.923880,0.137950,-0.137950,-0.980785 + ,0.108387,-0.162212,0.980785,0.212608,-0.318190,0.923880,0.308659,-0.461940,0.831470,0.392848,-0.587938,0.707107,0.461940,-0.691342,0.555570,0.513280,-0.768178,0.382683,0.544895,-0.815493,0.195090 + ,0.555570,-0.831469,0.000000,0.544895,-0.815493,-0.195090,0.513280,-0.768178,-0.382683,0.461940,-0.691342,-0.555570,0.392848,-0.587938,-0.707107,0.308659,-0.461940,-0.831470,0.212608,-0.318190,-0.923880 + ,0.108387,-0.162212,-0.980785,0.000000,0.000000,-1.000000,0.074658,-0.180240,0.980785,0.146447,-0.353554,0.923880,0.212608,-0.513280,0.831470,0.270598,-0.653281,0.707107,0.318190,-0.768178,0.555570 + ,0.353554,-0.853553,0.382683,0.375330,-0.906127,0.195090,0.382683,-0.923879,0.000000,0.375330,-0.906127,-0.195090,0.353554,-0.853553,-0.382683,0.318190,-0.768178,-0.555570,0.270598,-0.653281,-0.707107 + ,0.212608,-0.513280,-0.831470,0.146447,-0.353553,-0.923880,0.074658,-0.180240,-0.980785,0.038061,-0.191342,0.980785,0.074658,-0.375330,0.923880,0.108387,-0.544895,0.831470,0.137950,-0.693520,0.707107 + ,0.162212,-0.815493,0.555570,0.180240,-0.906127,0.382683,0.191342,-0.961940,0.195090,0.195090,-0.980785,0.000000,0.191342,-0.961940,-0.195090,0.180240,-0.906128,-0.382683,0.162212,-0.815493,-0.555570 + ,0.137950,-0.693520,-0.707107,0.108387,-0.544895,-0.831470,0.074658,-0.375330,-0.923880,0.038061,-0.191342,-0.980785,0.000000,-0.195090,0.980785,0.000000,-0.382684,0.923880,0.000000,-0.555570,0.831470 + ,0.000000,-0.707107,0.707107,0.000000,-0.831469,0.555570,0.000000,-0.923879,0.382683,0.000000,-0.980785,0.195090,0.000000,-1.000000,0.000000,0.000000,-0.980785,-0.195090,0.000000,-0.923880,-0.382683 + ,0.000000,-0.831469,-0.555570,0.000000,-0.707107,-0.707107,0.000000,-0.555570,-0.831470,0.000000,-0.382683,-0.923880,0.000000,-0.195090,-0.980785,-0.038060,-0.191342,0.980785,-0.074658,-0.375330,0.923880 + ,-0.108386,-0.544895,0.831470,-0.137949,-0.693520,0.707107,-0.162211,-0.815493,0.555570,-0.180240,-0.906127,0.382683,-0.191342,-0.961939,0.195090,-0.195090,-0.980785,0.000000,-0.191342,-0.961939,-0.195090 + ,-0.180240,-0.906127,-0.382683,-0.162211,-0.815493,-0.555570,-0.137949,-0.693520,-0.707107,-0.108386,-0.544895,-0.831470,-0.074658,-0.375330,-0.923880,-0.038060,-0.191342,-0.980785,-0.074658,-0.180240,0.980785 + ,-0.146446,-0.353553,0.923880,-0.212607,-0.513280,0.831470,-0.270598,-0.653281,0.707107,-0.318189,-0.768177,0.555570,-0.353553,-0.853553,0.382683,-0.375330,-0.906127,0.195090,-0.382683,-0.923879,0.000000 + ,-0.375330,-0.906127,-0.195090,-0.353553,-0.853553,-0.382683,-0.318189,-0.768177,-0.555570,-0.270598,-0.653281,-0.707107,-0.212607,-0.513280,-0.831470,-0.146446,-0.353553,-0.923880,-0.074657,-0.180240,-0.980785 + ,-0.108386,-0.162212,0.980785,-0.212607,-0.318190,0.923880,-0.308658,-0.461940,0.831470,-0.392847,-0.587938,0.707107,-0.461939,-0.691341,0.555570,-0.513280,-0.768178,0.382683,-0.544895,-0.815493,0.195090 + ,-0.555570,-0.831469,0.000000,-0.544895,-0.815493,-0.195090,-0.513280,-0.768178,-0.382683,-0.461939,-0.691341,-0.555570,-0.392847,-0.587938,-0.707107,-0.308658,-0.461940,-0.831470,-0.212607,-0.318190,-0.923880 + ,-0.108386,-0.162212,-0.980785,-0.137949,-0.137950,0.980785,-0.270598,-0.270598,0.923880,-0.392847,-0.392847,0.831470,-0.500000,-0.500000,0.707107,-0.587937,-0.587937,0.555570,-0.653281,-0.653281,0.382683 + ,-0.693519,-0.693519,0.195090,-0.707106,-0.707106,0.000000,-0.693519,-0.693519,-0.195090,-0.653281,-0.653281,-0.382683,-0.587937,-0.587937,-0.555570,-0.500000,-0.500000,-0.707107,-0.392847,-0.392847,-0.831470 + ,-0.270598,-0.270598,-0.923880,-0.137949,-0.137950,-0.980785,0.000000,-0.000000,1.000000,-0.162211,-0.108386,0.980785,-0.318189,-0.212608,0.923880,-0.461939,-0.308658,0.831470,-0.587937,-0.392847,0.707107 + ,-0.691341,-0.461939,0.555570,-0.768177,-0.513280,0.382683,-0.815493,-0.544895,0.195090,-0.831469,-0.555570,0.000000,-0.815493,-0.544895,-0.195090,-0.768178,-0.513280,-0.382683,-0.691341,-0.461939,-0.555570 + ,-0.587937,-0.392847,-0.707107,-0.461939,-0.308658,-0.831470,-0.318189,-0.212608,-0.923880,-0.162211,-0.108386,-0.980785,-0.180240,-0.074658,0.980785,-0.353553,-0.146447,0.923880,-0.513280,-0.212607,0.831470 + ,-0.653281,-0.270598,0.707107,-0.768177,-0.318189,0.555570,-0.853553,-0.353553,0.382683,-0.906127,-0.375330,0.195090,-0.923879,-0.382683,0.000000,-0.906127,-0.375330,-0.195090,-0.853553,-0.353553,-0.382683 + ,-0.768177,-0.318189,-0.555570,-0.653281,-0.270598,-0.707107,-0.513280,-0.212607,-0.831470,-0.353553,-0.146447,-0.923880,-0.180240,-0.074658,-0.980785,-0.191341,-0.038060,0.980785,-0.375330,-0.074658,0.923880 + ,-0.544895,-0.108386,0.831470,-0.693520,-0.137950,0.707107,-0.815492,-0.162211,0.555570,-0.906127,-0.180240,0.382683,-0.961939,-0.191341,0.195090,-0.980784,-0.195090,0.000000,-0.961939,-0.191341,-0.195090 + ,-0.906127,-0.180240,-0.382683,-0.815492,-0.162211,-0.555570,-0.693520,-0.137950,-0.707107,-0.544895,-0.108386,-0.831470,-0.375330,-0.074658,-0.923880,-0.191341,-0.038060,-0.980785 + PolygonVertexIndex: 21,22,7,-7,1,0,15,-17,28,29,14,-14,22,23,8,-8,16,17,2,-2,23,24,9,-9,17,18,3,-3,24,25,10,-10,18,19,4,-4,25,26,11,-11,19,20,5,-5,26,27,12,-12,20,21,6,-6 + ,27,28,13,-13,39,40,25,-25,33,34,19,-19,40,41,26,-26,34,35,20,-20,41,42,27,-27,35,36,21,-21,42,43,28,-28,36,37,22,-22,30,31,16,-16,43,44,29,-29,37,38,23,-23,31,32,17,-17 + ,38,39,24,-24,32,33,18,-18,58,59,44,-44,52,53,38,-38,46,47,32,-32,53,54,39,-39,47,48,33,-33,54,55,40,-40,48,49,34,-34,55,56,41,-41,49,50,35,-35,56,57,42,-42,50,51,36,-36 + ,57,58,43,-43,51,52,37,-37,45,46,31,-31,71,72,57,-57,65,66,51,-51,72,73,58,-58,66,67,52,-52,60,61,46,-46,73,74,59,-59,67,68,53,-53,61,62,47,-47,68,69,54,-54,62,63,48,-48 + ,69,70,55,-55,63,64,49,-49,70,71,56,-56,64,65,50,-50,77,78,63,-63,84,85,70,-70,78,79,64,-64,85,86,71,-71,79,80,65,-65,86,87,72,-72,80,81,66,-66,87,88,73,-73,81,82,67,-67 + ,75,76,61,-61,88,89,74,-74,82,83,68,-68,76,77,62,-62,83,84,69,-69,96,97,82,-82,90,91,76,-76,103,104,89,-89,97,98,83,-83,91,92,77,-77,98,99,84,-84,92,93,78,-78,99,100,85,-85 + ,93,94,79,-79,100,101,86,-86,94,95,80,-80,101,102,87,-87,95,96,81,-81,102,103,88,-88,115,116,101,-101,109,110,95,-95,116,117,102,-102,110,111,96,-96,117,118,103,-103,111,112,97,-97,105,106,91,-91 + ,118,119,104,-104,112,113,98,-98,106,107,92,-92,113,114,99,-99,107,108,93,-93,114,115,100,-100,108,109,94,-94,128,129,114,-114,122,123,108,-108,129,130,115,-115,123,124,109,-109,130,131,116,-116,124,125,110,-110 + ,131,132,117,-117,125,126,111,-111,132,133,118,-118,126,127,112,-112,120,121,106,-106,133,134,119,-119,127,128,113,-113,121,122,107,-107,147,148,133,-133,141,142,127,-127,135,136,121,-121,148,149,134,-134,142,143,128,-128 + ,136,137,122,-122,143,144,129,-129,137,138,123,-123,144,145,130,-130,138,139,124,-124,145,146,131,-131,139,140,125,-125,146,147,132,-132,140,141,126,-126,160,161,146,-146,154,155,140,-140,161,162,147,-147,155,156,141,-141 + ,162,163,148,-148,156,157,142,-142,150,151,136,-136,163,164,149,-149,157,158,143,-143,151,152,137,-137,158,159,144,-144,152,153,138,-138,159,160,145,-145,153,154,139,-139,173,174,159,-159,167,168,153,-153,174,175,160,-160 + ,168,169,154,-154,175,176,161,-161,169,170,155,-155,176,177,162,-162,170,171,156,-156,177,178,163,-163,171,172,157,-157,165,166,151,-151,178,179,164,-164,172,173,158,-158,166,167,152,-152,192,193,178,-178,186,187,172,-172 + ,180,181,166,-166,193,194,179,-179,187,188,173,-173,181,182,167,-167,188,189,174,-174,182,183,168,-168,189,190,175,-175,183,184,169,-169,190,191,176,-176,184,185,170,-170,191,192,177,-177,185,186,171,-171,205,206,191,-191 + ,199,200,185,-185,206,207,192,-192,200,201,186,-186,207,208,193,-193,201,202,187,-187,195,196,181,-181,208,209,194,-194,202,203,188,-188,196,197,182,-182,203,204,189,-189,197,198,183,-183,204,205,190,-190,198,199,184,-184 + ,211,212,197,-197,218,219,204,-204,212,213,198,-198,219,220,205,-205,213,214,199,-199,220,221,206,-206,214,215,200,-200,221,222,207,-207,215,216,201,-201,222,223,208,-208,216,217,202,-202,210,211,196,-196,223,224,209,-209 + ,217,218,203,-203,230,231,216,-216,237,238,223,-223,231,232,217,-217,225,226,211,-211,238,239,224,-224,232,233,218,-218,226,227,212,-212,233,234,219,-219,227,228,213,-213,234,235,220,-220,228,229,214,-214,235,236,221,-221 + ,229,230,215,-215,236,237,222,-222,249,250,235,-235,243,244,229,-229,250,251,236,-236,244,245,230,-230,251,252,237,-237,245,246,231,-231,252,253,238,-238,246,247,232,-232,240,241,226,-226,253,254,239,-239,247,248,233,-233 + ,241,242,227,-227,248,249,234,-234,242,243,228,-228,268,269,254,-254,262,263,248,-248,256,257,242,-242,263,264,249,-249,257,258,243,-243,264,265,250,-250,258,259,244,-244,265,266,251,-251,259,260,245,-245,266,267,252,-252 + ,260,261,246,-246,267,268,253,-253,261,262,247,-247,255,256,241,-241,281,282,267,-267,275,276,261,-261,282,283,268,-268,276,277,262,-262,270,271,256,-256,283,284,269,-269,277,278,263,-263,271,272,257,-257,278,279,264,-264 + ,272,273,258,-258,279,280,265,-265,273,274,259,-259,280,281,266,-266,274,275,260,-260,294,295,280,-280,288,289,274,-274,295,296,281,-281,289,290,275,-275,296,297,282,-282,290,291,276,-276,297,298,283,-283,291,292,277,-277 + ,285,286,271,-271,298,299,284,-284,292,293,278,-278,286,287,272,-272,293,294,279,-279,287,288,273,-273,313,314,299,-299,307,308,293,-293,301,302,287,-287,308,309,294,-294,302,303,288,-288,309,310,295,-295,303,304,289,-289 + ,310,311,296,-296,304,305,290,-290,311,312,297,-297,305,306,291,-291,312,313,298,-298,306,307,292,-292,300,301,286,-286,326,327,312,-312,320,321,306,-306,327,328,313,-313,321,322,307,-307,315,316,301,-301,328,329,314,-314 + ,322,323,308,-308,316,317,302,-302,323,324,309,-309,317,318,303,-303,324,325,310,-310,318,319,304,-304,325,326,311,-311,319,320,305,-305,340,341,325,-325,334,335,319,-319,341,342,326,-326,335,336,320,-320,342,343,327,-327 + ,336,337,321,-321,343,344,328,-328,337,338,322,-322,331,332,316,-316,344,345,329,-329,338,339,323,-323,332,333,317,-317,339,340,324,-324,333,334,318,-318,346,347,332,-332,359,360,345,-345,353,354,339,-339,347,348,333,-333 + ,354,355,340,-340,348,349,334,-334,355,356,341,-341,349,350,335,-335,356,357,342,-342,350,351,336,-336,357,358,343,-343,351,352,337,-337,358,359,344,-344,352,353,338,-338,365,366,351,-351,372,373,358,-358,366,367,352,-352 + ,373,374,359,-359,367,368,353,-353,361,362,347,-347,374,375,360,-360,368,369,354,-354,362,363,348,-348,369,370,355,-355,363,364,349,-349,370,371,356,-356,364,365,350,-350,371,372,357,-357,384,385,370,-370,378,379,364,-364 + ,385,386,371,-371,379,380,365,-365,386,387,372,-372,380,381,366,-366,387,388,373,-373,381,382,367,-367,388,389,374,-374,382,383,368,-368,376,377,362,-362,389,390,375,-375,383,384,369,-369,377,378,363,-363,403,404,389,-389 + ,397,398,383,-383,391,392,377,-377,404,405,390,-390,398,399,384,-384,392,393,378,-378,399,400,385,-385,393,394,379,-379,400,401,386,-386,394,395,380,-380,401,402,387,-387,395,396,381,-381,402,403,388,-388,396,397,382,-382 + ,416,417,402,-402,410,411,396,-396,417,418,403,-403,411,412,397,-397,418,419,404,-404,412,413,398,-398,406,407,392,-392,419,420,405,-405,413,414,399,-399,407,408,393,-393,414,415,400,-400,408,409,394,-394,415,416,401,-401 + ,409,410,395,-395,429,430,415,-415,423,424,409,-409,430,431,416,-416,424,425,410,-410,431,432,417,-417,425,426,411,-411,432,433,418,-418,426,427,412,-412,433,434,419,-419,427,428,413,-413,421,422,407,-407,434,435,420,-420 + ,428,429,414,-414,422,423,408,-408,449,450,434,-434,443,444,428,-428,437,438,422,-422,450,451,435,-435,444,445,429,-429,438,439,423,-423,445,446,430,-430,439,440,424,-424,446,447,431,-431,440,441,425,-425,447,448,432,-432 + ,441,442,426,-426,448,449,433,-433,442,443,427,-427,462,463,448,-448,456,457,442,-442,463,464,449,-449,457,458,443,-443,464,465,450,-450,458,459,444,-444,452,453,438,-438,465,466,451,-451,459,460,445,-445,453,454,439,-439 + ,460,461,446,-446,454,455,440,-440,461,462,447,-447,455,456,441,-441,475,476,461,-461,469,470,455,-455,476,477,462,-462,470,471,456,-456,477,478,463,-463,471,472,457,-457,478,479,464,-464,472,473,458,-458,479,480,465,-465 + ,473,474,459,-459,467,468,453,-453,480,481,466,-466,474,475,460,-460,468,469,454,-454,29,330,-15,15,0,-437,436,30,-16,44,330,-30,59,330,-45,436,45,-31,436,60,-46,74,330,-60 + ,436,75,-61,89,330,-75,104,330,-90,436,90,-76,436,105,-91,119,330,-105,134,330,-120,436,120,-106,149,330,-135,436,135,-121,436,150,-136,164,330,-150,179,330,-165 + ,436,165,-151,194,330,-180,436,180,-166,436,195,-181,209,330,-195,224,330,-210,436,210,-196,436,225,-211,239,330,-225,436,240,-226,254,330,-240,269,330,-255,436,255,-241 + ,436,270,-256,284,330,-270,436,285,-271,299,330,-285,314,330,-300,436,300,-286,436,315,-301,329,330,-315,436,331,-316,345,330,-330,360,330,-346,436,346,-332,436,361,-347 + ,375,330,-361,436,376,-362,390,330,-376,405,330,-391,436,391,-377,436,406,-392,420,330,-406,435,330,-421,436,421,-407,451,330,-436,436,437,-422,436,452,-438,466,330,-452 + ,481,330,-467,436,467,-453,436,0,-468,12,13,480,-480,6,7,474,-474,0,1,468,-468,13,14,481,-481,7,8,475,-475,1,2,469,-469,14,330,-482,8,9,476,-476,2,3,470,-470,9,10,477,-477 + ,3,4,471,-471,10,11,478,-478,4,5,472,-472,11,12,479,-479,5,6,473,-473 + Edges: + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: -0.200964391231537,0.000000000000000,0.979583144187927,-0.387859731912613,0.000000000000000,0.921689510345459 + ,-0.559770524501801,0.000000000000000,0.828638553619385,-0.710135221481323,0.000000000000000,0.704031467437744 + ,-0.833338439464569,0.000000000000000,0.552751243114471,-0.924741327762604,0.000000000000000,0.380535304546356 + ,-0.980986952781677,0.000000000000000,0.193914607167244,-1.000000000000000,0.000000000000000,0.000000000000000 + ,-0.980986952781677,0.000000000000000,-0.193914607167244,-0.924741327762604,0.000000000000000,-0.380535304546356 + ,-0.833338439464569,0.000000000000000,-0.552751243114471,-0.710135221481323,0.000000000000000,-0.704031467437744 + ,-0.559770524501801,0.000000000000000,-0.828638553619385,-0.387859731912613,0.000000000000000,-0.921689510345459 + ,-0.200964391231537,0.000000000000000,-0.979583144187927,-0.197088539600372,0.039185766130686,0.979583144187927 + ,-0.380413234233856,0.075655385851860,0.921689510345459,-0.548997461795807,0.109195224940777,0.828638553619385 + ,-0.696493446826935,0.138523519039154,0.704031467437744,-0.817316174507141,0.162572100758553,0.552751243114471 + ,-0.906979560852051,0.180394902825356,0.380535304546356,-0.962157070636749,0.191381573677063,0.193914607167244 + ,-0.980773329734802,0.195074319839478,0.000000000000000,-0.962157070636749,0.191381573677063,-0.193914607167244 + ,-0.906979560852051,0.180394902825356,-0.380535304546356,-0.817316174507141,0.162572100758553,-0.552751243114471 + ,-0.696493446826935,0.138523519039154,-0.704031467437744,-0.548997461795807,0.109195224940777,-0.828638553619385 + ,-0.380413234233856,0.075655385851860,-0.921689510345459,-0.197088539600372,0.039185766130686,-0.979583144187927 + ,-0.185644090175629,0.076906643807888,0.979583144187927,-0.358348339796066,0.148411512374878,0.921689510345459 + ,-0.517136156558990,0.214209422469139,0.828638553619385,-0.656056404113770,0.271736800670624,0.704031467437744 + ,-0.769890427589417,0.318887919187546,0.552751243114471,-0.854365646839142,0.353892624378204,0.380535304546356 + ,-0.906338691711426,0.375408172607422,0.193914607167244,-0.923856317996979,0.382671594619751,0.000000000000000 + ,-0.906338691711426,0.375408172607422,-0.193914607167244,-0.854365646839142,0.353892624378204,-0.380535304546356 + ,-0.769890427589417,0.318887919187546,-0.552751243114471,-0.656056404113770,0.271736800670624,-0.704031467437744 + ,-0.517136156558990,0.214209422469139,-0.828638553619385,-0.358348339796066,0.148411512374878,-0.921689510345459 + ,-0.185644090175629,0.076906643807888,-0.979583144187927,-0.167088836431503,0.111636705696583,0.979583144187927 + ,-0.322489082813263,0.215491190552711,0.921689510345459,-0.465407282114029,0.310983598232269,0.828638553619385 + ,-0.590441584587097,0.394512772560120,0.704031467437744,-0.692892253398895,0.462965786457062,0.552751243114471 + ,-0.768913865089417,0.513748586177826,0.380535304546356,-0.815668225288391,0.544999539852142,0.193914607167244 + ,-0.831446290016174,0.555558919906616,0.000000000000000,-0.815668225288391,0.544999539852142,-0.193914607167244 + ,-0.768913865089417,0.513748586177826,-0.380535304546356,-0.692892253398895,0.462965786457062,-0.552751243114471 + ,-0.590441584587097,0.394512772560120,-0.704031467437744,-0.465407282114029,0.310983598232269,-0.828638553619385 + ,-0.322489082813263,0.215491190552711,-0.921689510345459,-0.167088836431503,0.111636705696583,-0.979583144187927 + ,-0.142094179987907,0.142094179987907,0.979583144187927,-0.274269849061966,0.274269849061966,0.921689510345459 + ,-0.395794540643692,0.395794540643692,0.828638553619385,-0.502121031284332,0.502121031284332,0.704031467437744 + ,-0.589251399040222,0.589251399040222,0.552751243114471,-0.653889596462250,0.653889596462250,0.380535304546356 + ,-0.693655192852020,0.693655192852020,0.193914607167244,-0.707083344459534,0.707083344459534,0.000000000000000 + ,-0.693655192852020,0.693655192852020,-0.193914607167244,-0.653889596462250,0.653889596462250,-0.380535304546356 + ,-0.589251399040222,0.589251399040222,-0.552751243114471,-0.502121031284332,0.502121031284332,-0.704031467437744 + ,-0.395794540643692,0.395794540643692,-0.828638553619385,-0.274269849061966,0.274269849061966,-0.921689510345459 + ,-0.142094179987907,0.142094179987907,-0.979583144187927,-0.111636705696583,0.167088836431503,0.979583144187927 + ,-0.215491190552711,0.322489082813263,0.921689510345459,-0.310983598232269,0.465407282114029,0.828638553619385 + ,-0.394512772560120,0.590441584587097,0.704031467437744,-0.462965786457062,0.692892253398895,0.552751243114471 + ,-0.513748586177826,0.768913865089417,0.380535304546356,-0.544999539852142,0.815668225288391,0.193914607167244 + ,-0.555558919906616,0.831446290016174,0.000000000000000,-0.544999539852142,0.815668225288391,-0.193914607167244 + ,-0.513748586177826,0.768913865089417,-0.380535304546356,-0.462965786457062,0.692892253398895,-0.552751243114471 + ,-0.394512772560120,0.590441584587097,-0.704031467437744,-0.310983598232269,0.465407282114029,-0.828638553619385 + ,-0.215491190552711,0.322489082813263,-0.921689510345459,-0.111636705696583,0.167088836431503,-0.979583144187927 + ,-0.076906643807888,0.185644090175629,0.979583144187927,-0.148411512374878,0.358348339796066,0.921689510345459 + ,-0.214209422469139,0.517136156558990,0.828638553619385,-0.271736800670624,0.656056404113770,0.704031467437744 + ,-0.318887919187546,0.769890427589417,0.552751243114471,-0.353862106800079,0.854365646839142,0.380535304546356 + ,-0.375408172607422,0.906338691711426,0.193914607167244,-0.382671594619751,0.923856317996979,0.000000000000000 + ,-0.375408172607422,0.906338691711426,-0.193914607167244,-0.353862106800079,0.854365646839142,-0.380535304546356 + ,-0.318887919187546,0.769890427589417,-0.552751243114471,-0.271736800670624,0.656056404113770,-0.704031467437744 + ,-0.214209422469139,0.517136156558990,-0.828638553619385,-0.148411512374878,0.358348339796066,-0.921689510345459 + ,-0.076906643807888,0.185644090175629,-0.979583144187927,-0.039185766130686,0.197088539600372,0.979583144187927 + ,-0.075655385851860,0.380413234233856,0.921689510345459,-0.109195224940777,0.548997461795807,0.828638553619385 + ,-0.138523519039154,0.696493446826935,0.704031467437744,-0.162572100758553,0.817316174507141,0.552751243114471 + ,-0.180394902825356,0.906979560852051,0.380535304546356,-0.191381573677063,0.962157070636749,0.193914607167244 + ,-0.195074319839478,0.980773329734802,0.000000000000000,-0.191381573677063,0.962157070636749,-0.193914607167244 + ,-0.180394902825356,0.906979560852051,-0.380535304546356,-0.162572100758553,0.817316174507141,-0.552751243114471 + ,-0.138523519039154,0.696493446826935,-0.704031467437744,-0.109195224940777,0.548997461795807,-0.828638553619385 + ,-0.075655385851860,0.380413234233856,-0.921689510345459,-0.039185766130686,0.197088539600372,-0.979583144187927 + ,0.000000000000000,0.200964391231537,0.979583144187927,0.000000000000000,0.387859731912613,0.921689510345459 + ,0.000000000000000,0.559770524501801,0.828638553619385,0.000000000000000,0.710135221481323,0.704031467437744 + ,0.000000000000000,0.833338439464569,0.552751243114471,0.000000000000000,0.924741327762604,0.380535304546356 + ,0.000000000000000,0.980986952781677,0.193914607167244,0.000000000000000,1.000000000000000,0.000000000000000 + ,0.000000000000000,0.980986952781677,-0.193914607167244,0.000000000000000,0.924741327762604,-0.380535304546356 + ,0.000000000000000,0.833338439464569,-0.552751243114471,0.000000000000000,0.710135221481323,-0.704031467437744 + ,0.000000000000000,0.559770524501801,-0.828638553619385,0.000000000000000,0.387859731912613,-0.921689510345459 + ,0.000000000000000,0.200964391231537,-0.979583144187927,0.039185766130686,0.197088539600372,0.979583144187927 + ,0.075655385851860,0.380413234233856,0.921689510345459,0.109195224940777,0.548997461795807,0.828638553619385 + ,0.138523519039154,0.696493446826935,0.704031467437744,0.162572100758553,0.817316174507141,0.552751243114471 + ,0.180394902825356,0.906979560852051,0.380535304546356,0.191381573677063,0.962157070636749,0.193914607167244 + ,0.195074319839478,0.980773329734802,0.000000000000000,0.191381573677063,0.962157070636749,-0.193914607167244 + ,0.180394902825356,0.906979560852051,-0.380535304546356,0.162572100758553,0.817316174507141,-0.552751243114471 + ,0.138523519039154,0.696493446826935,-0.704031467437744,0.109195224940777,0.548997461795807,-0.828638553619385 + ,0.075655385851860,0.380413234233856,-0.921689510345459,0.039185766130686,0.197088539600372,-0.979583144187927 + ,0.076906643807888,0.185644090175629,0.979583144187927,0.148411512374878,0.358348339796066,0.921689510345459 + ,0.214209422469139,0.517136156558990,0.828638553619385,0.271736800670624,0.656056404113770,0.704031467437744 + ,0.318887919187546,0.769890427589417,0.552751243114471,0.353892624378204,0.854365646839142,0.380535304546356 + ,0.375408172607422,0.906338691711426,0.193914607167244,0.382671594619751,0.923856317996979,0.000000000000000 + ,0.375408172607422,0.906338691711426,-0.193914607167244,0.353892624378204,0.854365646839142,-0.380535304546356 + ,0.318887919187546,0.769890427589417,-0.552751243114471,0.271736800670624,0.656056404113770,-0.704031467437744 + ,0.214209422469139,0.517136156558990,-0.828638553619385,0.148411512374878,0.358348339796066,-0.921689510345459 + ,0.076906643807888,0.185644090175629,-0.979583144187927,0.111636705696583,0.167088836431503,0.979583144187927 + ,0.215491190552711,0.322489082813263,0.921689510345459,0.310983598232269,0.465407282114029,0.828638553619385 + ,0.394512772560120,0.590441584587097,0.704031467437744,0.462965786457062,0.692892253398895,0.552751243114471 + ,0.513748586177826,0.768913865089417,0.380535304546356,0.544999539852142,0.815668225288391,0.193914607167244 + ,0.555558919906616,0.831446290016174,0.000000000000000,0.544999539852142,0.815668225288391,-0.193914607167244 + ,0.513748586177826,0.768913865089417,-0.380535304546356,0.462965786457062,0.692892253398895,-0.552751243114471 + ,0.394512772560120,0.590441584587097,-0.704031467437744,0.310983598232269,0.465407282114029,-0.828638553619385 + ,0.215491190552711,0.322489082813263,-0.921689510345459,0.111636705696583,0.167088836431503,-0.979583144187927 + ,0.142094179987907,0.142094179987907,0.979583144187927,0.274269849061966,0.274269849061966,0.921689510345459 + ,0.395794540643692,0.395794540643692,0.828638553619385,0.502121031284332,0.502121031284332,0.704031467437744 + ,0.589251399040222,0.589251399040222,0.552751243114471,0.653889596462250,0.653889596462250,0.380535304546356 + ,0.693655192852020,0.693655192852020,0.193914607167244,0.707083344459534,0.707083344459534,0.000000000000000 + ,0.693655192852020,0.693655192852020,-0.193914607167244,0.653889596462250,0.653889596462250,-0.380535304546356 + ,0.589251399040222,0.589251399040222,-0.552751243114471,0.502121031284332,0.502121031284332,-0.704031467437744 + ,0.395794540643692,0.395794540643692,-0.828638553619385,0.274269849061966,0.274269849061966,-0.921689510345459 + ,0.142094179987907,0.142094179987907,-0.979583144187927,0.167088836431503,0.111636705696583,0.979583144187927 + ,0.322489082813263,0.215491190552711,0.921689510345459,0.465407282114029,0.310983598232269,0.828638553619385 + ,0.590441584587097,0.394512772560120,0.704031467437744,0.692892253398895,0.462965786457062,0.552751243114471 + ,0.768913865089417,0.513748586177826,0.380535304546356,0.815668225288391,0.544999539852142,0.193914607167244 + ,0.831446290016174,0.555558919906616,0.000000000000000,0.815668225288391,0.544999539852142,-0.193914607167244 + ,0.768913865089417,0.513748586177826,-0.380535304546356,0.692892253398895,0.462965786457062,-0.552751243114471 + ,0.590441584587097,0.394512772560120,-0.704031467437744,0.465407282114029,0.310983598232269,-0.828638553619385 + ,0.322489082813263,0.215491190552711,-0.921689510345459,0.167088836431503,0.111636705696583,-0.979583144187927 + ,0.185644090175629,0.076906643807888,0.979583144187927,0.358348339796066,0.148411512374878,0.921689510345459 + ,0.517136156558990,0.214209422469139,0.828638553619385,0.656056404113770,0.271736800670624,0.704031467437744 + ,0.769890427589417,0.318887919187546,0.552751243114471,0.854365646839142,0.353862106800079,0.380535304546356 + ,0.906338691711426,0.375408172607422,0.193914607167244,0.923856317996979,0.382671594619751,0.000000000000000 + ,0.906338691711426,0.375408172607422,-0.193914607167244,0.854365646839142,0.353862106800079,-0.380535304546356 + ,0.769890427589417,0.318887919187546,-0.552751243114471,0.656056404113770,0.271736800670624,-0.704031467437744 + ,0.517136156558990,0.214209422469139,-0.828638553619385,0.358348339796066,0.148411512374878,-0.921689510345459 + ,0.185644090175629,0.076906643807888,-0.979583144187927,0.197088539600372,0.039185766130686,0.979583144187927 + ,0.380413234233856,0.075655385851860,0.921689510345459,0.548997461795807,0.109195224940777,0.828638553619385 + ,0.696493446826935,0.138523519039154,0.704031467437744,0.817316174507141,0.162572100758553,0.552751243114471 + ,0.906979560852051,0.180394902825356,0.380535304546356,0.962157070636749,0.191381573677063,0.193914607167244 + ,0.980773329734802,0.195074319839478,0.000000000000000,0.962157070636749,0.191381573677063,-0.193914607167244 + ,0.906979560852051,0.180394902825356,-0.380535304546356,0.817316174507141,0.162572100758553,-0.552751243114471 + ,0.696493446826935,0.138523519039154,-0.704031467437744,0.548997461795807,0.109195224940777,-0.828638553619385 + ,0.380413234233856,0.075655385851860,-0.921689510345459,0.197088539600372,0.039185766130686,-0.979583144187927 + ,0.200964391231537,0.000000000000000,0.979583144187927,0.387859731912613,0.000000000000000,0.921689510345459 + ,0.559770524501801,0.000000000000000,0.828638553619385,0.710135221481323,0.000000000000000,0.704031467437744 + ,0.833338439464569,0.000000000000000,0.552751243114471,0.924741327762604,0.000000000000000,0.380535304546356 + ,0.980986952781677,0.000000000000000,0.193914607167244,1.000000000000000,0.000000000000000,0.000000000000000 + ,0.980986952781677,0.000000000000000,-0.193914607167244,0.924741327762604,0.000000000000000,-0.380535304546356 + ,0.833338439464569,0.000000000000000,-0.552751243114471,0.710135221481323,0.000000000000000,-0.704031467437744 + ,0.559770524501801,0.000000000000000,-0.828638553619385,0.387859731912613,0.000000000000000,-0.921689510345459 + ,0.200964391231537,0.000000000000000,-0.979583144187927,0.197088539600372,-0.039185766130686,0.979583144187927 + ,0.380413234233856,-0.075655385851860,0.921689510345459,0.548997461795807,-0.109195224940777,0.828638553619385 + ,0.696493446826935,-0.138523519039154,0.704031467437744,0.817316174507141,-0.162572100758553,0.552751243114471 + ,0.906979560852051,-0.180394902825356,0.380535304546356,0.962157070636749,-0.191381573677063,0.193914607167244 + ,0.980773329734802,-0.195074319839478,0.000000000000000,0.962157070636749,-0.191381573677063,-0.193914607167244 + ,0.906979560852051,-0.180394902825356,-0.380535304546356,0.817316174507141,-0.162572100758553,-0.552751243114471 + ,0.696493446826935,-0.138523519039154,-0.704031467437744,0.548997461795807,-0.109195224940777,-0.828638553619385 + ,0.380413234233856,-0.075655385851860,-0.921689510345459,0.197088539600372,-0.039185766130686,-0.979583144187927 + ,0.185644090175629,-0.076906643807888,0.979583144187927,0.358348339796066,-0.148411512374878,0.921689510345459 + ,0.517136156558990,-0.214209422469139,0.828638553619385,0.656056404113770,-0.271736800670624,0.704031467437744 + ,0.769890427589417,-0.318887919187546,0.552751243114471,0.854365646839142,-0.353892624378204,0.380535304546356 + ,0.906338691711426,-0.375408172607422,0.193914607167244,0.923856317996979,-0.382671594619751,0.000000000000000 + ,0.906338691711426,-0.375408172607422,-0.193914607167244,0.854365646839142,-0.353892624378204,-0.380535304546356 + ,0.769890427589417,-0.318887919187546,-0.552751243114471,0.656056404113770,-0.271736800670624,-0.704031467437744 + ,0.517136156558990,-0.214209422469139,-0.828638553619385,0.358348339796066,-0.148411512374878,-0.921689510345459 + ,0.185644090175629,-0.076906643807888,-0.979583144187927,0.167088836431503,-0.111636705696583,0.979583144187927 + ,0.322489082813263,-0.215491190552711,0.921689510345459,0.465407282114029,-0.310983598232269,0.828638553619385 + ,0.590441584587097,-0.394512772560120,0.704031467437744,0.692892253398895,-0.462965786457062,0.552751243114471 + ,0.768913865089417,-0.513748586177826,0.380535304546356,0.815668225288391,-0.544999539852142,0.193914607167244 + ,0.831446290016174,-0.555558919906616,0.000000000000000,0.815668225288391,-0.544999539852142,-0.193914607167244 + ,0.768913865089417,-0.513748586177826,-0.380535304546356,0.692892253398895,-0.462965786457062,-0.552751243114471 + ,0.590441584587097,-0.394512772560120,-0.704031467437744,0.465407282114029,-0.310983598232269,-0.828638553619385 + ,0.322489082813263,-0.215491190552711,-0.921689510345459,0.167088836431503,-0.111636705696583,-0.979583144187927 + ,0.142094179987907,-0.142094179987907,0.979583144187927,0.274269849061966,-0.274269849061966,0.921689510345459 + ,0.395794540643692,-0.395794540643692,0.828638553619385,0.502121031284332,-0.502121031284332,0.704031467437744 + ,0.589251399040222,-0.589251399040222,0.552751243114471,0.653889596462250,-0.653889596462250,0.380535304546356 + ,0.693655192852020,-0.693655192852020,0.193914607167244,0.707083344459534,-0.707083344459534,0.000000000000000 + ,0.693655192852020,-0.693655192852020,-0.193914607167244,0.653889596462250,-0.653889596462250,-0.380535304546356 + ,0.589251399040222,-0.589251399040222,-0.552751243114471,0.502121031284332,-0.502121031284332,-0.704031467437744 + ,0.395794540643692,-0.395794540643692,-0.828638553619385,0.274269849061966,-0.274269849061966,-0.921689510345459 + ,0.142094179987907,-0.142094179987907,-0.979583144187927,0.111636705696583,-0.167088836431503,0.979583144187927 + ,0.215491190552711,-0.322489082813263,0.921689510345459,0.310983598232269,-0.465407282114029,0.828638553619385 + ,0.394512772560120,-0.590441584587097,0.704031467437744,0.462965786457062,-0.692892253398895,0.552751243114471 + ,0.513748586177826,-0.768913865089417,0.380535304546356,0.544999539852142,-0.815668225288391,0.193914607167244 + ,0.555558919906616,-0.831446290016174,0.000000000000000,0.544999539852142,-0.815668225288391,-0.193914607167244 + ,0.513748586177826,-0.768913865089417,-0.380535304546356,0.462965786457062,-0.692892253398895,-0.552751243114471 + ,0.394512772560120,-0.590441584587097,-0.704031467437744,0.310983598232269,-0.465407282114029,-0.828638553619385 + ,0.215491190552711,-0.322489082813263,-0.921689510345459,0.111636705696583,-0.167088836431503,-0.979583144187927 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.076906643807888,-0.185644090175629,0.979583144187927 + ,0.148411512374878,-0.358348339796066,0.921689510345459,0.214209422469139,-0.517136156558990,0.828638553619385 + ,0.271736800670624,-0.656056404113770,0.704031467437744,0.318887919187546,-0.769890427589417,0.552751243114471 + ,0.353862106800079,-0.854365646839142,0.380535304546356,0.375408172607422,-0.906338691711426,0.193914607167244 + ,0.382671594619751,-0.923856317996979,0.000000000000000,0.375408172607422,-0.906338691711426,-0.193914607167244 + ,0.353862106800079,-0.854365646839142,-0.380535304546356,0.318887919187546,-0.769890427589417,-0.552751243114471 + ,0.271736800670624,-0.656056404113770,-0.704031467437744,0.214209422469139,-0.517136156558990,-0.828638553619385 + ,0.148411512374878,-0.358348339796066,-0.921689510345459,0.076906643807888,-0.185644090175629,-0.979583144187927 + ,0.039185766130686,-0.197088539600372,0.979583144187927,0.075655385851860,-0.380413234233856,0.921689510345459 + ,0.109195224940777,-0.548997461795807,0.828638553619385,0.138523519039154,-0.696493446826935,0.704031467437744 + ,0.162572100758553,-0.817316174507141,0.552751243114471,0.180394902825356,-0.906979560852051,0.380535304546356 + ,0.191381573677063,-0.962157070636749,0.193914607167244,0.195074319839478,-0.980773329734802,0.000000000000000 + ,0.191381573677063,-0.962157070636749,-0.193914607167244,0.180394902825356,-0.906979560852051,-0.380535304546356 + ,0.162572100758553,-0.817316174507141,-0.552751243114471,0.138523519039154,-0.696493446826935,-0.704031467437744 + ,0.109195224940777,-0.548997461795807,-0.828638553619385,0.075655385851860,-0.380413234233856,-0.921689510345459 + ,0.039185766130686,-0.197088539600372,-0.979583144187927,0.000000000000000,-0.200964391231537,0.979583144187927 + ,0.000000000000000,-0.387859731912613,0.921689510345459,0.000000000000000,-0.559770524501801,0.828638553619385 + ,0.000000000000000,-0.710135221481323,0.704031467437744,0.000000000000000,-0.833338439464569,0.552751243114471 + ,0.000000000000000,-0.924741327762604,0.380535304546356,0.000000000000000,-0.980986952781677,0.193914607167244 + ,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,-0.980986952781677,-0.193914607167244 + ,0.000000000000000,-0.924741327762604,-0.380535304546356,0.000000000000000,-0.833338439464569,-0.552751243114471 + ,0.000000000000000,-0.710135221481323,-0.704031467437744,0.000000000000000,-0.559770524501801,-0.828638553619385 + ,0.000000000000000,-0.387859731912613,-0.921689510345459,0.000000000000000,-0.200964391231537,-0.979583144187927 + ,-0.039185766130686,-0.197088539600372,0.979583144187927,-0.075655385851860,-0.380413234233856,0.921689510345459 + ,-0.109195224940777,-0.548997461795807,0.828638553619385,-0.138523519039154,-0.696493446826935,0.704031467437744 + ,-0.162572100758553,-0.817316174507141,0.552751243114471,-0.180394902825356,-0.906979560852051,0.380535304546356 + ,-0.191381573677063,-0.962157070636749,0.193914607167244,-0.195074319839478,-0.980773329734802,0.000000000000000 + ,-0.191381573677063,-0.962157070636749,-0.193914607167244,-0.180394902825356,-0.906979560852051,-0.380535304546356 + ,-0.162572100758553,-0.817316174507141,-0.552751243114471,-0.138523519039154,-0.696493446826935,-0.704031467437744 + ,-0.109195224940777,-0.548997461795807,-0.828638553619385,-0.075655385851860,-0.380413234233856,-0.921689510345459 + ,-0.039185766130686,-0.197088539600372,-0.979583144187927,-0.076906643807888,-0.185644090175629,0.979583144187927 + ,-0.148411512374878,-0.358348339796066,0.921689510345459,-0.214209422469139,-0.517136156558990,0.828638553619385 + ,-0.271736800670624,-0.656056404113770,0.704031467437744,-0.318887919187546,-0.769890427589417,0.552751243114471 + ,-0.353892624378204,-0.854365646839142,0.380535304546356,-0.375408172607422,-0.906338691711426,0.193914607167244 + ,-0.382671594619751,-0.923856317996979,0.000000000000000,-0.375408172607422,-0.906338691711426,-0.193914607167244 + ,-0.353892624378204,-0.854365646839142,-0.380535304546356,-0.318887919187546,-0.769890427589417,-0.552751243114471 + ,-0.271736800670624,-0.656056404113770,-0.704031467437744,-0.214209422469139,-0.517136156558990,-0.828638553619385 + ,-0.148411512374878,-0.358348339796066,-0.921689510345459,-0.076906643807888,-0.185644090175629,-0.979583144187927 + ,-0.111636705696583,-0.167088836431503,0.979583144187927,-0.215491190552711,-0.322489082813263,0.921689510345459 + ,-0.310983598232269,-0.465407282114029,0.828638553619385,-0.394512772560120,-0.590441584587097,0.704031467437744 + ,-0.462965786457062,-0.692892253398895,0.552751243114471,-0.513748586177826,-0.768913865089417,0.380535304546356 + ,-0.544999539852142,-0.815668225288391,0.193914607167244,-0.555558919906616,-0.831446290016174,0.000000000000000 + ,-0.544999539852142,-0.815668225288391,-0.193914607167244,-0.513748586177826,-0.768913865089417,-0.380535304546356 + ,-0.462965786457062,-0.692892253398895,-0.552751243114471,-0.394512772560120,-0.590441584587097,-0.704031467437744 + ,-0.310983598232269,-0.465407282114029,-0.828638553619385,-0.215491190552711,-0.322489082813263,-0.921689510345459 + ,-0.111636705696583,-0.167088836431503,-0.979583144187927,-0.142094179987907,-0.142094179987907,0.979583144187927 + ,-0.274269849061966,-0.274269849061966,0.921689510345459,-0.395794540643692,-0.395794540643692,0.828638553619385 + ,-0.502121031284332,-0.502121031284332,0.704031467437744,-0.589251399040222,-0.589251399040222,0.552751243114471 + ,-0.653889596462250,-0.653889596462250,0.380535304546356,-0.693655192852020,-0.693655192852020,0.193914607167244 + ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.693655192852020,-0.693655192852020,-0.193914607167244 + ,-0.653889596462250,-0.653889596462250,-0.380535304546356,-0.589251399040222,-0.589251399040222,-0.552751243114471 + ,-0.502121031284332,-0.502121031284332,-0.704031467437744,-0.395794540643692,-0.395794540643692,-0.828638553619385 + ,-0.274269849061966,-0.274269849061966,-0.921689510345459,-0.142094179987907,-0.142094179987907,-0.979583144187927 + ,0.000000000000000,0.000000000000000,1.000000000000000,-0.167088836431503,-0.111636705696583,0.979583144187927 + ,-0.322489082813263,-0.215491190552711,0.921689510345459,-0.465407282114029,-0.310983598232269,0.828638553619385 + ,-0.590441584587097,-0.394512772560120,0.704031467437744,-0.692892253398895,-0.462965786457062,0.552751243114471 + ,-0.768913865089417,-0.513748586177826,0.380535304546356,-0.815668225288391,-0.544999539852142,0.193914607167244 + ,-0.831446290016174,-0.555558919906616,0.000000000000000,-0.815668225288391,-0.544999539852142,-0.193914607167244 + ,-0.768913865089417,-0.513748586177826,-0.380535304546356,-0.692892253398895,-0.462965786457062,-0.552751243114471 + ,-0.590441584587097,-0.394512772560120,-0.704031467437744,-0.465407282114029,-0.310983598232269,-0.828638553619385 + ,-0.322489082813263,-0.215491190552711,-0.921689510345459,-0.167088836431503,-0.111636705696583,-0.979583144187927 + ,-0.185644090175629,-0.076906643807888,0.979583144187927,-0.358348339796066,-0.148411512374878,0.921689510345459 + ,-0.517136156558990,-0.214209422469139,0.828638553619385,-0.656056404113770,-0.271736800670624,0.704031467437744 + ,-0.769890427589417,-0.318887919187546,0.552751243114471,-0.854365646839142,-0.353862106800079,0.380535304546356 + ,-0.906338691711426,-0.375408172607422,0.193914607167244,-0.923856317996979,-0.382671594619751,0.000000000000000 + ,-0.906338691711426,-0.375408172607422,-0.193914607167244,-0.854365646839142,-0.353862106800079,-0.380535304546356 + ,-0.769890427589417,-0.318887919187546,-0.552751243114471,-0.656056404113770,-0.271736800670624,-0.704031467437744 + ,-0.517136156558990,-0.214209422469139,-0.828638553619385,-0.358348339796066,-0.148411512374878,-0.921689510345459 + ,-0.185644090175629,-0.076906643807888,-0.979583144187927,-0.197088539600372,-0.039185766130686,0.979583144187927 + ,-0.380413234233856,-0.075655385851860,0.921689510345459,-0.548997461795807,-0.109195224940777,0.828638553619385 + ,-0.696493446826935,-0.138523519039154,0.704031467437744,-0.817316174507141,-0.162572100758553,0.552751243114471 + ,-0.906979560852051,-0.180394902825356,0.380535304546356,-0.962157070636749,-0.191381573677063,0.193914607167244 + ,-0.980773329734802,-0.195074319839478,0.000000000000000,-0.962157070636749,-0.191381573677063,-0.193914607167244 + ,-0.906979560852051,-0.180394902825356,-0.380535304546356,-0.817316174507141,-0.162572100758553,-0.552751243114471 + ,-0.696493446826935,-0.138523519039154,-0.704031467437744,-0.548997461795807,-0.109195224940777,-0.828638553619385 + ,-0.380413234233856,-0.075655385851860,-0.921689510345459,-0.197088539600372,-0.039185766130686,-0.979583144187927 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.073165,0.421558,0.062751,0.363479,0.115791,0.358433,0.125697,0.409339,0.167081,0.736562,0.199569,0.757887,0.196111,0.764610 + ,0.160116,0.749744,0.005431,0.806951,0.041428,0.792087,0.044885,0.798809,0.012396,0.820132,0.062751,0.363479,0.062047,0.304493 + ,0.115890,0.306585,0.115791,0.358433,0.248442,0.680133,0.197591,0.632947,0.225463,0.609235,0.269190,0.661100,0.062047,0.304493 + ,0.070012,0.245414,0.121209,0.254210,0.115890,0.306585,0.197591,0.632947,0.154354,0.584058,0.189989,0.559411,0.225463,0.609235 + ,0.070012,0.245414,0.086486,0.186941,0.132695,0.201152,0.121209,0.254210,0.154354,0.584058,0.119079,0.532236,0.161992,0.509620 + ,0.189989,0.559411,0.086486,0.186941,0.111460,0.129521,0.150891,0.147111,0.132695,0.201152,0.119079,0.532236,0.092002,0.477936 + ,0.140797,0.459720,0.161992,0.509620,0.111460,0.129521,0.144845,0.073328,0.176334,0.091518,0.150891,0.147111,0.092002,0.477936 + ,0.073165,0.421558,0.125697,0.409339,0.140797,0.459720,0.144845,0.073328,0.185949,0.017648,0.209446,0.032513,0.176334,0.091518 + ,0.012420,0.231966,0.036347,0.166763,0.086486,0.186941,0.070012,0.245414,0.118805,0.614869,0.073591,0.561444,0.119079,0.532236 + ,0.154354,0.584058,0.036347,0.166763,0.070784,0.105857,0.111460,0.129521,0.086486,0.186941,0.073591,0.561444,0.037906,0.501886 + ,0.092002,0.477936,0.119079,0.532236,0.070784,0.105857,0.114497,0.050183,0.144845,0.073328,0.111460,0.129521,0.037906,0.501886 + ,0.013025,0.437504,0.073165,0.421558,0.092002,0.477936,0.114497,0.050183,0.165141,0.000000,0.185949,0.017648,0.144845,0.073328 + ,0.013025,0.437504,0.000000,0.369433,0.062751,0.363479,0.073165,0.421558,0.193990,0.771904,0.155744,0.764013,0.160116,0.749744 + ,0.196111,0.764610,0.001061,0.792681,0.039308,0.784792,0.041428,0.792087,0.005431,0.806951,0.000000,0.369433,0.000000,0.300135 + ,0.062047,0.304493,0.062751,0.363479,0.231237,0.701364,0.172078,0.661370,0.197591,0.632947,0.248442,0.680133,0.000000,0.300135 + ,0.012420,0.231966,0.070012,0.245414,0.062047,0.304493,0.172078,0.661370,0.118805,0.614869,0.154354,0.584058,0.197591,0.632947 + ,0.000658,0.768355,0.039157,0.773723,0.038929,0.781303,0.000000,0.783237,0.964220,0.277676,0.959277,0.245013,0.992969,0.237516 + ,0.999082,0.274372,0.914307,0.482465,0.932407,0.446728,0.951690,0.457101,0.927983,0.490434,0.959277,0.245013,0.950619,0.212631 + ,0.981695,0.201529,0.992969,0.237516,0.932407,0.446728,0.946698,0.411973,0.971392,0.422214,0.951690,0.457101,0.950619,0.212631 + ,0.938157,0.180730,0.965396,0.167089,0.981695,0.201529,0.946698,0.411973,0.956876,0.377782,0.986144,0.386043,0.971392,0.422214 + ,0.938157,0.180730,0.921738,0.149161,0.944190,0.134467,0.965396,0.167089,0.956876,0.377782,0.963090,0.344115,0.995685,0.349177 + ,0.986144,0.386043,0.921738,0.149161,0.901232,0.117768,0.918374,0.103967,0.944190,0.134467,0.963090,0.344115,0.965503,0.310684 + ,1.000000,0.311719,0.995685,0.349177,0.901232,0.117768,0.876811,0.085921,0.888809,0.075514,0.918374,0.103967,0.965503,0.310684 + ,0.964220,0.277676,0.999082,0.274372,1.000000,0.311719,0.193836,0.782973,0.155337,0.788344,0.154683,0.773443,0.193610,0.775393 + ,0.899490,0.160654,0.883152,0.128835,0.901232,0.117768,0.921738,0.149161,0.933449,0.341069,0.934573,0.310559,0.965503,0.310684 + ,0.963090,0.344115,0.883152,0.128835,0.863205,0.094600,0.876811,0.085921,0.901232,0.117768,0.934573,0.310559,0.933060,0.280629 + ,0.964220,0.277676,0.965503,0.310684,0.195497,0.790334,0.158775,0.802822,0.155337,0.788344,0.193836,0.782973,0.004095,0.753861 + ,0.040817,0.766361,0.039157,0.773723,0.000658,0.768355,0.933060,0.280629,0.928924,0.250949,0.959277,0.245013,0.964220,0.277676 + ,0.899348,0.476477,0.912595,0.439212,0.932407,0.446728,0.914307,0.482465,0.928924,0.250949,0.922086,0.221199,0.950619,0.212631 + ,0.959277,0.245013,0.912595,0.439212,0.922642,0.404851,0.946698,0.411973,0.932407,0.446728,0.922086,0.221199,0.912360,0.191250 + ,0.938157,0.180730,0.950619,0.212631,0.922642,0.404851,0.929530,0.372327,0.956876,0.377782,0.946698,0.411973,0.912360,0.191250 + ,0.899490,0.160654,0.921738,0.149161,0.938157,0.180730,0.929530,0.372327,0.933449,0.341069,0.963090,0.344115,0.956876,0.377782 + ,0.892631,0.434050,0.899318,0.400100,0.922642,0.404851,0.912595,0.439212,0.895451,0.227959,0.887721,0.199484,0.912360,0.191250 + ,0.922086,0.221199,0.899318,0.400100,0.903756,0.368875,0.929530,0.372327,0.922642,0.404851,0.887721,0.199484,0.877525,0.169697 + ,0.899490,0.160654,0.912360,0.191250,0.903756,0.368875,0.906006,0.339435,0.933449,0.341069,0.929530,0.372327,0.877525,0.169697 + ,0.864459,0.137662,0.883152,0.128835,0.899490,0.160654,0.906006,0.339435,0.906220,0.311051,0.934573,0.310559,0.933449,0.341069 + ,0.864459,0.137662,0.848372,0.101683,0.863205,0.094600,0.883152,0.128835,0.906220,0.311051,0.904549,0.283330,0.933060,0.280629 + ,0.934573,0.310559,0.198519,0.797219,0.164875,0.816394,0.158775,0.802822,0.195497,0.790334,0.010200,0.740304,0.043843,0.759479 + ,0.040817,0.766361,0.004095,0.753861,0.904549,0.283330,0.900987,0.255789,0.928924,0.250949,0.933060,0.280629,0.883465,0.472270 + ,0.892631,0.434050,0.912595,0.439212,0.899348,0.476477,0.900987,0.255789,0.895451,0.227959,0.922086,0.221199,0.928924,0.250949 + ,0.879734,0.311985,0.877946,0.285847,0.904549,0.283330,0.906220,0.311051,0.202788,0.803380,0.173428,0.828557,0.164875,0.816394 + ,0.198519,0.797219,0.018753,0.728142,0.048113,0.753318,0.043843,0.759479,0.010200,0.740304,0.877946,0.285847,0.874801,0.259840 + ,0.900987,0.255789,0.904549,0.283330,0.866911,0.469646,0.872650,0.430709,0.892631,0.434050,0.883465,0.472270,0.874801,0.259840 + ,0.870218,0.233398,0.895451,0.227959,0.900987,0.255789,0.872650,0.430709,0.876642,0.397108,0.899318,0.400100,0.892631,0.434050 + ,0.870218,0.233398,0.863978,0.206009,0.887721,0.199484,0.895451,0.227959,0.876642,0.397108,0.879191,0.366913,0.903756,0.368875 + ,0.899318,0.400100,0.863978,0.206009,0.855832,0.176855,0.877525,0.169697,0.887721,0.199484,0.879191,0.366913,0.880190,0.338824 + ,0.906006,0.339435,0.903756,0.368875,0.855832,0.176855,0.845399,0.144770,0.864459,0.137662,0.877525,0.169697,0.880190,0.338824 + ,0.879734,0.311985,0.906220,0.311051,0.906006,0.339435,0.845399,0.144770,0.832713,0.107514,0.848372,0.101683,0.864459,0.137662 + ,0.840897,0.211228,0.834354,0.182512,0.855832,0.176855,0.863978,0.206009,0.855527,0.366102,0.855563,0.338987,0.880190,0.338824 + ,0.879191,0.366913,0.834354,0.182512,0.826079,0.150359,0.845399,0.144770,0.855832,0.176855,0.855563,0.338987,0.854596,0.313249 + ,0.879734,0.311985,0.880190,0.338824,0.826079,0.150359,0.816212,0.112082,0.832713,0.107514,0.845399,0.144770,0.854596,0.313249 + ,0.852715,0.288233,0.877946,0.285847,0.879734,0.311985,0.208145,0.808601,0.184128,0.838868,0.173428,0.828557,0.202788,0.803380 + ,0.029453,0.717830,0.053470,0.748098,0.048113,0.753318,0.018753,0.728142,0.852715,0.288233,0.849874,0.263309,0.874801,0.259840 + ,0.877946,0.285847,0.849879,0.468161,0.852628,0.428737,0.872650,0.430709,0.866911,0.469646,0.849874,0.263309,0.846003,0.237849 + ,0.870218,0.233398,0.874801,0.259840,0.852628,0.428737,0.854476,0.395548,0.876642,0.397108,0.872650,0.430709,0.846003,0.237849 + ,0.840897,0.211228,0.863978,0.206009,0.870218,0.233398,0.854476,0.395548,0.855527,0.366102,0.879191,0.366913,0.876642,0.397108 + ,0.825833,0.266343,0.822501,0.241546,0.846003,0.237849,0.849874,0.263309,0.832574,0.428236,0.832674,0.395160,0.854476,0.395548 + ,0.852628,0.428737,0.822501,0.241546,0.818268,0.215427,0.840897,0.211228,0.846003,0.237849,0.832674,0.395160,0.832497,0.366207 + ,0.855527,0.366102,0.854476,0.395548,0.818268,0.215427,0.812994,0.186948,0.834354,0.182512,0.840897,0.211228,0.832497,0.366207 + ,0.831782,0.339751,0.855563,0.338987,0.855527,0.366102,0.812994,0.186948,0.806448,0.154500,0.826079,0.150359,0.834354,0.182512 + ,0.831782,0.339751,0.830412,0.314772,0.854596,0.313249,0.855563,0.338987,0.806448,0.154500,0.798916,0.115216,0.816212,0.112082 + ,0.826079,0.150359,0.830412,0.314772,0.828449,0.290527,0.852715,0.288233,0.854596,0.313249,0.214390,0.812692,0.196588,0.846953 + ,0.184128,0.838868,0.208145,0.808601,0.041914,0.709745,0.059716,0.744007,0.053470,0.748098,0.029453,0.717830,0.828449,0.290527 + ,0.825833,0.266343,0.849874,0.263309,0.852715,0.288233,0.832314,0.468238,0.832574,0.428236,0.852628,0.428737,0.849879,0.468161 + ,0.786513,0.157810,0.781064,0.117669,0.798916,0.115216,0.806448,0.154500,0.806881,0.316507,0.804842,0.292760,0.828449,0.290527 + ,0.830412,0.314772,0.221295,0.815502,0.210355,0.852500,0.196588,0.846953,0.214390,0.812692,0.055681,0.704198,0.066621,0.741198 + ,0.059716,0.744007,0.041914,0.709745,0.804842,0.292760,0.802387,0.269047,0.825833,0.266343,0.828449,0.290527,0.814313,0.469092 + ,0.812359,0.428589,0.832574,0.428236,0.832314,0.468238,0.802387,0.269047,0.799464,0.244663,0.822501,0.241546,0.825833,0.266343 + ,0.812359,0.428589,0.811104,0.395608,0.832674,0.395160,0.832574,0.428236,0.799464,0.244663,0.795909,0.218826,0.818268,0.215427 + ,0.822501,0.241546,0.811104,0.395608,0.809920,0.366987,0.832497,0.366207,0.832674,0.395160,0.795909,0.218826,0.791646,0.190433 + ,0.812994,0.186948,0.818268,0.215427,0.809920,0.366987,0.808581,0.340990,0.831782,0.339751,0.832497,0.366207,0.791646,0.190433 + ,0.786513,0.157810,0.806448,0.154500,0.812994,0.186948,0.808581,0.340990,0.806881,0.316507,0.830412,0.314772,0.831782,0.339751 + ,0.773659,0.221581,0.770239,0.193104,0.791646,0.190433,0.795909,0.218826,0.787599,0.368472,0.785741,0.342648,0.808581,0.340990 + ,0.809920,0.366987,0.770239,0.193104,0.766255,0.159983,0.786513,0.157810,0.791646,0.190433,0.785741,0.342648,0.783764,0.318430 + ,0.806881,0.316507,0.808581,0.340990,0.766255,0.159983,0.762561,0.118839,0.781064,0.117669,0.786513,0.157810,0.783764,0.318430 + ,0.781651,0.294958,0.804842,0.292760,0.806881,0.316507,0.228600,0.816944,0.224925,0.855334,0.210355,0.852500,0.221295,0.815502 + ,0.070252,0.701364,0.073927,0.739757,0.066621,0.741198,0.055681,0.704198,0.781651,0.294958,0.779311,0.271503,0.802387,0.269047 + ,0.804842,0.292760,0.795880,0.471340,0.792076,0.430227,0.812359,0.428589,0.814313,0.469092,0.779311,0.271503,0.776696,0.247328 + ,0.799464,0.244663,0.802387,0.269047,0.792076,0.430227,0.789609,0.397058,0.811104,0.395608,0.812359,0.428589,0.776696,0.247328 + ,0.773659,0.221581,0.795909,0.218826,0.799464,0.244663,0.789609,0.397058,0.787599,0.368472,0.809920,0.366987,0.811104,0.395608 + ,0.756424,0.273770,0.754041,0.249647,0.776696,0.247328,0.779311,0.271503,0.771489,0.432258,0.768043,0.398924,0.789609,0.397058 + ,0.792076,0.430227,0.754041,0.249647,0.751413,0.223899,0.773659,0.221581,0.776696,0.247328,0.768043,0.398924,0.765361,0.370378 + ,0.787599,0.368472,0.789609,0.397058,0.751413,0.223899,0.748639,0.195236,0.770239,0.193104,0.773659,0.221581,0.765361,0.370378 + ,0.763077,0.344637,0.785741,0.342648,0.787599,0.368472,0.748639,0.195236,0.745564,0.161654,0.766255,0.159983,0.770239,0.193104 + ,0.763077,0.344637,0.760869,0.320513,0.783764,0.318430,0.785741,0.342648,0.745564,0.161654,0.743479,0.119580,0.762561,0.118839 + ,0.766255,0.159983,0.760869,0.320513,0.758687,0.297140,0.781651,0.294958,0.783764,0.318430,0.236041,0.816960,0.239766,0.855334 + ,0.224925,0.855334,0.228600,0.816944,0.085093,0.701364,0.081368,0.739741,0.073927,0.739757,0.070252,0.701364,0.758687,0.297140 + ,0.756424,0.273770,0.779311,0.271503,0.781651,0.294958,0.776928,0.474079,0.771489,0.432258,0.792076,0.430227,0.795880,0.471340 + ,0.724500,0.162678,0.723736,0.119589,0.743479,0.119580,0.745564,0.161654,0.738045,0.322746,0.735802,0.299318,0.758687,0.297140 + ,0.760869,0.320513,0.243342,0.815551,0.254332,0.852499,0.239766,0.855334,0.236041,0.816960,0.099659,0.704199,0.088670,0.741151 + ,0.081368,0.739741,0.085093,0.701364,0.735802,0.299318,0.733582,0.275886,0.756424,0.273770,0.758687,0.297140,0.757537,0.478072 + ,0.750731,0.435381,0.771489,0.432258,0.776928,0.474079,0.733582,0.275886,0.731366,0.251665,0.754041,0.249647,0.756424,0.273770 + ,0.750731,0.435381,0.746414,0.401611,0.768043,0.398924,0.771489,0.432258,0.731366,0.251665,0.729067,0.225724,0.751413,0.223899 + ,0.754041,0.249647,0.746414,0.401611,0.743122,0.372837,0.765361,0.370378,0.768043,0.398924,0.729067,0.225724,0.726765,0.196761 + ,0.748639,0.195236,0.751413,0.223899,0.743122,0.372837,0.740443,0.346947,0.763077,0.344637,0.765361,0.370378,0.726765,0.196761 + ,0.724500,0.162678,0.745564,0.161654,0.748639,0.195236,0.740443,0.346947,0.738045,0.322746,0.760869,0.320513,0.763077,0.344637 + ,0.706470,0.227206,0.704585,0.197828,0.726765,0.196761,0.729067,0.225724,0.720671,0.375577,0.717700,0.349480,0.740443,0.346947 + ,0.743122,0.372837,0.704585,0.197828,0.703009,0.163175,0.724500,0.162678,0.726765,0.196761,0.717700,0.349480,0.715173,0.325104 + ,0.738045,0.322746,0.740443,0.346947,0.703009,0.163175,0.703297,0.118971,0.723736,0.119589,0.724500,0.162678,0.715173,0.325104 + ,0.712889,0.301501,0.735802,0.299318,0.738045,0.322746,0.250235,0.812772,0.268086,0.846932,0.254332,0.852499,0.243342,0.815551 + ,0.113406,0.709780,0.095560,0.743939,0.088670,0.741151,0.099659,0.704199,0.712889,0.301501,0.710670,0.277887,0.733582,0.275886 + ,0.735802,0.299318,0.737616,0.482782,0.729577,0.439115,0.750731,0.435381,0.757537,0.478072,0.710670,0.277887,0.708544,0.253449 + ,0.731366,0.251665,0.733582,0.275886,0.729577,0.439115,0.724484,0.404727,0.746414,0.401611,0.750731,0.435381,0.708544,0.253449 + ,0.706470,0.227206,0.729067,0.225724,0.731366,0.251665,0.724484,0.404727,0.720671,0.375577,0.743122,0.372837,0.746414,0.401611 + ,0.717115,0.488144,0.707954,0.443415,0.729577,0.439115,0.737616,0.482782,0.687602,0.279803,0.685466,0.255051,0.708544,0.253449 + ,0.710670,0.277887,0.707954,0.443415,0.702200,0.408394,0.724484,0.404727,0.729577,0.439115,0.685466,0.255051,0.683516,0.228387 + ,0.706470,0.227206,0.708544,0.253449,0.702200,0.408394,0.697970,0.378806,0.720671,0.375577,0.724484,0.404727,0.683516,0.228387 + ,0.682013,0.198475,0.704585,0.197828,0.706470,0.227206,0.697970,0.378806,0.694765,0.352302,0.717700,0.349480,0.720671,0.375577 + ,0.682013,0.198475,0.681000,0.162872,0.703009,0.163175,0.704585,0.197828,0.694765,0.352302,0.692168,0.327594,0.715173,0.325104 + ,0.717700,0.349480,0.681000,0.162872,0.682226,0.117353,0.703297,0.118971,0.703009,0.163175,0.692168,0.327594,0.689906,0.303697 + ,0.712889,0.301501,0.715173,0.325104,0.256467,0.808724,0.280522,0.838836,0.268086,0.846932,0.250235,0.812772,0.125842,0.717874 + ,0.101791,0.747986,0.095560,0.743939,0.113406,0.709780,0.689906,0.303697,0.687602,0.279803,0.710670,0.277887,0.712889,0.301501 + ,0.671452,0.355291,0.668943,0.330184,0.692168,0.327594,0.694765,0.352302,0.658240,0.162503,0.660393,0.115749,0.682226,0.117353 + ,0.681000,0.162872,0.668943,0.330184,0.666953,0.305890,0.689906,0.303697,0.692168,0.327594,0.261800,0.803553,0.291167,0.828501 + ,0.280522,0.838836,0.256467,0.808724,0.136500,0.728199,0.107129,0.753152,0.101791,0.747986,0.125842,0.717874,0.666953,0.305890 + ,0.664307,0.281659,0.687602,0.279803,0.689906,0.303697,0.695998,0.494089,0.685796,0.448217,0.707954,0.443415,0.717115,0.488144 + ,0.664307,0.281659,0.662014,0.256532,0.685466,0.255051,0.687602,0.279803,0.685796,0.448217,0.679455,0.412367,0.702200,0.408394 + ,0.707954,0.443415,0.662014,0.256532,0.660094,0.229424,0.683516,0.228387,0.685466,0.255051,0.679455,0.412367,0.674814,0.382222 + ,0.697970,0.378806,0.702200,0.408394,0.660094,0.229424,0.658899,0.198926,0.682013,0.198475,0.683516,0.228387,0.674814,0.382222 + ,0.671452,0.355291,0.694765,0.352302,0.697970,0.378806,0.658899,0.198926,0.658240,0.162503,0.681000,0.162872,0.682013,0.198475 + ,0.638026,0.257919,0.636148,0.230288,0.660094,0.229424,0.662014,0.256532,0.656135,0.416708,0.651146,0.385921,0.674814,0.382222 + ,0.679455,0.412367,0.636148,0.230288,0.635176,0.199133,0.658899,0.198926,0.660094,0.229424,0.651146,0.385921,0.647630,0.358479 + ,0.671452,0.355291,0.674814,0.382222,0.635176,0.199133,0.634883,0.161808,0.658240,0.162503,0.658899,0.198926,0.647630,0.358479 + ,0.645316,0.332891,0.668943,0.330184,0.671452,0.355291,0.634883,0.161808,0.637782,0.113739,0.660393,0.115749,0.658240,0.162503 + ,0.645316,0.332891,0.644638,0.308021,0.666953,0.305890,0.668943,0.330184,0.266048,0.797462,0.299651,0.816327,0.291167,0.828501 + ,0.261800,0.803553,0.144971,0.740382,0.111371,0.759249,0.107129,0.753152,0.136500,0.728199,0.644638,0.308021,0.640598,0.283475 + ,0.664307,0.281659,0.666953,0.305890,0.674245,0.500547,0.663025,0.453503,0.685796,0.448217,0.695998,0.494089,0.640598,0.283475 + ,0.638026,0.257919,0.662014,0.256532,0.664307,0.281659,0.663025,0.453503,0.656135,0.416708,0.679455,0.412367,0.685796,0.448217 + ,0.150949,0.753962,0.114364,0.766042,0.111371,0.759249,0.144971,0.740382,0.618047,0.310558,0.615383,0.285375,0.640598,0.283475 + ,0.644638,0.308021,0.651634,0.506984,0.639536,0.458823,0.663025,0.453503,0.674245,0.500547,0.615383,0.285375,0.613213,0.259245 + ,0.638026,0.257919,0.640598,0.283475,0.639536,0.458823,0.632167,0.421347,0.656135,0.416708,0.663025,0.453503,0.613213,0.259245 + ,0.611571,0.231038,0.636148,0.230288,0.638026,0.257919,0.632167,0.421347,0.626856,0.389858,0.651146,0.385921,0.656135,0.416708 + ,0.611571,0.231038,0.610788,0.199137,0.635176,0.199133,0.636148,0.230288,0.626856,0.389858,0.623003,0.361879,0.647630,0.358479 + ,0.651146,0.385921,0.610788,0.199137,0.610872,0.160844,0.634883,0.161808,0.635176,0.199133,0.623003,0.361879,0.620191,0.335795 + ,0.645316,0.332891,0.647630,0.358479,0.610872,0.160844,0.614395,0.111411,0.637782,0.113739,0.634883,0.161808,0.620191,0.335795 + ,0.618047,0.310558,0.644638,0.308021,0.645316,0.332891,0.269042,0.790668,0.305628,0.802746,0.299651,0.816327,0.266048,0.797462 + ,0.585748,0.198886,0.586186,0.159645,0.610872,0.160844,0.610788,0.199137,0.597730,0.365472,0.594527,0.338815,0.620191,0.335795 + ,0.623003,0.361879,0.586186,0.159645,0.590244,0.108840,0.614395,0.111411,0.610872,0.160844,0.594527,0.338815,0.591955,0.313043 + ,0.618047,0.310558,0.620191,0.335795,0.270687,0.783429,0.308910,0.788276,0.305628,0.802746,0.269042,0.790668,0.154232,0.768432 + ,0.116008,0.773281,0.114364,0.766042,0.150949,0.753962,0.591955,0.313043,0.589619,0.287253,0.615383,0.285375,0.618047,0.310558 + ,0.628500,0.514325,0.615654,0.464880,0.639536,0.458823,0.651634,0.506984,0.589619,0.287253,0.587740,0.260490,0.613213,0.259245 + ,0.615383,0.285375,0.615654,0.464880,0.607630,0.426407,0.632167,0.421347,0.639536,0.458823,0.587740,0.260490,0.586365,0.231578 + ,0.611571,0.231038,0.613213,0.259245,0.607630,0.426407,0.601964,0.394132,0.626856,0.389858,0.632167,0.421347,0.586365,0.231578 + ,0.585748,0.198886,0.610788,0.199137,0.611571,0.231038,0.601964,0.394132,0.597730,0.365472,0.623003,0.361879,0.626856,0.389858 + ,0.561639,0.261666,0.560477,0.232018,0.586365,0.231578,0.587740,0.260490,0.582379,0.431390,0.576384,0.398474,0.601964,0.394132 + ,0.607630,0.426407,0.560477,0.232018,0.560073,0.198493,0.585748,0.198886,0.586365,0.231578,0.576384,0.398474,0.571856,0.369210 + ,0.597730,0.365472,0.601964,0.394132,0.560073,0.198493,0.560828,0.158253,0.586186,0.159645,0.585748,0.198886,0.571856,0.369210 + ,0.568376,0.341935,0.594527,0.338815,0.597730,0.365472,0.560828,0.158253,0.565357,0.106084,0.590244,0.108840,0.586186,0.159645 + ,0.568376,0.341935,0.565615,0.315547,0.591955,0.313043,0.594527,0.338815,0.270913,0.776009,0.309360,0.773445,0.308910,0.788276 + ,0.270687,0.783429,0.154683,0.783263,0.116235,0.780703,0.116008,0.773281,0.154232,0.768432,0.565615,0.315547,0.563352,0.289111 + ,0.589619,0.287253,0.591955,0.313043,0.604492,0.521453,0.590844,0.470732,0.615654,0.464880,0.628500,0.514325,0.563352,0.289111 + ,0.561639,0.261666,0.587740,0.260490,0.589619,0.287253,0.590844,0.470732,0.582379,0.431390,0.607630,0.426407,0.615654,0.464880 + ,0.152286,0.797907,0.115034,0.788032,0.116235,0.780703,0.154683,0.783263,0.538763,0.318101,0.536501,0.290962,0.563352,0.289111 + ,0.565615,0.315547,0.579784,0.528896,0.565555,0.477000,0.590844,0.470732,0.604492,0.521453,0.536501,0.290962,0.534882,0.262770 + ,0.561639,0.261666,0.563352,0.289111,0.565555,0.477000,0.556683,0.436913,0.582379,0.431390,0.590844,0.470732,0.534882,0.262770 + ,0.533927,0.232352,0.560477,0.232018,0.561639,0.261666,0.556683,0.436913,0.550254,0.403190,0.576384,0.398474,0.582379,0.431390 + ,0.533927,0.232352,0.533732,0.197957,0.560073,0.198493,0.560477,0.232018,0.550254,0.403190,0.545378,0.373147,0.571856,0.369210 + ,0.576384,0.398474,0.533732,0.197957,0.534799,0.156687,0.560828,0.158253,0.560073,0.198493,0.545378,0.373147,0.541660,0.345174 + ,0.568376,0.341935,0.571856,0.369210,0.534799,0.156687,0.539777,0.103177,0.565357,0.106084,0.560828,0.158253,0.541660,0.345174 + ,0.538763,0.318101,0.565615,0.315547,0.568376,0.341935,0.269714,0.768680,0.306962,0.758802,0.309360,0.773445,0.270913,0.776009 + ,0.506702,0.197273,0.508109,0.154942,0.534799,0.156687,0.533732,0.197957,0.518229,0.377264,0.514288,0.348542,0.541660,0.345174 + ,0.545378,0.373147,0.508109,0.154942,0.513555,0.100132,0.539777,0.103177,0.534799,0.156687,0.514288,0.348542,0.511264,0.320721 + ,0.538763,0.318101,0.541660,0.345174,0.267131,0.761716,0.301804,0.744887,0.306962,0.758802,0.269714,0.768680,0.147115,0.811816 + ,0.112443,0.794993,0.115034,0.788032,0.152286,0.797907,0.511264,0.320721,0.508976,0.292826,0.536501,0.290962,0.538763,0.318101 + ,0.554681,0.537136,0.539876,0.483952,0.565555,0.477000,0.579784,0.528896,0.508976,0.292826,0.507415,0.263860,0.534882,0.262770 + ,0.536501,0.290962,0.539876,0.483952,0.530287,0.442702,0.556683,0.436913,0.565555,0.477000,0.507415,0.263860,0.506663,0.232609 + ,0.533927,0.232352,0.534882,0.262770,0.530287,0.442702,0.523404,0.408051,0.550254,0.403190,0.556683,0.436913,0.506663,0.232609 + ,0.506702,0.197273,0.533732,0.197957,0.533927,0.232352,0.523404,0.408051,0.518229,0.377264,0.545378,0.373147,0.550254,0.403190 + ,0.479205,0.264872,0.478639,0.232722,0.506663,0.232609,0.507415,0.263860,0.503171,0.448964,0.495904,0.413290,0.523404,0.408051 + ,0.530287,0.442702,0.478639,0.232722,0.478958,0.196404,0.506702,0.197273,0.506663,0.232609,0.495904,0.413290,0.490356,0.381617 + ,0.518229,0.377264,0.523404,0.408051,0.478958,0.196404,0.480767,0.152991,0.508109,0.154942,0.506702,0.197273,0.490356,0.381617 + ,0.486175,0.352062,0.514288,0.348542,0.518229,0.377264,0.480767,0.152991,0.486751,0.096934,0.513555,0.100132,0.508109,0.154942 + ,0.486175,0.352062,0.483018,0.323417,0.511264,0.320721,0.514288,0.348542,0.263261,0.755374,0.294078,0.732217,0.301804,0.744887 + ,0.267131,0.761716,0.139391,0.824487,0.108574,0.801334,0.112443,0.794993,0.147115,0.811816,0.483018,0.323417,0.480697,0.294690 + ,0.508976,0.292826,0.511264,0.320721,0.529097,0.545593,0.513487,0.491288,0.539876,0.483952,0.554681,0.537136,0.480697,0.294690 + ,0.479205,0.264872,0.507415,0.263860,0.508976,0.292826,0.513487,0.491288,0.503171,0.448964,0.530287,0.442702,0.539876,0.483952 + ,0.258245,0.749889,0.284070,0.721257,0.294078,0.732217,0.263261,0.755374,0.129384,0.835447,0.103558,0.806818,0.108574,0.801334 + ,0.139391,0.824487,0.453921,0.326197,0.451568,0.296548,0.480697,0.294690,0.483018,0.323417,0.502796,0.553777,0.486241,0.498415 + ,0.513487,0.491288,0.529097,0.545593,0.451568,0.296548,0.450162,0.265787,0.479205,0.264872,0.480697,0.294690,0.486241,0.498415 + ,0.475314,0.455294,0.503171,0.448964,0.513487,0.491288,0.450162,0.265787,0.449808,0.232659,0.478639,0.232722,0.479205,0.264872 + ,0.475314,0.455294,0.467600,0.418804,0.495904,0.413290,0.503171,0.448964,0.449808,0.232659,0.450473,0.195301,0.478958,0.196404 + ,0.478639,0.232722,0.467600,0.418804,0.461670,0.386220,0.490356,0.381617,0.495904,0.413290,0.450473,0.195301,0.452784,0.150785 + ,0.480767,0.152991,0.478958,0.196404,0.461670,0.386220,0.457225,0.355753,0.486175,0.352062,0.490356,0.381617,0.452784,0.150785 + ,0.459433,0.093546,0.486751,0.096934,0.480767,0.152991,0.457225,0.355753,0.453921,0.326197,0.483018,0.323417,0.486175,0.352062 + ,0.438502,0.424736,0.432091,0.391134,0.461670,0.386220,0.467600,0.418804,0.421213,0.193892,0.424175,0.148244,0.452784,0.150785 + ,0.450473,0.195301,0.432091,0.391134,0.427330,0.359650,0.457225,0.355753,0.461670,0.386220,0.424175,0.148244,0.431675,0.089901 + ,0.459433,0.093546,0.452784,0.150785,0.427330,0.359650,0.423857,0.329070,0.453921,0.326197,0.457225,0.355753,0.252269,0.745464 + ,0.272148,0.712412,0.284070,0.721257,0.258245,0.749889,0.117463,0.844293,0.097582,0.811242,0.103558,0.806818,0.129384,0.835447 + ,0.423857,0.329070,0.421476,0.298385,0.451568,0.296548,0.453921,0.326197,0.476391,0.562894,0.458684,0.506629,0.486241,0.498415 + ,0.502796,0.553777,0.421476,0.298385,0.420185,0.266572,0.450162,0.265787,0.451568,0.296548,0.458684,0.506629,0.446923,0.462300 + ,0.475314,0.455294,0.486241,0.498415,0.420185,0.266572,0.420103,0.232366,0.449808,0.232659,0.450162,0.265787,0.446923,0.462300 + ,0.438502,0.424736,0.467600,0.418804,0.475314,0.455294,0.420103,0.232366,0.421213,0.193892,0.450473,0.195301,0.449808,0.232659 + ,0.390284,0.300182,0.389155,0.267175,0.420185,0.266572,0.421476,0.298385,0.430461,0.514947,0.417718,0.469834,0.446923,0.462300 + ,0.458684,0.506629,0.389155,0.267175,0.389433,0.231764,0.420103,0.232366,0.420185,0.266572,0.417718,0.469834,0.408495,0.431161 + ,0.438502,0.424736,0.446923,0.462300,0.389433,0.231764,0.391133,0.192076,0.421213,0.193892,0.420103,0.232366,0.408495,0.431161 + ,0.401503,0.396427,0.432091,0.391134,0.438502,0.424736,0.391133,0.192076,0.394951,0.145258,0.424175,0.148244,0.421213,0.193892 + ,0.401503,0.396427,0.396360,0.363794,0.427330,0.359650,0.432091,0.391134,0.394951,0.145258,0.403563,0.085905,0.431675,0.089901 + ,0.424175,0.148244,0.396360,0.363794,0.392687,0.332048,0.423857,0.329070,0.427330,0.359650,0.245551,0.742264,0.258753,0.706008 + ,0.272148,0.712412,0.252269,0.745464,0.104068,0.850697,0.090864,0.814442,0.097582,0.811242,0.117463,0.844293,0.392687,0.332048 + ,0.390284,0.300182,0.421476,0.298385,0.423857,0.329070,0.449458,0.571882,0.430461,0.514947,0.458684,0.506629,0.476391,0.562894 + ,0.365130,0.141679,0.375200,0.081433,0.403563,0.085905,0.394951,0.145258,0.364146,0.368240,0.360229,0.335148,0.392687,0.332048 + ,0.396360,0.363794,0.238339,0.740409,0.244377,0.702280,0.258753,0.706008,0.245551,0.742264,0.089693,0.854426,0.083651,0.816297 + ,0.090864,0.814442,0.104068,0.850697,0.360229,0.335148,0.357816,0.301909,0.390284,0.300182,0.392687,0.332048,0.422670,0.581951 + ,0.401992,0.524391,0.430461,0.514947,0.449458,0.571882,0.357816,0.301909,0.356917,0.267522,0.389155,0.267175,0.390284,0.300182 + ,0.401992,0.524391,0.387739,0.478136,0.417718,0.469834,0.430461,0.514947,0.356917,0.267522,0.357685,0.230742,0.389433,0.231764 + ,0.389155,0.267175,0.387739,0.478136,0.377492,0.438201,0.408495,0.431161,0.417718,0.469834,0.357685,0.230742,0.360174,0.189711 + ,0.391133,0.192076,0.389433,0.231764,0.377492,0.438201,0.369766,0.402195,0.401503,0.396427,0.408495,0.431161,0.360174,0.189711 + ,0.365130,0.141679,0.394951,0.145258,0.391133,0.192076,0.369766,0.402195,0.364146,0.368240,0.396360,0.363794,0.401503,0.396427 + ,0.324711,0.229142,0.328265,0.186607,0.360174,0.189711,0.357685,0.230742,0.345370,0.445993,0.336704,0.408568,0.369766,0.402195 + ,0.377492,0.438201,0.328265,0.186607,0.334733,0.137307,0.365130,0.141679,0.360174,0.189711,0.336704,0.408568,0.330465,0.373070 + ,0.364146,0.368240,0.369766,0.402195,0.334733,0.137307,0.346709,0.076323,0.375200,0.081433,0.365130,0.141679,0.330465,0.373070 + ,0.326244,0.338383,0.360229,0.335148,0.364146,0.368240,0.230898,0.739968,0.229550,0.701364,0.244377,0.702280,0.238339,0.740409 + ,0.074866,0.855343,0.076210,0.816737,0.083651,0.816297,0.089693,0.854426,0.326244,0.338383,0.323843,0.303524,0.357816,0.301909 + ,0.360229,0.335148,0.395591,0.592146,0.372740,0.534206,0.401992,0.524391,0.422670,0.581951,0.323843,0.303524,0.323271,0.267511 + ,0.356917,0.267522,0.357816,0.301909,0.372740,0.534206,0.356865,0.487072,0.387739,0.478136,0.401992,0.524391,0.323271,0.267511 + ,0.324711,0.229142,0.357685,0.230742,0.356917,0.267522,0.356865,0.487072,0.345370,0.445993,0.377492,0.438201,0.387739,0.478136 + ,0.288051,0.304967,0.287952,0.266996,0.323271,0.267511,0.323843,0.303524,0.343339,0.545292,0.325322,0.497363,0.356865,0.487072 + ,0.372740,0.534206,0.287952,0.266996,0.290320,0.226752,0.324711,0.229142,0.323271,0.267511,0.325322,0.497363,0.312037,0.454848 + ,0.345370,0.445993,0.356865,0.487072,0.290320,0.226752,0.295317,0.182505,0.328265,0.186607,0.324711,0.229142,0.312037,0.454848 + ,0.302090,0.415758,0.336704,0.408568,0.345370,0.445993,0.295317,0.182505,0.303794,0.131884,0.334733,0.137307,0.328265,0.186607 + ,0.302090,0.415758,0.295032,0.378397,0.330465,0.373070,0.336704,0.408568,0.303794,0.131884,0.318242,0.070372,0.346709,0.076323 + ,0.334733,0.137307,0.295032,0.378397,0.290414,0.341791,0.326244,0.338383,0.330465,0.373070,0.223501,0.740962,0.214816,0.703293 + ,0.229550,0.701364,0.230898,0.739968,0.060131,0.853415,0.068812,0.815743,0.076210,0.816737,0.074866,0.855343,0.290414,0.341791 + ,0.288051,0.304967,0.323843,0.303524,0.326244,0.338383,0.368675,0.603204,0.343339,0.545292,0.372740,0.534206,0.395591,0.592146 + ,0.272369,0.125077,0.289995,0.063332,0.318242,0.070372,0.303794,0.131884,0.257479,0.384406,0.252310,0.345418,0.290414,0.341791 + ,0.295032,0.378397,0.216420,0.743357,0.200712,0.707995,0.214816,0.703293,0.223501,0.740962,0.046025,0.848700,0.061732,0.813341 + ,0.068812,0.815743,0.060131,0.853415,0.252310,0.345418,0.250030,0.306153,0.288051,0.304967,0.290414,0.341791,0.342566,0.615756 + ,0.313908,0.558183,0.343339,0.545292,0.368675,0.603204,0.250030,0.306153,0.250616,0.265774,0.287952,0.266996,0.288051,0.304967 + ,0.313908,0.558183,0.292881,0.509267,0.325322,0.497363,0.343339,0.545292,0.250616,0.265774,0.254272,0.223270,0.290320,0.226752 + ,0.287952,0.266996,0.292881,0.509267,0.277283,0.465098,0.312037,0.454848,0.325322,0.497363,0.254272,0.223270,0.261230,0.177056 + ,0.295317,0.182505,0.290320,0.226752,0.277283,0.465098,0.265653,0.424031,0.302090,0.415758,0.312037,0.454848,0.261230,0.177056 + ,0.272369,0.125077,0.303794,0.131884,0.295317,0.182505,0.265653,0.424031,0.257479,0.384406,0.295032,0.378397,0.302090,0.415758 + ,0.216264,0.218274,0.225898,0.169785,0.261230,0.177056,0.254272,0.223270,0.240865,0.477158,0.226978,0.433727,0.265653,0.424031 + ,0.277283,0.465098,0.225898,0.169785,0.240557,0.116460,0.272369,0.125077,0.261230,0.177056,0.226978,0.433727,0.217243,0.391319 + ,0.257479,0.384406,0.265653,0.424031,0.240557,0.116460,0.262216,0.054909,0.289995,0.063332,0.272369,0.125077,0.217243,0.391319 + ,0.211295,0.349325,0.252310,0.345418,0.257479,0.384406,0.209915,0.747069,0.187753,0.715297,0.200712,0.707995,0.216420,0.743357 + ,0.033066,0.841398,0.055229,0.809628,0.061732,0.813341,0.046025,0.848700,0.211295,0.349325,0.209207,0.306958,0.250030,0.306153 + ,0.252310,0.345418,0.316828,0.629184,0.284024,0.572561,0.313908,0.558183,0.342566,0.615756,0.209207,0.306958,0.210803,0.263550 + ,0.250616,0.265774,0.250030,0.306153,0.284024,0.572561,0.259415,0.522978,0.292881,0.509267,0.313908,0.558183,0.210803,0.263550 + ,0.216264,0.218274,0.254272,0.223270,0.250616,0.265774,0.259415,0.522978,0.240865,0.477158,0.277283,0.465098,0.292881,0.509267 + ,0.164809,0.307200,0.167917,0.259900,0.210803,0.263550,0.209207,0.306958,0.254532,0.589413,0.225241,0.539462,0.259415,0.522978 + ,0.284024,0.572561,0.167917,0.259900,0.175919,0.211147,0.216264,0.218274,0.210803,0.263550,0.225241,0.539462,0.202581,0.491729 + ,0.240865,0.477158,0.259415,0.522978,0.175919,0.211147,0.189227,0.160048,0.225898,0.169785,0.216264,0.218274,0.202581,0.491729 + ,0.185585,0.445369,0.226978,0.433727,0.240865,0.477158,0.189227,0.160048,0.208529,0.105500,0.240557,0.116460,0.225898,0.169785 + ,0.185585,0.445369,0.173618,0.399477,0.217243,0.391319,0.226978,0.433727,0.208529,0.105500,0.235228,0.044762,0.262216,0.054909 + ,0.240557,0.116460,0.173618,0.399477,0.166388,0.353608,0.211295,0.349325,0.217243,0.391319,0.204226,0.751969,0.176406,0.724931 + ,0.187753,0.715297,0.209915,0.747069,0.021721,0.831764,0.049541,0.804728,0.055229,0.809628,0.033066,0.841398,0.166388,0.353608 + ,0.164809,0.307200,0.209207,0.306958,0.211295,0.349325,0.292216,0.644201,0.254532,0.589413,0.284024,0.572561,0.316828,0.629184 + ,0.041428,0.792087,0.077782,0.778137,0.044885,0.798809,0.196111,0.764610,0.199569,0.757887,0.232462,0.778566,0.232462,0.778566 + ,0.193990,0.771904,0.196111,0.764610,0.039308,0.784792,0.077782,0.778137,0.041428,0.792087,0.039157,0.773723,0.077782,0.778137 + ,0.038929,0.781303,0.232462,0.778566,0.193836,0.782973,0.193610,0.775393,0.232462,0.778566,0.195497,0.790334,0.193836,0.782973 + ,0.040817,0.766361,0.077782,0.778137,0.039157,0.773723,0.232462,0.778566,0.198519,0.797219,0.195497,0.790334,0.043843,0.759479 + ,0.077782,0.778137,0.040817,0.766361,0.048113,0.753318,0.077782,0.778137,0.043843,0.759479,0.232462,0.778566,0.202788,0.803380 + ,0.198519,0.797219,0.232462,0.778566,0.208145,0.808601,0.202788,0.803380,0.053470,0.748098,0.077782,0.778137,0.048113,0.753318 + ,0.059716,0.744007,0.077782,0.778137,0.053470,0.748098,0.232462,0.778566,0.214390,0.812692,0.208145,0.808601,0.066621,0.741198 + ,0.077782,0.778137,0.059716,0.744007,0.232462,0.778566,0.221295,0.815502,0.214390,0.812692,0.232462,0.778566,0.228600,0.816944 + ,0.221295,0.815502,0.073927,0.739757,0.077782,0.778137,0.066621,0.741198,0.081368,0.739741,0.077782,0.778137,0.073927,0.739757 + ,0.232462,0.778566,0.236041,0.816960,0.228600,0.816944,0.088670,0.741151,0.077782,0.778137,0.081368,0.739741,0.232462,0.778566 + ,0.243342,0.815551,0.236041,0.816960,0.232462,0.778566,0.250235,0.812772,0.243342,0.815551,0.095560,0.743939,0.077782,0.778137 + ,0.088670,0.741151,0.101791,0.747986,0.077782,0.778137,0.095560,0.743939,0.232462,0.778566,0.256467,0.808724,0.250235,0.812772 + ,0.232462,0.778566,0.261800,0.803553,0.256467,0.808724,0.107129,0.753152,0.077782,0.778137,0.101791,0.747986,0.232462,0.778566 + ,0.266048,0.797462,0.261800,0.803553,0.111371,0.759249,0.077782,0.778137,0.107129,0.753152,0.114364,0.766042,0.077782,0.778137 + ,0.111371,0.759249,0.232462,0.778566,0.269042,0.790668,0.266048,0.797462,0.232462,0.778566,0.270687,0.783429,0.269042,0.790668 + ,0.116008,0.773281,0.077782,0.778137,0.114364,0.766042,0.232462,0.778566,0.270913,0.776009,0.270687,0.783429,0.116235,0.780703 + ,0.077782,0.778137,0.116008,0.773281,0.115034,0.788032,0.077782,0.778137,0.116235,0.780703,0.232462,0.778566,0.269714,0.768680 + ,0.270913,0.776009,0.232462,0.778566,0.267131,0.761716,0.269714,0.768680,0.112443,0.794993,0.077782,0.778137,0.115034,0.788032 + ,0.232462,0.778566,0.263261,0.755374,0.267131,0.761716,0.108574,0.801334,0.077782,0.778137,0.112443,0.794993,0.103558,0.806818 + ,0.077782,0.778137,0.108574,0.801334,0.232462,0.778566,0.258245,0.749889,0.263261,0.755374,0.232462,0.778566,0.252269,0.745464 + ,0.258245,0.749889,0.097582,0.811242,0.077782,0.778137,0.103558,0.806818,0.232462,0.778566,0.245551,0.742264,0.252269,0.745464 + ,0.090864,0.814442,0.077782,0.778137,0.097582,0.811242,0.083651,0.816297,0.077782,0.778137,0.090864,0.814442,0.232462,0.778566 + ,0.238339,0.740409,0.245551,0.742264,0.232462,0.778566,0.230898,0.739968,0.238339,0.740409,0.076210,0.816737,0.077782,0.778137 + ,0.083651,0.816297,0.068812,0.815743,0.077782,0.778137,0.076210,0.816737,0.232462,0.778566,0.223501,0.740962,0.230898,0.739968 + ,0.061732,0.813341,0.077782,0.778137,0.068812,0.815743,0.232462,0.778566,0.216420,0.743357,0.223501,0.740962,0.232462,0.778566 + ,0.209915,0.747069,0.216420,0.743357,0.055229,0.809628,0.077782,0.778137,0.061732,0.813341,0.049541,0.804728,0.077782,0.778137 + ,0.055229,0.809628,0.232462,0.778566,0.204226,0.751969,0.209915,0.747069,0.232462,0.778566,0.199569,0.757887,0.204226,0.751969 + ,0.176334,0.091518,0.209446,0.032513,0.235228,0.044762,0.208529,0.105500,0.125697,0.409339,0.115791,0.358433,0.166388,0.353608 + ,0.173618,0.399477,0.199569,0.757887,0.167081,0.736562,0.176406,0.724931,0.204226,0.751969,0.012396,0.820132,0.044885,0.798809 + ,0.049541,0.804728,0.021721,0.831764,0.115791,0.358433,0.115890,0.306585,0.164809,0.307200,0.166388,0.353608,0.269190,0.661100 + ,0.225463,0.609235,0.254532,0.589413,0.292216,0.644201,0.044885,0.798809,0.077782,0.778137,0.049541,0.804728,0.115890,0.306585 + ,0.121209,0.254210,0.167917,0.259900,0.164809,0.307200,0.225463,0.609235,0.189989,0.559411,0.225241,0.539462,0.254532,0.589413 + ,0.121209,0.254210,0.132695,0.201152,0.175919,0.211147,0.167917,0.259900,0.189989,0.559411,0.161992,0.509620,0.202581,0.491729 + ,0.225241,0.539462,0.132695,0.201152,0.150891,0.147111,0.189227,0.160048,0.175919,0.211147,0.161992,0.509620,0.140797,0.459720 + ,0.185585,0.445369,0.202581,0.491729,0.150891,0.147111,0.176334,0.091518,0.208529,0.105500,0.189227,0.160048,0.140797,0.459720 + ,0.125697,0.409339,0.173618,0.399477,0.185585,0.445369 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164 + ,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 + ,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274 + ,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329 + ,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384 + ,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439 + ,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494 + ,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549 + ,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604 + ,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659 + ,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714 + ,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769 + ,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824 + ,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879 + ,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934 + ,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989 + ,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044 + ,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099 + ,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154 + ,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209 + ,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264 + ,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319 + ,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374 + ,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429 + ,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484 + ,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539 + ,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594 + ,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649 + ,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704 + ,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759 + ,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814 + ,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869 + ,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924 + ,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979 + ,1980,1981,1982,1983 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Material: "Material::Test__TestGrid1024", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Lambert" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",1.0000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",0.8000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "SpecularFactor", "double", "",0.2500 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 + Property: "Shininess", "double", "",9.6 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::TestGrid1024", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "TestGrid1024.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "TestGrid1024.png" + RelativeFilename: "TestGrid1024.png" + } + Texture: "Texture::TestGrid1024", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::TestGrid1024" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::TestGrid1024" + FileName: "TestGrid1024.png" + RelativeFilename: "TestGrid1024.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 2 + PoseNode: { + Node: "Model::Cube" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::Sphere" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",1 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::Cube", "Mesh" { + } + Model: "Model::Sphere", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::Test__TestGrid1024", "" { + } + Texture: "Texture::TestGrid1024", "TextureVideoClip" { + } + Video: "Video::TestGrid1024", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::Cube", "Model::Scene" + Connect: "OO", "Model::Sphere", "Model::Scene" + Connect: "OO", "Material::Test__TestGrid1024", "Model::Cube" + Connect: "OO", "Material::Test__TestGrid1024", "Model::Sphere" + Connect: "OO", "Texture::TestGrid1024", "Model::Cube" + Connect: "OO", "Texture::TestGrid1024", "Model::Sphere" + Connect: "OO", "Video::TestGrid1024", "Texture::TestGrid1024" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Samples/SampleContent/Models/TestGrid1024.png b/Samples/SampleContent/Models/TestGrid1024.png new file mode 100644 index 00000000..9b1390c9 Binary files /dev/null and b/Samples/SampleContent/Models/TestGrid1024.png differ diff --git a/Samples/SampleContent/Models/TwoCubes.fbx b/Samples/SampleContent/Models/TwoCubes.fbx new file mode 100644 index 00000000..9c942510 --- /dev/null +++ b/Samples/SampleContent/Models/TwoCubes.fbx @@ -0,0 +1,529 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2012 + Month: 09 + Day: 20 + Hour: 07 + Minute: 39 + Second: 17 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2012-09-20 07:39:17:000" +Creator: "Blender version 2.63 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 6 + ObjectType: "Model" { + Count: 2 + } + ObjectType: "Geometry" { + Count: 2 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Cube_001", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.500000,-0.500000,-0.500000,-0.500000,0.500000,-0.500000,0.500000,0.500000,-0.500000,0.500000,-0.500000,-0.500000,-0.500000,-0.500000,0.500000,-0.500000,0.500000,0.500000,0.500000,0.500000,0.500000 + ,0.500000,-0.500000,0.500000 + PolygonVertexIndex: 1,0,4,-6,5,6,2,-2,6,7,3,-3,0,3,7,-5,0,1,2,-4,7,6,5,-5 + Edges: + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: -0.577349185943604,-0.577349185943604,-0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604 + ,0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604,-0.577349185943604 + ,-0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604,0.577349185943604 + ,0.577349185943604,0.577349185943604,0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.000001,0.749999,0.250001,0.749999,0.250000,1.000000,0.000000,0.999999,0.250004,0.249999,0.500004,0.250001,0.500002,0.500000 + ,0.250002,0.499999,0.750001,1.000000,0.500001,1.000000,0.500001,0.750000,0.750001,0.750000,0.250001,0.749999,0.500001,0.750000 + ,0.500001,1.000000,0.250000,1.000000,0.250001,0.749999,0.250002,0.499999,0.500002,0.500000,0.500001,0.750000,0.500005,0.000002 + ,0.500004,0.250001,0.250004,0.249999,0.250006,0.000000 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Cube", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.500000,-0.500000,1.500000,-0.500000,0.500000,1.500000,0.500000,0.500000,1.500000,0.500000,-0.500000,1.500000,-0.500000,-0.500000,2.500000,-0.500000,0.500000,2.500000,0.500000,0.500000,2.500000 + ,0.500000,-0.500000,2.500000 + PolygonVertexIndex: 1,0,4,-6,5,6,2,-2,6,7,3,-3,0,3,7,-5,0,1,2,-4,7,6,5,-5 + Edges: + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: -0.577349185943604,-0.577349185943604,-0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604 + ,0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604,-0.577349185943604 + ,-0.577349185943604,-0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604,0.577349185943604 + ,0.577349185943604,0.577349185943604,0.577349185943604,0.577349185943604,-0.577349185943604,0.577349185943604 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.000001,0.749999,0.250001,0.749999,0.250000,1.000000,0.000000,0.999999,0.250004,0.249999,0.500004,0.250001,0.500002,0.500000 + ,0.250002,0.499999,0.750001,1.000000,0.500001,1.000000,0.500001,0.750000,0.750001,0.750000,0.250001,0.749999,0.500001,0.750000 + ,0.500001,1.000000,0.250000,1.000000,0.250001,0.749999,0.250002,0.499999,0.500002,0.500000,0.500001,0.750000,0.500005,0.000002 + ,0.500004,0.250001,0.250004,0.249999,0.250006,0.000000 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVMap" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Material: "Material::Test__TestGrid1024", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Lambert" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",1.0000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",0.8000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "SpecularFactor", "double", "",0.2500 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 + Property: "Shininess", "double", "",9.6 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::TestGrid1024", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "TestGrid1024.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "TestGrid1024.png" + RelativeFilename: "TestGrid1024.png" + } + Texture: "Texture::TestGrid1024", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::TestGrid1024" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::TestGrid1024" + FileName: "TestGrid1024.png" + RelativeFilename: "TestGrid1024.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 2 + PoseNode: { + Node: "Model::Cube_001" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::Cube" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",1 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::Cube_001", "Mesh" { + } + Model: "Model::Cube", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::Test__TestGrid1024", "" { + } + Texture: "Texture::TestGrid1024", "TextureVideoClip" { + } + Video: "Video::TestGrid1024", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::Cube_001", "Model::Scene" + Connect: "OO", "Model::Cube", "Model::Scene" + Connect: "OO", "Material::Test__TestGrid1024", "Model::Cube_001" + Connect: "OO", "Material::Test__TestGrid1024", "Model::Cube" + Connect: "OO", "Texture::TestGrid1024", "Model::Cube_001" + Connect: "OO", "Texture::TestGrid1024", "Model::Cube" + Connect: "OO", "Video::TestGrid1024", "Texture::TestGrid1024" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Samples/SampleContent/SampleContent.contentproj b/Samples/SampleContent/SampleContent.contentproj index 2f33a28c..1ca3b0ed 100644 --- a/Samples/SampleContent/SampleContent.contentproj +++ b/Samples/SampleContent/SampleContent.contentproj @@ -155,6 +155,27 @@ TextureProcessor + + + Sphere + FbxImporter + ModelProcessor + + + + + SphereAndCube + FbxImporter + ModelProcessor + + + + + TwoCubes + FbxImporter + ModelProcessor + +